Searched hist:1.982 (Results 1 - 15 of 15) sorted by relevance

/src/usr.bin/make/unit-tests/
H A Dvarmod-subst-regex.mk1.9 Sun Dec 10 14:30:51 GMT 2023 rillig make: fix crash in ':C' modifier on an empty expression

Since var.c 1.982 from 2021-12-13.

/src/usr.bin/make/
H A Dvar.c1.1077 Sun Dec 10 14:30:50 GMT 2023 rillig make: fix crash in ':C' modifier on an empty expression

Since var.c 1.982 from 2021-12-13.
1.982 Mon Dec 13 03:03:42 GMT 2021 rillig make: in the modifier ':C', don't call strlen unnecessarily

No functional change.
/src/sys/dev/pci/
H A Dpcidevs.h1.982 Tue Apr 07 18:41:06 GMT 2009 msaitoh regen
H A Dpcidevs_data.h1.982 Sat Apr 25 15:30:17 GMT 2009 tsutsui Regen from pcidevs rev 1.983:
> Tweak some Realtek re(4) device names.
H A Dpcidevs1.982 Tue Apr 07 18:40:39 GMT 2009 msaitoh add 82801J_D_BM_LF (ICH10)
/src/distrib/sets/lists/base/
H A Dshl.mi1.982 Mon Jul 01 04:03:04 GMT 2024 mrg GCC sanitizers: only build the sanitizers if $MKGCCCMDS != "no".

there's a minor use-case for the configuration of "building sanitizers
for distribution, but not the compiler", but it's pretty uncommon, and
the latest sanitizers don't build at all on m68000 so enhance the
option to not build /usr/bin/gcc (which simply can't modern GCC on a
sun2) to not build the sanitizers either.

(if we were to split these, MKGCCSANITIZER would be good variable.)

update set lists for far too many files, including fixing MKDEBUG for
a couple of builds.
H A Dmi1.982 Mon Feb 13 01:35:06 GMT 2012 dholland Add quotadump(8), which is a link to repquota, and quotarestore(8),
which is new. Includes man page updates. Approved by releng for
freeze.
/src/doc/
H A D3RDPARTY1.982 Tue Nov 13 11:03:31 GMT 2012 apb tzcode2012j and tzdata2012j have been released.
We have updated to tzcode2012j.
H A DCHANGES1.982 Tue Jan 08 09:29:22 GMT 2008 xtraeme Fix date for the tprof entry.
/src/sys/conf/
H A Dfiles1.982 Sat Mar 13 08:33:26 GMT 2010 darran branches: 1.982.2;
DTrace: only build in kernel CTF support if DTrace support is enabled
(i.e. options KDTRACE_HOOKS).
1.982 Sat Mar 13 08:33:26 GMT 2010 darran branches: 1.982.2;
DTrace: only build in kernel CTF support if DTrace support is enabled
(i.e. options KDTRACE_HOOKS).
/src/sys/arch/i386/conf/
H A DGENERIC1.982 Sat May 08 22:16:28 GMT 2010 mrg enable IPFILTER_COMPAT in all kernels that have ipfilter already.
canonicalise several of the ipf option segments in various files
(this mostly means adding commented out IPFILTER_DEFAULT_BLOCK,
or adding commented or uncommented IPFILTER_LOG or IPFILTER_LOOKUP
option statements.)

i built about 20 of these kernels to check, but not all of them.
/src/distrib/sets/lists/man/
H A Dmi1.982 Mon Mar 05 23:18:04 GMT 2007 dillo Integrate apmlabel and HFS+ file system.
/src/distrib/sets/lists/tests/
H A Dmi1.982 Tue Dec 01 22:16:36 GMT 2020 rillig make(1): add test and tutorial for indirect modifiers
/src/share/mk/
H A Dbsd.own.mk1.982 Wed Oct 26 17:32:46 GMT 2016 christos switch everyone to binutils.old
/src/distrib/sets/lists/comp/
H A Dmi1.982 Sat Dec 09 05:33:04 GMT 2006 dyoung Here are various changes designed to protect against bad IPv4
routing caused by stale route caches (struct route). Route caches
are sprinkled throughout PCBs, the IP fast-forwarding table, and
IP tunnel interfaces (gre, gif, stf).

Stale IPv6 and ISO route caches will be treated by separate patches.

Thank you to Christoph Badura for suggesting the general approach
to invalidating route caches that I take here.

Here are the details:

Add hooks to struct domain for tracking and for invalidating each
domain's route caches: dom_rtcache, dom_rtflush, and dom_rtflushall.

Introduce helper subroutines, rtflush(ro) for invalidating a route
cache, rtflushall(family) for invalidating all route caches in a
routing domain, and rtcache(ro) for notifying the domain of a new
cached route.

Chain together all IPv4 route caches where ro_rt != NULL. Provide
in_rtcache() for adding a route to the chain. Provide in_rtflush()
and in_rtflushall() for invalidating IPv4 route caches. In
in_rtflush(), set ro_rt to NULL, and remove the route from the
chain. In in_rtflushall(), walk the chain and remove every route
cache.

In rtrequest1(), call rtflushall() to invalidate route caches when
a route is added.

In gif(4), discard the workaround for stale caches that involves
expiring them every so often.

Replace the pattern 'RTFREE(ro->ro_rt); ro->ro_rt = NULL;' with a
call to rtflush(ro).

Update ipflow_fastforward() and all other users of route caches so
that they expect a cached route, ro->ro_rt, to turn to NULL.

Take care when moving a 'struct route' to rtflush() the source and
to rtcache() the destination.

In domain initializers, use .dom_xxx tags.

KNF here and there.

Completed in 1281 milliseconds