Searched hist:1.347 (Results 1 - 25 of 78) sorted by relevance

1234

/src/
H A Dbuild.sh1.347 Sun Apr 25 22:29:22 GMT 2021 christos branches: 1.347.2;
Add mipsn64e[bl] targets which use 64 bit binaries instead of n32 ones.
1.347 Sun Apr 25 22:29:22 GMT 2021 christos branches: 1.347.2;
Add mipsn64e[bl] targets which use 64 bit binaries instead of n32 ones.
1.347 Sun Apr 25 22:29:22 GMT 2021 christos branches: 1.347.2;
Add mipsn64e[bl] targets which use 64 bit binaries instead of n32 ones.
1.347 Sun Apr 25 22:29:22 GMT 2021 christos branches: 1.347.2;
Add mipsn64e[bl] targets which use 64 bit binaries instead of n32 ones.
H A DUPDATING1.347 Thu Apr 11 06:20:29 GMT 2024 nia UPDATING: note new sets
1.347 Thu Apr 11 06:20:29 GMT 2024 nia UPDATING: note new sets
1.347 Thu Apr 11 06:20:29 GMT 2024 nia UPDATING: note new sets
1.347 Thu Apr 11 06:20:29 GMT 2024 nia UPDATING: note new sets
/src/sys/arch/macppc/conf/
H A DGENERIC1.347 Sat Jun 02 19:28:39 GMT 2018 sevan branches: 1.347.2;
Enabled IPsec & ipsecif(4) support by default.

ok macallan
1.347 Sat Jun 02 19:28:39 GMT 2018 sevan branches: 1.347.2;
Enabled IPsec & ipsecif(4) support by default.

ok macallan
/src/sys/arch/sparc/sparc/
H A Dpmap.c1.347 Sat Oct 22 21:00:40 GMT 2011 mrg branches: 1.347.2; 1.347.6;
add a comment to sp_tlb_flush() about fixing the asm() better.
1.347 Sat Oct 22 21:00:40 GMT 2011 mrg branches: 1.347.2; 1.347.6;
add a comment to sp_tlb_flush() about fixing the asm() better.
1.347 Sat Oct 22 21:00:40 GMT 2011 mrg branches: 1.347.2; 1.347.6;
add a comment to sp_tlb_flush() about fixing the asm() better.
1.347 Sat Oct 22 21:00:40 GMT 2011 mrg branches: 1.347.2; 1.347.6;
add a comment to sp_tlb_flush() about fixing the asm() better.
1.347 Sat Oct 22 21:00:40 GMT 2011 mrg branches: 1.347.2; 1.347.6;
add a comment to sp_tlb_flush() about fixing the asm() better.
1.347 Sat Oct 22 21:00:40 GMT 2011 mrg branches: 1.347.2; 1.347.6;
add a comment to sp_tlb_flush() about fixing the asm() better.
/src/doc/
H A DBRANCHES1.347 Sun Jan 27 10:27:18 GMT 2019 pgoyette Note that [pgoyette-compat] has been merged.
/src/usr.bin/make/unit-tests/
H A DMakefile1.347 Sat Jun 01 15:54:40 GMT 2024 sjg branches: 1.347.2;
Run check-expect.lua in .CURDIR
1.347 Sat Jun 01 15:54:40 GMT 2024 sjg branches: 1.347.2;
Run check-expect.lua in .CURDIR
1.347 Sat Jun 01 15:54:40 GMT 2024 sjg branches: 1.347.2;
Run check-expect.lua in .CURDIR
1.347 Sat Jun 01 15:54:40 GMT 2024 sjg branches: 1.347.2;
Run check-expect.lua in .CURDIR
/src/share/man/man9/
H A DMakefile1.347 Wed Jun 01 02:22:18 GMT 2011 rmind branches: 1.347.2;
Split parts of uvm(9) into uvm_km(9) and uvm_map(9) man pages.

OK mrg@
1.347 Wed Jun 01 02:22:18 GMT 2011 rmind branches: 1.347.2;
Split parts of uvm(9) into uvm_km(9) and uvm_map(9) man pages.

OK mrg@
/src/sys/dev/raidframe/
H A Drf_netbsdkintf.c1.347 Mon Sep 19 23:37:10 GMT 2016 jdolecek branches: 1.347.2;
fix mistake fallthrough in the ioctl switch introduced in previous commit
1.347 Mon Sep 19 23:37:10 GMT 2016 jdolecek branches: 1.347.2;
fix mistake fallthrough in the ioctl switch introduced in previous commit
/src/sys/netinet/
H A Dip_input.c1.347 Mon Dec 12 03:55:57 GMT 2016 ozaki-r branches: 1.347.2;
Make the routing table and rtcaches MP-safe

See the following descriptions for details.

Proposed on tech-kern and tech-net


Overview
1.347 Mon Dec 12 03:55:57 GMT 2016 ozaki-r branches: 1.347.2;
Make the routing table and rtcaches MP-safe

See the following descriptions for details.

Proposed on tech-kern and tech-net


Overview
H A Dtcp_input.c1.347 Fri Jun 10 13:31:44 GMT 2016 ozaki-r branches: 1.347.2;
Avoid storing a pointer of an interface in a mbuf

Having a pointer of an interface in a mbuf isn't safe if we remove big
kernel locks; an interface object (ifnet) can be destroyed anytime in any
packet processing and accessing such object via a pointer is racy. Instead
we have to get an object from the interface collection (ifindex2ifnet) via
an interface index (if_index) that is stored to a mbuf instead of an
pointer.

The change provides two APIs: m_{get,put}_rcvif_psref that use psref(9)
for sleep-able critical sections and m_{get,put}_rcvif that use
pserialize(9) for other critical sections. The change also adds another
API called m_get_rcvif_NOMPSAFE, that is NOT MP-safe and for transition
moratorium, i.e., it is intended to be used for places where are not
planned to be MP-ified soon.

