Searched hist:1.542 (Results 1 - 25 of 26) sorted by relevance
| /src/sys/dev/pci/ | ||
| H A D | if_wmreg.h | 1.105 Wed Nov 22 02:36:52 GMT 2017 msaitoh branches: 1.105.2; Revert if_wmreg.h 1.104 and if_wm.c 1.542. It's not required to mask other than VLAN ID bits in VLAN tag. |
| H A D | pcidevs | 1.542 Sat Jun 28 22:54:23 GMT 2003 bouyer branches: 1.542.2; Add some intel devices, from Quentin Garnier in private mail. 1.542 Sat Jun 28 22:54:23 GMT 2003 bouyer branches: 1.542.2; Add some intel devices, from Quentin Garnier in private mail. |
| H A D | pcidevs.h | 1.542 Fri Jun 27 13:20:00 GMT 2003 christos Regen |
| H A D | pcidevs_data.h | 1.542 Sun Jul 06 07:13:40 GMT 2003 tron Regen. |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs | 1.542 Sat Feb 06 10:11:55 GMT 2010 tonio branches: 1.542.2; Add TENX vendor and two devices 1.542 Sat Feb 06 10:11:55 GMT 2010 tonio branches: 1.542.2; Add TENX vendor and two devices |
| H A D | usbdevs.h | 1.542 Sun Mar 14 08:45:12 GMT 2010 explorer branches: 1.542.2; add device id and quirks for iPhone 3GS (just copy the 3G ones) 1.542 Sun Mar 14 08:45:12 GMT 2010 explorer branches: 1.542.2; add device id and quirks for iPhone 3GS (just copy the 3G ones) |
| H A D | usbdevs_data.h | 1.542 Thu Mar 11 10:35:59 GMT 2010 enami Regen. |
| /src/sys/sys/ | ||
| H A D | param.h | 1.542 Sun May 28 16:39:42 GMT 2017 hannken branches: 1.542.2; Restrict vgone() to suspended file systems only. Welcome to 7.99.75, old file system modules would cause a diagnostic assertion with new kernel. 1.542 Sun May 28 16:39:42 GMT 2017 hannken branches: 1.542.2; Restrict vgone() to suspended file systems only. Welcome to 7.99.75, old file system modules would cause a diagnostic assertion with new kernel. |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.542 Wed Feb 28 20:13:09 GMT 2018 snj prune 5.x upgrade section |
| /src/share/mk/ | ||
| H A D | bsd.own.mk | 1.542 Wed Oct 29 23:46:52 GMT 2008 macallan branches: 1.542.2; add suncg6 driver 1.542 Wed Oct 29 23:46:52 GMT 2008 macallan branches: 1.542.2; add suncg6 driver |
| /src/sys/kern/ | ||
| H A D | init_main.c | 1.542 Fri Jul 07 00:34:50 GMT 2023 riastradh heartbeat(9): New mechanism to check progress of kernel. This uses hard interrupts to check progress of low-priority soft interrupts, and one CPU to check progress of another CPU. If no progress has been made after a configurable number of seconds (kern.heartbeat.max_period, default 15), then the system panics -- preferably on the CPU that is stuck so we get a stack trace in dmesg of where it was stuck, but if the stuckness was detected by another CPU and the stuck CPU doesn't acknowledge the request to panic within one second, the detecting CPU panics instead. This doesn't supplant hardware watchdog timers. It is possible for hard interrupts to be stuck on all CPUs for some reason too; in that case heartbeat(9) has no opportunity to complete. Downside: heartbeat(9) relies on hardclock to run at a reasonably consistent rate, which might cause trouble for the glorious tickless future. However, it could be adapted to take a parameter for an approximate number of units that have elapsed since the last call on the current CPU, rather than treating that as a constant 1. XXX kernel revbump -- changes struct cpu_info layout |
| /src/sys/arch/amd64/conf/ | ||
| H A D | GENERIC | 1.542 Mon Oct 28 03:01:11 GMT 2019 ozaki-r Add vio9p to some kernel configs |
| /src/share/man/man4/ | ||
| H A D | Makefile | 1.542 Sun Jan 09 15:12:34 GMT 2011 jruoho Add a dummy-driver for ACPI fans. |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | tree.c | 1.542 Sat Jul 01 10:04:27 GMT 2023 rillig lint: constify, reduce indentation No functional change. |
| /src/sys/arch/i386/i386/ | ||
| H A D | machdep.c | 1.542 Mon Oct 27 14:11:46 GMT 2003 junyoung Nuke __P(). |
| /src/distrib/sets/lists/base/ | ||
| H A D | shl.mi | 1.542 Mon Jun 21 21:46:58 GMT 2010 pooka zzlib |
| H A D | mi | 1.542 Tue Apr 12 14:47:08 GMT 2005 jwise spamlogd is now pfspamlogd. |
| /src/doc/ | ||
| H A D | 3RDPARTY | 1.542 Wed Jul 25 09:07:27 GMT 2007 tron Note import of BIND 9.4.1-P1. |
| /src/usr.bin/make/ | ||
| H A D | main.c | 1.542 Mon Dec 13 05:25:04 GMT 2021 rillig make: fix memory leak for filenames in .for loops (since 2013-06-18) Previously, each time a .for directive pushed its buffer on the input file stack, the current filename was duplicated. This was a waste of memory. The name of a file is typically only used while it is read in. There is one situation when the filename is needed for longer, which is when a target is defined. Since .for loops are implemented as a special form of included files, each .for loop duplicated the current filename as well. $ cat << EOF > for.mk .for i in 1 2 3 4 5 6 7 8 9 0 .for i in 1 2 3 4 5 6 7 8 9 0 .for i in 1 2 3 4 5 6 7 8 9 0 .for i in 1 2 3 4 5 6 7 8 9 0 .for i in 1 2 3 4 5 6 7 8 9 0 .for i in 1 2 3 4 5 6 7 8 9 0 .for i in 1 2 3 4 5 6 7 8 9 0 .endfor .endfor .endfor .endfor .endfor .endfor .endfor all: @ps -o rsz -p ${.MAKE.PID} EOF $ make-2021.12.13.03.55.16 -r -f for.mk RSZ 10720 $ ./make -r -f for.mk RSZ 1716 The difference is 8 MB, which amounts to 1 million .for loops. |
| H A D | parse.c | 1.542 Wed Feb 03 13:53:12 GMT 2021 rillig make: replace Global_AppendExpand with Global_Append All callers with a variable name that is guaranteed to not contain a dollar sign have been converted to call Global_Append instead of the previous Global_AppendExpand. After that, Global_AppendExpand was unused, therefore it was effectively just renamed. |
| H A D | var.c | 1.542 Sat Sep 26 14:48:31 GMT 2020 rillig make(1): add Hash_FindValue, for direct access to hash table data |
| /src/sys/arch/i386/conf/ | ||
| H A D | GENERIC | 1.542 Sun Jan 19 10:42:06 GMT 2003 tron Correct indentation error for "COMPAT_OSSAUDIO" option. |
| /src/distrib/sets/lists/man/ | ||
| H A D | mi | 1.542 Thu Jan 23 17:38:23 GMT 2003 christos add gcore. |
| /src/distrib/sets/lists/tests/ | ||
| H A D | mi | 1.542 Thu Jul 25 14:28:29 GMT 2013 kefren add a couple of tests for dynamic MPLS routes generation using ldpd |
| /src/sys/conf/ | ||
| H A D | files | 1.542 Fri Aug 02 00:32:12 GMT 2002 thorpej Add dmover(9) glue. |
Completed in 1539 milliseconds