Searched hist:1.284 (Results 1 - 25 of 128) sorted by relevance

123456

/src/sys/netipsec/
H A Dkey.c1.284 Fri Jul 05 04:31:54 GMT 2024 rin sys: Drop redundant NULL check before m_freem(9)

m_freem(9) safely has accepted NULL argument at least since 4.2BSD:
https://www.tuhs.org/cgi-bin/utree.pl?file=4.2BSD/usr/src/sys/sys/uipc_mbuf.c

Compile-tested on amd64/ALL.

Suggested by knakahara@
/src/sys/arch/amiga/conf/
H A DGENERIC1.284 Tue Jan 24 00:19:39 GMT 2012 rkujawa branches: 1.284.2; 1.284.6; 1.284.8;
Add voodoofb support. Allows using 3Dfx Voodoo 3 in G-REX as a console.

1.284 Tue Jan 24 00:19:39 GMT 2012 rkujawa branches: 1.284.2; 1.284.6; 1.284.8;
Add voodoofb support. Allows using 3Dfx Voodoo 3 in G-REX as a console.

1.284 Tue Jan 24 00:19:39 GMT 2012 rkujawa branches: 1.284.2; 1.284.6; 1.284.8;
Add voodoofb support. Allows using 3Dfx Voodoo 3 in G-REX as a console.

1.284 Tue Jan 24 00:19:39 GMT 2012 rkujawa branches: 1.284.2; 1.284.6; 1.284.8;
Add voodoofb support. Allows using 3Dfx Voodoo 3 in G-REX as a console.

/src/sys/dev/
H A DDEVNAMES1.284 Tue Jan 29 00:54:13 GMT 2013 rkujawa branches: 1.284.2;
Add em4k, also forgotten empb.

1.284 Tue Jan 29 00:54:13 GMT 2013 rkujawa branches: 1.284.2;
Add em4k, also forgotten empb.

/src/share/mk/
H A Dbsd.sys.mk1.284 Sun Jun 24 19:35:12 GMT 2018 kamil branches: 1.284.2;
Reset SANITIZERFLAGS when specified NOSANITIZER / MKSANITIZER=no

This allows passing additional sanitizer specifig flags from the ./build.sh
level, like: -V SANITIZERFLAGS="-fsanitize-memory-track-origins" for MSan.

1.284 Sun Jun 24 19:35:12 GMT 2018 kamil branches: 1.284.2;
Reset SANITIZERFLAGS when specified NOSANITIZER / MKSANITIZER=no

This allows passing additional sanitizer specifig flags from the ./build.sh
level, like: -V SANITIZERFLAGS="-fsanitize-memory-track-origins" for MSan.

/src/sys/dev/scsipi/
H A Dscsiconf.c1.284 Thu Mar 28 10:44:29 GMT 2019 kardel branches: 1.284.4;
Add reading of supported opcodes and their timeouts
at attachment time. Though this information is optional,
it allows to override our fixed timeouts with device
provided timeouts. These timeouts will override the
hardcoded values if the device provided timeouts
exceed the hardcoded values and are less than a day.

Using the device provided timeouts avoids premature
device resets and unreliable operation due to
inadequate timeouts.

Due to the limited implementations of USB
umass devices this feature is disabled for all
umass attached devices.
1.284 Thu Mar 28 10:44:29 GMT 2019 kardel branches: 1.284.4;
Add reading of supported opcodes and their timeouts
at attachment time. Though this information is optional,
it allows to override our fixed timeouts with device
provided timeouts. These timeouts will override the
hardcoded values if the device provided timeouts
exceed the hardcoded values and are less than a day.

Using the device provided timeouts avoids premature
device resets and unreliable operation due to
inadequate timeouts.

Due to the limited implementations of USB
umass devices this feature is disabled for all
umass attached devices.
/src/sys/sys/
H A Dsyscallargs.h1.284 Fri Dec 08 01:20:53 GMT 2017 christos regen
XXX: pullup-8
H A Dsyscall.h1.284 Thu Sep 24 14:34:22 GMT 2015 christos regen
H A Dsystm.h1.284 Sat May 04 10:07:11 GMT 2019 maxv Add KASAN instrumentation for kcopy and copystr.

H A Dvnode.h1.284 Sun Dec 01 13:56:29 GMT 2019 ad Minor vnode locking changes:

- Stop using atomics to maniupulate v_usecount. It was a mistake to begin
with. It doesn't work as intended unless the XLOCK bit is incorporated in
v_usecount and we don't have that any more. When I introduced this 10+
years ago it was to reduce pressure on v_interlock but it doesn't do that,
it just makes stuff disappear from lockstat output and introduces problems
elsewhere. We could do atomic usecounts on vnodes but there has to be a
well thought out scheme.

- Resurrect LK_UPGRADE/LK_DOWNGRADE which will be needed to work effectively
when there is increased use of shared locks on vnodes.

- Allocate the vnode lock using rw_obj_alloc() to reduce false sharing of
struct vnode.

- Put all of the LRU lists into a single cache line, and do not requeue a
vnode if it's already on the correct list and was requeued recently (less
than a second ago).

Kernel build before and after:

119.63s real 1453.16s user 2742.57s system
115.29s real 1401.52s user 2690.94s system
/src/share/misc/
H A Dacronyms1.284 Fri Jun 07 13:37:35 GMT 2019 sevan LSD

/src/sys/netinet/
H A Dip_input.c1.284 Wed Sep 16 15:23:05 GMT 2009 pooka branches: 1.284.2; 1.284.4;
Replace a large number of link set based sysctl node creations with
calls from subsystem constructors. Benefits both future kernel
modules and rump.

