Searched hist:1.408 (Results 1 - 25 of 50) sorted by relevance
| /src/sys/arch/alpha/conf/ | ||
| H A D | GENERIC | 1.410 Mon Sep 28 03:30:47 GMT 2020 thorpej branches: 1.410.6; 1.410.8; Fix typo in rev 1.408. 1.408 Sun Sep 27 13:48:49 GMT 2020 roy vether: Add to kernel configurations It's only enabled if the kernel enabled bridge AND tap. Otherwise it's commented out. |
| /src/sys/arch/i386/conf/ | ||
| H A D | files.i386 | 1.408 Fri Feb 23 22:10:39 GMT 2024 andvar branches: 1.408.2; s/optionms/options/ in copy-pasted comment. 1.408 Fri Feb 23 22:10:39 GMT 2024 andvar branches: 1.408.2; s/optionms/options/ in copy-pasted comment. |
| H A D | ALL | 1.408 Thu Dec 15 04:01:09 GMT 2016 ozaki-r Add SCTP to ALL configs to keep it buildable anyway |
| /src/share/misc/ | ||
| H A D | acronyms.comp | 1.408 Tue Jun 10 20:22:05 GMT 2025 jschauma +EMS extended master secret (RFC7627) |
| /src/sys/kern/ | ||
| H A D | kern_exec.c | 1.408 Sun Jun 22 17:23:34 GMT 2014 maxv branches: 1.408.2; A KASSERT() is better. 1.408 Sun Jun 22 17:23:34 GMT 2014 maxv branches: 1.408.2; A KASSERT() is better. |
| H A D | kern_sig.c | 1.408 Thu Oct 05 19:06:30 GMT 2023 ad kern_sig.c: remove problematic kernel_lock handling which is unneeded in 2023. |
| /src/sys/netinet/ | ||
| H A D | tcp_input.c | 1.408 Fri May 18 18:58:51 GMT 2018 maxv branches: 1.408.2; IP6_EXTHDR_GET -> M_REGION_GET, no functional change. 1.408 Fri May 18 18:58:51 GMT 2018 maxv branches: 1.408.2; IP6_EXTHDR_GET -> M_REGION_GET, no functional change. |
| /src/sys/sys/ | ||
| H A D | param.h | 1.408 Sat Feb 11 23:19:11 GMT 2012 martin branches: 1.408.2; Welcome to 5.99.65 - posix_spawn syscall added 1.408 Sat Feb 11 23:19:11 GMT 2012 martin branches: 1.408.2; Welcome to 5.99.65 - posix_spawn syscall added |
| /src/sys/uvm/ | ||
| H A D | uvm_map.c | 1.408 Sun Sep 10 14:45:53 GMT 2023 ad - Do away with separate pool_cache for some kernel objects that have no special requirements and use the general purpose allocator instead. On one of my test systems this makes for a small (~1%) but repeatable reduction in system time during builds presumably because it decreases the kernel's cache / memory bandwidth footprint a little. - vfs_lockf: cache a pointer to the uidinfo and put mutex in the data segment. |
| /src/sys/arch/sparc64/sparc64/ | ||
| H A D | locore.s | 1.408 Fri Feb 10 23:26:23 GMT 2017 palle sun4v: Added handling of trap type 0x034 (address alignment error) + fixed typo mmfsa -> mmufsa. Verified for both sun4u and sun4v using qemu. |
| /src/sys/dev/ata/ | ||
| H A D | wd.c | 1.408 Fri Jul 25 08:02:19 GMT 2014 dholland Add d_discard to all struct bdevsw instances I could find. I've set them all to nodiscard. Some of them (wd, dk, vnd, ld, raidframe, maybe cgd) should be implemented for real. |
| /src/sys/arch/arm/arm32/ | ||
| H A D | pmap.c | 1.408 Sat Apr 18 10:46:32 GMT 2020 skrll Remove PMAP_DEBUG by converting to UVMHIST |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.408 Wed Sep 03 23:44:24 GMT 2008 ober Updates to enable the iwn man page |
| /src/distrib/sets/lists/debug/ | ||
| H A D | mi | 1.408 Sat Jul 29 00:16:34 GMT 2023 christos Add tests for t_memfd_create and fix bug found by tests |
| /src/etc/ | ||
| H A D | Makefile | 1.408 Wed May 01 15:55:53 GMT 2013 agc Install pkgpath.conf in /etc - part of fix for misc PR/47645 |
| /src/share/man/man9/ | ||
| H A D | Makefile | 1.408 Sat Apr 15 03:33:05 GMT 2017 kamil Add new documentation for klua_mod_register(9) and klua_lock(9) Lua kernel bindings. |
| /src/share/mk/ | ||
| H A D | bsd.README | 1.408 Sun Jun 21 13:29:05 GMT 2020 lukem document PROGS and PROGS_CXX, and default c++ SRCS |
| H A D | bsd.lib.mk | 1.408 Thu Oct 31 15:04:11 GMT 2024 riastradh bsd.lib.mk: Let update-symbols know about ro vs rw source trees. The update-symbols target is a tool for developers to update the foo.expsym files from the actual list of exported symbols. But if you have /home/dev/netbsd/src as a read-only null-mount of your real read/write source tree /home/dev/netbsd/src.hg as I do (in order to detect accidental writes to the srcdir which should have gone to the objdir), `make update-symbols' doesnt work because it tries to write to the read-only null mount. With this change, make update-symbols NETBSDSRCDIR_RW=/home/dev/netbsd/src.hg will write instead to the read/write source tree. |
| /src/share/man/man4/ | ||
| H A D | options.4 | 1.408 Fri Jun 17 18:13:49 GMT 2011 wiz Remove trailing whitespace. Bump date for previous. |
| /src/sys/dev/raidframe/ | ||
| H A D | rf_netbsdkintf.c | 1.408 Wed Aug 10 01:16:38 GMT 2022 mrg raidframe: reject invalid values for numCol and numSpares numCol and numSpares are "int" so they can be "-1" internally, which means negative values need to be rejected, as well as values higher than RF_MAXCOL/RF_MAXSPARES. explicitly nul-terminate all strings coming from userland. some minor CSE that avoids signed arith. this fixes issues in the RAIDFRAME_ADD_HOT_SPARE, RAIDFRAME_CONFIGURE, RAIDFRAME_DELETE_COMPONENT, RAIDFRAME_INCORPORATE_HOT_SPARE, and RAIDFRAME_REBUILD_IN_PLACE ioctl commands. Reported-by: syzbot+b584943ad1f8ab9d4fe0@syzkaller.appspotmail.com https://syzkaller.appspot.com/bug?id=61e07e418261f8eec8a37a9226725fe31820edd0 https://syzkaller.appspot.com/bug?id=ca0c997b40de81c0f0b44790217731f142003149 https://syzkaller.appspot.com/bug?id=6fc452d228453494655a85264591dd9054cc0b08 https://syzkaller.appspot.com/bug?id=873f0271682713a27adc9a49dd7109c70b35fda3 XXX: pullup-8, pullup-9. ok oster@ riastradh@ |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs | 1.408 Wed Aug 03 21:17:50 GMT 2005 augustss Add a Targus mouse. |
| H A D | usbdevs.h | 1.408 Mon Jul 04 05:55:26 GMT 2005 augustss Regen. |
| H A D | usbdevs_data.h | 1.408 Fri Jul 01 19:39:13 GMT 2005 drochner regen |
| /src/sys/dev/pci/ | ||
| H A D | files.pci | 1.408 Wed Nov 14 06:56:30 GMT 2018 skrll defflag XHCI_DISABLE_MSIX |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | cgram.y | 1.408 Sat Apr 30 19:18:48 GMT 2022 rillig lint: inline macro Sflag in cases of expected behavior In the grammar rules 'enums_with_opt_comma' and 'block_item_list', checking for allow_c99 was redundant since c99ism does not warn in C99 mode. In the grammar rule 'designator', align the two actions structurally. No functional change. |
Completed in 630 milliseconds