Searched hist:1.419 (Results 1 - 25 of 46) sorted by relevance
| /src/sys/arch/i386/conf/ | ||
| H A D | ALL | 1.419 Sat May 27 22:53:29 GMT 2017 bouyer branches: 1.419.2; Add options CAN and pseudo-device canloop to ALL kernel configs. Add the same commented out to i386/amd64 GENERIC and OLIMEXLIME2 (A20-based). Also add commented out awincan0 in OLIMEXLIME2. 1.419 Sat May 27 22:53:29 GMT 2017 bouyer branches: 1.419.2; Add options CAN and pseudo-device canloop to ALL kernel configs. Add the same commented out to i386/amd64 GENERIC and OLIMEXLIME2 (A20-based). Also add commented out awincan0 in OLIMEXLIME2. |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs.h | 1.419 Fri Sep 16 23:54:25 GMT 2005 jmcneill branches: 1.419.2; Additional usbdevs entry for Ralink; found on my Zonet ZEW2500P 1.419 Fri Sep 16 23:54:25 GMT 2005 jmcneill branches: 1.419.2; Additional usbdevs entry for Ralink; found on my Zonet ZEW2500P |
| H A D | usbdevs | 1.419 Mon Nov 28 19:32:07 GMT 2005 augustss Add Siemens AG Wireless Modules MC75. |
| H A D | usbdevs_data.h | 1.419 Sun Sep 11 22:53:49 GMT 2005 augustss Regen. |
| /src/sys/dev/pci/ | ||
| H A D | files.pci | 1.419 Wed Jan 01 10:11:21 GMT 2020 ryo branches: 1.419.2; add support Aquantia AQC seriese 10G network adapters. this driver is based on the FreeBSD version https://github.com/Aquantia/aqtion-freebsd , but drastically rewritten for NetBSD. 1.419 Wed Jan 01 10:11:21 GMT 2020 ryo branches: 1.419.2; add support Aquantia AQC seriese 10G network adapters. this driver is based on the FreeBSD version https://github.com/Aquantia/aqtion-freebsd , but drastically rewritten for NetBSD. |
| /src/sys/arch/alpha/conf/ | ||
| H A D | GENERIC | 1.419 Sun Dec 17 18:48:53 GMT 2023 andvar s/keyboad/keyboard/ in wsmux description comment. |
| /src/sys/net/ | ||
| H A D | if.c | 1.419 Tue Jan 30 10:40:02 GMT 2018 ozaki-r branches: 1.419.2; Destroy ifq_lock at the end of if_detach It still can be used in if_detach. 1.419 Tue Jan 30 10:40:02 GMT 2018 ozaki-r branches: 1.419.2; Destroy ifq_lock at the end of if_detach It still can be used in if_detach. |
| /src/sys/sys/ | ||
| H A D | param.h | 1.419 Sat Sep 01 00:27:12 GMT 2012 matt branches: 1.419.2; Welcome to 6.99.11! 1.419 Sat Sep 01 00:27:12 GMT 2012 matt branches: 1.419.2; Welcome to 6.99.11! |
| /src/sys/uvm/ | ||
| H A D | uvm_map.c | 1.419 Wed Aug 14 00:41:46 GMT 2024 riastradh uvm_map(9): Avoid potential arithmetic overflow. Should be harmless in this case because vaddr_t is unsigned, so there's no undefined behaviour here, but let's make it unnecessary to wonder whether overflow is a problem. No functional change intended. PR kern/51254: uvm assertion "!topdown || hint <= orig_hint" failed |
| /src/sys/arch/sparc64/sparc64/ | ||
| H A D | locore.s | 1.419 Fri Feb 08 20:34:23 GMT 2019 palle sun4v: Improve comment for next_stick_init() - no functional changes |
| /src/sys/dev/ata/ | ||
| H A D | wd.c | 1.419 Mon Apr 13 16:33:24 GMT 2015 riastradh Convert sys/dev to use <sys/rndsource.h>. |
| /src/sys/arch/arm/arm32/ | ||
| H A D | pmap.c | 1.419 Mon Aug 10 05:40:21 GMT 2020 skrll More UVMHIST_LOG and a new KASSERT |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.419 Tue Sep 09 15:44:10 GMT 2008 dyoung I guess it is about time that I added my name. |
| /src/distrib/sets/lists/debug/ | ||
| H A D | mi | 1.419 Sun Oct 15 13:22:52 GMT 2023 riastradh t_fdrestart: New test of closing fd with another thread in I/O on it. Adapted from regress/sys/kern/dislodgefd. PR kern/57659 |
| /src/etc/ | ||
| H A D | Makefile | 1.419 Wed Aug 06 10:37:30 GMT 2014 apb Introduce and use GZIP_FLAGS variable, to fix a quoting error in the way we tried to use GZIP="-9 ${GZIP_N_FLAG}". For consistency, also use GZIP_FLAGS elesehere in this file. |
| /src/share/man/man9/ | ||
| H A D | Makefile | 1.419 Tue Apr 10 16:12:29 GMT 2018 maxv Remove m_getclr. It is unused, confusing (vs m_clget), and is a weak implementation (eg you can't request a zeroed pkthdr mbuf). |
| /src/share/mk/ | ||
| H A D | bsd.README | 1.419 Thu Oct 14 11:45:46 GMT 2021 nia mk: Enable MKARGON2 now that this stuff works. |
| H A D | bsd.lib.mk | 1.419 Sun Apr 13 17:23:06 GMT 2025 riastradh bsd.lib.mk: Redo rev. 1.418 more selectively. Previously, in rev. 1.418, I had changed: .if ${LIBISPRIVATE} != "no" ... . if defined(NOSTATICLIB) && ${MKPICLIB} != "no" MAKESTATICLIB?= no . elif ${LIBISPRIVATE} != "pic" MKPIC:= no . endif ... .endif ... -.if ${LIBISPRIVATE} == "pic" +.if ${MKPIC} != "no" CFLAGS+= -fPIC AFLAGS+= -fPIC .endif This was an attempt to obviate the need for grody conditionals in private shared libraries like libuv: .if ${MACHINE} == "sun2" LIBISPRIVATE=yes .else LIBISPRIVATE=pic .endif This is wrong, after all, because you can also do MKPIC=no on non-sun2 platforms if you really want a static build, and it's a mess to have to write it out in every case. My theory in making that change was that: (a) on MKPIC=yes platforms in makefiles without LIBISPRIVATE=yes, we're building with -fPIC anyway, so ${MKPIC} != no is right; (b) on MKPIC=yes platforms in makefiles with LIBISPRIVATE=yes, we shouldn't build with -fPIC and the conditional above sets MKPIC=no in that case, so ${MKPIC} != no is right; (c) on MKPIC=no platforms (mainly sun2), no matter what LIBISPRIVATE is set to, we shouldn't build with -fPIC, so ${MKPIC} != no is right. But (a) is wrong, because we use the same makefile to build .pico and .o objects from which we link (PIC) .so and (non-PIC) .a libraries, and the distinction is made not in CFLAGS/AFLAGS but in PICFLAGS and CSHLIBFLAGS. So, to obviate the need for the .if sun2 conditionals around LIBISPRIVATE=pic, but avoid breaking everything _other_ than LIBISPRIVATE=pic, let's make the addition of -fPIC to CFLAGS/AFLAGS conditional on _both_ LIBISPRIVATE=pic _and_ MKPIC=yes. PR port-mips/59064: jemalloc switch to 5.3 broke userland |
| /src/share/man/man4/ | ||
| H A D | options.4 | 1.419 Wed Dec 19 15:00:34 GMT 2012 wiz Fix typo. |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | cgram.y | 1.419 Thu May 26 13:40:49 GMT 2022 rillig lint: rename olwarn and LWARN_BAD to be more expressive No functional change. |
| H A D | decl.c | 1.419 Wed May 14 21:09:20 GMT 2025 rillig lint: accept '__attribute__((mode(TI)))' before 'unsigned' |
| /src/sys/kern/ | ||
| H A D | init_main.c | 1.419 Wed Apr 21 16:51:24 GMT 2010 pooka Reduce #ifdef spew by attaching wapbl as a module. (no, it's still too ifdef-ridden to be able to actually do anything useful and module-like like load into any kernel) |
| H A D | kern_exec.c | 1.419 Tue Oct 13 00:24:35 GMT 2015 pgoyette In execve_runproc(), update the p_waited entry for the process being moved to SSTOP state, not for its parent. (It is correct to update the parent's p_nstopchild count.) If the value is not already zero, it could prevent its parent from waiting for the process. Fixes PR kern/50298 Pullups will be requested for: NetBSD-7, -6, -6-0, -6-1, -5, -5-0, -5-1, and -5-2 |
| H A D | vfs_subr.c | 1.419 Thu Feb 17 19:04:03 GMT 2011 matt Since curlwp can't be NULL, just call vfs_shutdown1(curlwp). |
| /src/sys/arch/x86/x86/ | ||
| H A D | pmap.c | 1.419 Sat Aug 20 23:48:51 GMT 2022 riastradh x86: Split most of pmap.h into pmap_private.h or vmparam.h. This way pmap.h only contains the MD definition of the MI pmap(9) API, which loads of things in the kernel rely on, so changing x86 pmap internals no longer requires recompiling the entire kernel every time. Callers needing these internals must now use machine/pmap_private.h. Note: This is not x86/pmap_private.h because it contains three parts: 1. CPU-specific (different for i386/amd64) definitions used by... 2. common definitions, including Xenisms like xpmap_ptetomach, further used by... 3. more CPU-specific inlines for pmap_pte_* operations So {amd64,i386}/pmap_private.h defines 1, includes x86/pmap_private.h for 2, and then defines 3. Maybe we should split that out into a new pmap_pte.h to reduce this trouble. No functional change intended, other than that some .c files must include machine/pmap_private.h when previously uvm/uvm_pmap.h polluted the namespace with pmap internals. Note: This migrates part of i386/pmap.h into i386/vmparam.h -- specifically the parts that are needed for several constants defined in vmparam.h: VM_MAXUSER_ADDRESS VM_MAX_ADDRESS VM_MAX_KERNEL_ADDRESS VM_MIN_KERNEL_ADDRESS Since i386 needs PDP_SIZE in vmparam.h, I added it there on amd64 too, just to keep things parallel. |
Completed in 498 milliseconds