The change adds some overhead due to psref to performance sensitive paths,
however the overhead is not serious, 2% down at worst.

Proposed on tech-kern and tech-net.
1.347 Fri Jun 10 13:31:44 GMT 2016 ozaki-r branches: 1.347.2;
Avoid storing a pointer of an interface in a mbuf

Having a pointer of an interface in a mbuf isn't safe if we remove big
kernel locks; an interface object (ifnet) can be destroyed anytime in any
packet processing and accessing such object via a pointer is racy. Instead
we have to get an object from the interface collection (ifindex2ifnet) via
an interface index (if_index) that is stored to a mbuf instead of an
pointer.

The change provides two APIs: m_{get,put}_rcvif_psref that use psref(9)
for sleep-able critical sections and m_{get,put}_rcvif that use
pserialize(9) for other critical sections. The change also adds another
API called m_get_rcvif_NOMPSAFE, that is NOT MP-safe and for transition
moratorium, i.e., it is intended to be used for places where are not
planned to be MP-ified soon.

The change adds some overhead due to psref to performance sensitive paths,
however the overhead is not serious, 2% down at worst.

Proposed on tech-kern and tech-net.
/src/sys/arch/alpha/conf/
H A DGENERIC1.347 Fri Mar 01 18:25:28 GMT 2013 joerg Retire OSI network stack. OK core@
/src/sys/dev/scsipi/
H A Dsd.c1.347 Sat Oct 11 13:58:57 GMT 2025 mlelstv Make probe command silent.
/src/share/misc/
H A Dacronyms.comp1.347 Tue Mar 14 19:04:17 GMT 2023 fcambus Add SPIR (standard portable intermediate representation).
1.347 Tue Mar 14 19:04:17 GMT 2023 fcambus Add SPIR (standard portable intermediate representation).
1.347 Tue Mar 14 19:04:17 GMT 2023 fcambus Add SPIR (standard portable intermediate representation).
1.347 Tue Mar 14 19:04:17 GMT 2023 fcambus Add SPIR (standard portable intermediate representation).
/src/distrib/sets/lists/comp/
H A Dshl.mi1.347 Wed Jul 14 03:19:24 GMT 2021 ozaki-r Rump-ify ALTQ (librumpnet_altq.so)
1.347 Wed Jul 14 03:19:24 GMT 2021 ozaki-r Rump-ify ALTQ (librumpnet_altq.so)
1.347 Wed Jul 14 03:19:24 GMT 2021 ozaki-r Rump-ify ALTQ (librumpnet_altq.so)
1.347 Wed Jul 14 03:19:24 GMT 2021 ozaki-r Rump-ify ALTQ (librumpnet_altq.so)
/src/distrib/sets/lists/debug/
H A Dshl.mi1.347 Fri Aug 02 17:25:39 GMT 2024 christos bump libblocklist
1.347 Fri Aug 02 17:25:39 GMT 2024 christos bump libblocklist
1.347 Fri Aug 02 17:25:39 GMT 2024 christos bump libblocklist
1.347 Fri Aug 02 17:25:39 GMT 2024 christos bump libblocklist
1.347 Fri Aug 02 17:25:39 GMT 2024 christos bump libblocklist
1.347 Fri Aug 02 17:25:39 GMT 2024 christos bump libblocklist
/src/sys/kern/
H A Dinit_main.c1.347 Thu Mar 27 19:11:05 GMT 2008 ad branches: 1.347.2;
Add code for dynamically allocated mutexes, as posted on tech-kern.
1.347 Thu Mar 27 19:11:05 GMT 2008 ad branches: 1.347.2;
Add code for dynamically allocated mutexes, as posted on tech-kern.
H A Dkern_synch.c1.347 Sun Apr 19 20:35:29 GMT 2020 ad Set LW_SINTR earlier so it doesn't pose a problem for doing interruptable
waits with turnstiles (not currently done).
/src/sys/ufs/ffs/
H A Dffs_vfsops.c1.347 Wed Mar 01 10:42:45 GMT 2017 hannken Remove now redundant calls to fstrans_start()/fstrans_done().
/src/sys/arch/sparc64/sparc64/
H A Dlocore.s1.347 Wed Jan 23 21:03:25 GMT 2013 martin Fix sparc64_ipi_ccall by adding proper trap setup.
Fixes xcall(9) problems, as exposed by pserialize(9). Noticed by
J. Hannken-Illjes, cause pointed out by Takeshi Nakayama.
/src/sys/dev/ata/
H A Dwd.c1.347 Fri Oct 19 11:59:37 GMT 2007 ad machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
/src/sys/arch/i386/conf/
H A DALL1.347 Wed Oct 17 14:48:13 GMT 2012 apb Add "options COMPAT_60" to all kernel configuration files
that already had "options COMPAT_50".
H A Dfiles.i3861.347 Mon Mar 30 22:28:39 GMT 2009 rmind Merge i386 and amd64 ipifuncs.c into x86. No functional changes intended.
XXX: fpu #ifdefs are ugly (should be revisited at some point).
/src/sys/arch/arm/arm32/
H A Dpmap.c1.347 Mon May 22 06:35:04 GMT 2017 skrll Indent comment to match code it's describing
/src/distrib/notes/common/
H A Dmain1.347 Thu Jul 26 02:19:00 GMT 2007 jnemeth revert previous, it will be added as a new section
/src/etc/
H A DMakefile1.347 Mon Nov 19 18:27:27 GMT 2007 minskim Remove MKUUCP from RELEASEVARS. It is no longer used in src.

Completed in 1094 milliseconds

1234