no change to sysctl nodes on i386/MONOLITHIC & build tested i386/ALL

1.284 Wed Sep 16 15:23:05 GMT 2009 pooka branches: 1.284.2; 1.284.4;
Replace a large number of link set based sysctl node creations with
calls from subsystem constructors. Benefits both future kernel
modules and rump.

no change to sysctl nodes on i386/MONOLITHIC & build tested i386/ALL

1.284 Wed Sep 16 15:23:05 GMT 2009 pooka branches: 1.284.2; 1.284.4;
Replace a large number of link set based sysctl node creations with
calls from subsystem constructors. Benefits both future kernel
modules and rump.

no change to sysctl nodes on i386/MONOLITHIC & build tested i386/ALL

H A Dtcp_subr.c1.284 Fri Jun 12 11:04:45 GMT 2020 roy branches: 1.284.2;
Remove in-kernel handling of Router Advertisements

This is much better handled by a user-land tool.
Proposed on tech-net here:
https://mail-index.netbsd.org/tech-net/2020/04/22/msg007766.html

Note that the ioctl SIOCGIFINFO_IN6 no longer sets flags. That now
needs to be done using the pre-existing SIOCSIFINFO_FLAGS ioctl.

Compat is fully provided where it makes sense, but trying to turn on
RA handling will obviously throw an error as it no longer exists.

Note that if you use IPv6 temporary addresses, this now needs to be
turned on in dhcpcd.conf(5) rather than in sysctl.conf(5).

1.284 Fri Jun 12 11:04:45 GMT 2020 roy branches: 1.284.2;
Remove in-kernel handling of Router Advertisements

This is much better handled by a user-land tool.
Proposed on tech-net here:
https://mail-index.netbsd.org/tech-net/2020/04/22/msg007766.html

Note that the ioctl SIOCGIFINFO_IN6 no longer sets flags. That now
needs to be done using the pre-existing SIOCSIFINFO_FLAGS ioctl.

Compat is fully provided where it makes sense, but trying to turn on
RA handling will obviously throw an error as it no longer exists.

Note that if you use IPv6 temporary addresses, this now needs to be
turned on in dhcpcd.conf(5) rather than in sysctl.conf(5).

/src/sys/kern/
H A Dinit_sysent.c1.284 Thu Jun 12 21:42:26 GMT 2014 joerg Regenerate
H A Dsyscalls.c1.284 Sat May 09 06:06:14 GMT 2015 pgoyette Regen again, this time without the extra word in the "generated from" line.
H A Dkern_sig.c1.284 Mon May 19 17:06:02 GMT 2008 ad branches: 1.284.2;
Reduce ifdefs due to MULTIPROCESSOR slightly.
1.284 Mon May 19 17:06:02 GMT 2008 ad branches: 1.284.2;
Reduce ifdefs due to MULTIPROCESSOR slightly.
H A Dsyscalls.master1.284 Sat Apr 23 23:08:26 GMT 2016 christos Add clock_getcpuclockid2(2) as well as CLOCK_{PROCESS,THREAD}_CPUTIME_ID.
H A Dtty.c1.284 Mon Jan 06 11:18:51 GMT 2020 ad ttygetinfo(): avoid crash with zombies. From skrll@, tweaked by me.
H A Dvfs_bio.c1.284 Sat Dec 21 13:00:24 GMT 2019 ad uvmexp.free -> uvm_free()
/src/lib/libc/
H A Dshlib_version1.284 Tue Jun 04 08:44:08 GMT 2019 hannken Implement xdrmem_control(), used as xdr_control(xdr, XDR_GET_BYTES_AVAIL ...
and bump libc minor number.

Final goal is to remove the unmaintained XDR implementation
at external/cddl/osnet/dist/uts/common/rpc.
/src/doc/
H A DBRANCHES1.284 Mon Aug 10 21:27:46 GMT 2009 matt Add matt-nb5-mips64 branch
/src/usr.sbin/
H A DMakefile1.284 Thu Aug 20 21:21:32 GMT 2020 riastradh [ozaki-r] Changes to the kernel core for wireguard

/src/sys/arch/i386/conf/
H A DALL1.284 Sun Jan 09 15:12:33 GMT 2011 jruoho branches: 1.284.2;
Add a dummy-driver for ACPI fans.
1.284 Sun Jan 09 15:12:33 GMT 2011 jruoho branches: 1.284.2;
Add a dummy-driver for ACPI fans.
/src/etc/
H A DMakefile1.284 Mon Mar 08 05:46:44 GMT 2004 cgd branches: 1.284.2;
sync after building kernels. on some host systems (Linux) on NFS
have been seen to fail with the error:
pax: File ./netbsd was modified during copy to archive
and this avoids it.
1.284 Mon Mar 08 05:46:44 GMT 2004 cgd branches: 1.284.2;
sync after building kernels. on some host systems (Linux) on NFS
have been seen to fail with the error:
pax: File ./netbsd was modified during copy to archive
and this avoids it.
/src/sys/modules/
H A DMakefile1.284 Thu Mar 21 02:36:02 GMT 2024 riastradh acpihed(4): New driver for PNP0C33 to notify apei(4).

PNP0C33 denotes the ACPI Hardware Error Device, which exists only to
be a vector for event notifications.

PR kern/58046

/src/sys/arch/sparc64/sparc64/
H A Dmachdep.c1.284 Fri May 13 21:22:47 GMT 2016 nakayama Use newly introduced intrhand_alloc().

Completed in 401 milliseconds

123456