Searched hist:1.853 (Results 1 - 16 of 16) sorted by relevance

/src/usr.bin/make/unit-tests/
H A Dvarmod-assign.mk1.13 Tue Nov 30 20:48:01 GMT 2021 rillig tests/make: convert tests for modifier '::=' to parse time

This puts the expected result of the expressions closer to the
expressions, making the tests self-contained.

The error messages that used to produce trailing spaces have been fixed
in var.c 1.853 from 2021-02-23. The error message now encloses the
variable name in quotes.

H A Dvarmod-assign.exp1.17 Tue Nov 30 20:48:01 GMT 2021 rillig tests/make: convert tests for modifier '::=' to parse time

This puts the expected result of the expressions closer to the
expressions, making the tests self-contained.

The error messages that used to produce trailing spaces have been fixed
in var.c 1.853 from 2021-02-23. The error message now encloses the
variable name in quotes.

/src/sys/dev/pci/
H A Dpcidevs_data.h1.853 Sun Nov 26 06:07:48 GMT 2006 tsutsui branches: 1.853.2;
Regen from pcidevs rev 1.855:
> - add more Broadcom product IDs, and fix two alternative IDs
> (from FreeBSD and OpenBSD)
> - sort by product ID
1.853 Sun Nov 26 06:07:48 GMT 2006 tsutsui branches: 1.853.2;
Regen from pcidevs rev 1.855:
> - add more Broadcom product IDs, and fix two alternative IDs
> (from FreeBSD and OpenBSD)
> - sort by product ID
1.851 Sat Nov 18 08:33:05 GMT 2006 tsutsui Regen from pcidevs rev 1.853:
> Add an ID of Broadcom BCM5752M. From Matt Kolb on tech-kern.
H A Dpcidevs.h1.853 Sun Nov 26 01:14:28 GMT 2006 enami Regen.
1.852 Sat Nov 18 08:33:05 GMT 2006 tsutsui Regen from pcidevs rev 1.853:
> Add an ID of Broadcom BCM5752M. From Matt Kolb on tech-kern.
H A Dpcidevs1.853 Sat Nov 18 08:32:08 GMT 2006 tsutsui Add an ID of Broadcom BCM5752M. From Matt Kolb on tech-kern.
/src/distrib/sets/lists/base/
H A Dshl.mi1.853 Wed Jan 09 16:59:34 GMT 2019 christos bump bind libraries.
H A Dmi1.853 Sat Jan 16 15:34:22 GMT 2010 roy Remove tn3270 from base system.
If anyone really needs it then it can be put into pkgsrc.
Importing c3270 into pkgsrc is probably a better option though.
/src/doc/
H A D3RDPARTY1.853 Tue Jul 12 08:52:17 GMT 2011 wiz mdocml-1.11.4 out.
H A DCHANGES1.853 Tue May 15 17:53:42 GMT 2007 bouyer add jmide(4), a driver for the JMicron Technology JMB36x PCIe to SATA II/PATA
controllers. These controllers can be found on add-on PCIe cards, or
on some motherboards to provide the PATA connectivity (e.g. some intel
ICH8-based motherboards).

Thanks to JMicron Technology for providing me documentation and
different sample boards for this work.
/src/sys/arch/i386/conf/
H A DGENERIC1.853 Wed Oct 17 19:54:42 GMT 2007 garbled Merge the ppcoea-renovation branch to HEAD.

This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree. Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches. The work
for this branch was done by a variety of people, too long to list here.

TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.

NOTES:
pmppc was removed as an arch, and moved to a evbppc target.
/src/distrib/sets/lists/man/
H A Dmi1.853 Wed Feb 08 00:54:33 GMT 2006 christos mark sushi obsolete (per core's request)
/src/distrib/sets/lists/tests/
H A Dmi1.853 Thu Jun 25 17:08:33 GMT 2020 jruoho Verify that PR kern/52150 is no longer present.
/src/share/mk/
H A Dbsd.own.mk1.853 Thu Jun 04 05:56:23 GMT 2015 martin Cosmetics: simplify MKCOMPAT default settings
/src/usr.bin/make/
H A Dvar.c1.853 Tue Feb 23 16:07:14 GMT 2021 rillig make: improve error message for bad modifier in variable expression

The improvement is especially noteable for variable expressions based on
the empty variable, see moderrs.exp:103.
/src/sys/conf/
H A Dfiles1.853 Thu Jul 19 20:48:51 GMT 2007 dyoung Take steps to hide the radix_node implementation of the forwarding table
from the forwarding table's users:

Introduce rt_walktree() for walking the routing table and
applying a function to each rtentry. Replace most
rn_walktree() calls with it.

Use rt_getkey()/rt_setkey() to get/set a route's destination.
Keep a pointer to the sockaddr key in the rtentry, so that
rtentry users do not have to grovel in the radix_node for
the key.

Add a RTM_GET method to rtrequest. Use that instead of
radix_node lookups in, e.g., carp(4).

Add sys/net/link_proto.c, which supplies sockaddr routines for
link-layer socket addresses (sockaddr_dl).

Cosmetic:

Constify. KNF. Stop open-coding LIST_FOREACH, TAILQ_FOREACH,
et cetera. Use NULL instead of 0 for null pointers. Use
__arraycount(). Reduce gratuitous parenthesization.

Stop using variadic arguments for rip6_output(), it is
unnecessary.

Remove the unnecessary rtentry member rt_genmask and the
code to maintain it, since nothing actually used it.

Make rt_maskedcopy() easier to read by using meaningful variable
names.

Extract a subroutine intern_netmask() for looking up a netmask in
the masks table.

Start converting backslash-ridden IPv6 macros in
sys/netinet6/in6_var.h into inline subroutines that one
can read without special eyeglasses.

One functional change: when the kernel serves an RTM_GET, RTM_LOCK,
or RTM_CHANGE request, it applies the netmask (if supplied) to a
destination before searching for it in the forwarding table.

I have changed sys/netinet/ip_carp.c, carp_setroute(), to remove
the unlawful radix_node knowledge.

Apart from the changes to carp(4), netiso, ATM, and strip(4), I
have run the changes on three nodes in my wireless routing testbed,
which involves IPv4 + IPv6 dynamic routing acrobatics, and it's
working beautifully so far.
/src/distrib/sets/lists/comp/
H A Dmi1.853 Sun Feb 19 22:30:20 GMT 2006 yamt document posix_fadvise.

Completed in 1274 milliseconds