| Home | Sort by: relevance | last modified time | path |
1 2
| /src/share/tmac/ | |
| doc2html | 1.67.16.3 Sun Jan 26 11:19:36 UTC 2020 martin Pull up following revision(s) (requested by uwe in ticket #652): distrib/notes/Makefile.inc: revision 1.54 distrib/notes/common/main: revision 1.561 distrib/notes/common/main: revision 1.562 share/tmac/doc2html: revision 1.71 Use .Os NetBSD/\*M \*V to get more informative footer. Provide ability to override <title> If \*[title-section] is non-empty, use it to override the title instead of appending it. Nothing in the tree uses title-section currently, so it shouldn't affect any existing document. This override will be used by the installation notes where the default title is less than helpful. Override HTML <title> to something more informative. Requested by martin@ Use -mdoc2html to generate HTML TOC to avoids warnings. |
| /src/distrib/notes/ | |
| Makefile.inc | 1.43.18.7 Sun Jan 26 11:19:36 UTC 2020 martin Pull up following revision(s) (requested by uwe in ticket #652): distrib/notes/Makefile.inc: revision 1.54 distrib/notes/common/main: revision 1.561 distrib/notes/common/main: revision 1.562 share/tmac/doc2html: revision 1.71 Use .Os NetBSD/\*M \*V to get more informative footer. Provide ability to override <title> If \*[title-section] is non-empty, use it to override the title instead of appending it. Nothing in the tree uses title-section currently, so it shouldn't affect any existing document. This override will be used by the installation notes where the default title is less than helpful. Override HTML <title> to something more informative. Requested by martin@ Use -mdoc2html to generate HTML TOC to avoids warnings. |
| /src/share/man/man4/ | |
| wm.4 | 1.36.4.1 Mon Feb 05 15:07:30 UTC 2018 martin Pull up following revision(s) (requested by knakahara in ticket #529): sys/dev/pci/if_wm.c: revision 1.560 sys/dev/pci/if_wm.c: revision 1.561 sys/dev/pci/if_wm.c: revision 1.562 share/man/man4/wm.4: revision 1.37 share/man/man4/wm.4: revision 1.38 sys/dev/pci/if_wm.c: revision 1.551 sys/dev/pci/if_wm.c: revision 1.553 sys/dev/pci/if_wm.c: revision 1.554 sys/dev/pci/if_wm.c: revision 1.555 sys/dev/pci/if_wm.c: revision 1.556 sys/dev/pci/if_wm.c: revision 1.557 sys/dev/pci/if_wm.c: revision 1.558 sys/dev/pci/if_wm.c: revision 1.559 PR/52885 - Shinichi Doyashiki -- typo in comment Fix legacy Tx descriptors printing when WM_DEBUG is enabled. improve comments Fix wm_watchdog_txq() lock region. Not only wm_txeof() but also wm_watchdog_txq() itself requires txq_lock as it reads Tx descriptor management variables such as "txq_free". There is almost no influence on performance. Fix duplicated "rxintr" evcnt counting. Pointed out by ozaki-r@n.o, thanks. wm_txeof() can limit the loop count the same as wm_rxeof() now. add WM_TX_PROCESS_LIMIT_DEFAULT and WM_TX_INTR_PROCESS_LIMIT_DEFAULT man. More markup. CID-1427779: Fix uninitialized variables Fix 82574 MSI-X mode cannot receive packets after 82574 receives high rate traffic. In short, 82574 MSI-X mode does not cause RXQ MSI-X vector when 82574's phys FIFO overflows. I don't know why but 82574 causes not RXQ MSI-X vector but OTHER MSI-X vector at the situation. see: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v4.15-rc9&id=4aea7a5c5e940c1723add439f4088844cd26196d advised by msaitoh@n.o, thanks. Fix if_wm.c:r1.557 merge miss, sorry. Fix unmatched return type. The return value of wm_txeof() is not useded yet. Make wm(4) watchdog MP-safe. There is almost no influence on performance. wm(4) does not use ifp->if_watchdog now, that is, it does not touch ifp->if_timer. It also uses own callout(wm_tick) as watchdog now. The watchdog uses per-queue counter to check timeout. So, global lock is not required. |
| Makefile | 1.561 Wed Jul 13 07:52:49 UTC 2011 jruoho A driver for HP 3D DriverGuard; a LIS3LV02DL-based accelerometer. Tested on HP NC4400. Like aps(4), this is commented out in the GENERIC kernels. |
| /src/distrib/notes/common/ | |
| main | 1.561 Thu Jan 23 23:34:47 UTC 2020 uwe Use .Os NetBSD/\*M \*V to get more informative footer. 1.551.2.8 Sun Jan 26 11:19:36 UTC 2020 martin Pull up following revision(s) (requested by uwe in ticket #652): distrib/notes/Makefile.inc: revision 1.54 distrib/notes/common/main: revision 1.561 distrib/notes/common/main: revision 1.562 share/tmac/doc2html: revision 1.71 Use .Os NetBSD/\*M \*V to get more informative footer. Provide ability to override <title> If \*[title-section] is non-empty, use it to override the title instead of appending it. Nothing in the tree uses title-section currently, so it shouldn't affect any existing document. This override will be used by the installation notes where the default title is less than helpful. Override HTML <title> to something more informative. Requested by martin@ Use -mdoc2html to generate HTML TOC to avoids warnings. |
| /src/sys/dev/usb/ | |
| usbdevs.h | 1.561 Thu Nov 25 14:16:55 UTC 2010 sborrill regen |
| usbdevs_data.h | 1.561 Thu Nov 04 09:19:14 UTC 2010 pooka regen |
| usbdevs | 1.561 Fri Jul 02 08:35:41 UTC 2010 tnn Add id for Samsung GT-B3730 LTE/4G datacard |
| /src/usr.bin/xlint/lint1/ | |
| tree.c | 1.561 Wed Jul 12 19:34:01 UTC 2023 rillig lint: clean up handling of __real__ and __imag__ These two operatos are not binary, therefore they don't need a right operand. The questionable operands were a copy-and-paste mistake, as the code was taken from the ++ and -- operands (tree.c 1.46 from 2008-04-25). The ++ and -- operands aren't binary either, but since lint represents address calculations in their premultiplied form, the expression ptr++ contains a hidden right operand specifying the number of bytes by which to increment the pointer. Creating an integer-constant-expression node with type 'long double' didn't make sense either. Luckily, these expressions are only built but not analyzed any further. |
| /src/usr.bin/make/ | |
| parse.c | 1.561 Sat Aug 14 13:32:12 UTC 2021 rillig make: rename variable and function for handling parse errors The word 'fatals' was an unnecessary abbreviation. No functional change. |
| main.c | 1.561 Tue Dec 28 01:20:24 UTC 2021 rillig make: clean up stylistically No binary change. |
| var.c | 1.561 Sat Oct 03 00:46:52 UTC 2020 rillig make(1): extract ApplyModifier_Unique into separate function |
| /src/sys/dev/pci/ | |
| if_wm.c | 1.561 Mon Jan 29 04:17:32 UTC 2018 knakahara Fix unmatched return type. The return value of wm_txeof() is not useded yet. 1.508.4.13 Mon Feb 05 15:07:30 UTC 2018 martin Pull up following revision(s) (requested by knakahara in ticket #529): sys/dev/pci/if_wm.c: revision 1.560 sys/dev/pci/if_wm.c: revision 1.561 sys/dev/pci/if_wm.c: revision 1.562 share/man/man4/wm.4: revision 1.37 share/man/man4/wm.4: revision 1.38 sys/dev/pci/if_wm.c: revision 1.551 sys/dev/pci/if_wm.c: revision 1.553 sys/dev/pci/if_wm.c: revision 1.554 sys/dev/pci/if_wm.c: revision 1.555 sys/dev/pci/if_wm.c: revision 1.556 sys/dev/pci/if_wm.c: revision 1.557 sys/dev/pci/if_wm.c: revision 1.558 sys/dev/pci/if_wm.c: revision 1.559 PR/52885 - Shinichi Doyashiki -- typo in comment Fix legacy Tx descriptors printing when WM_DEBUG is enabled. improve comments Fix wm_watchdog_txq() lock region. Not only wm_txeof() but also wm_watchdog_txq() itself requires txq_lock as it reads Tx descriptor management variables such as "txq_free". There is almost no influence on performance. Fix duplicated "rxintr" evcnt counting. Pointed out by ozaki-r@n.o, thanks. wm_txeof() can limit the loop count the same as wm_rxeof() now. add WM_TX_PROCESS_LIMIT_DEFAULT and WM_TX_INTR_PROCESS_LIMIT_DEFAULT man. More markup. CID-1427779: Fix uninitialized variables Fix 82574 MSI-X mode cannot receive packets after 82574 receives high rate traffic. In short, 82574 MSI-X mode does not cause RXQ MSI-X vector when 82574's phys FIFO overflows. I don't know why but 82574 causes not RXQ MSI-X vector but OTHER MSI-X vector at the situation. see: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v4.15-rc9&id=4aea7a5c5e940c1723add439f4088844cd26196d advised by msaitoh@n.o, thanks. Fix if_wm.c:r1.557 merge miss, sorry. Fix unmatched return type. The return value of wm_txeof() is not useded yet. Make wm(4) watchdog MP-safe. There is almost no influence on performance. wm(4) does not use ifp->if_watchdog now, that is, it does not touch ifp->if_timer. It also uses own callout(wm_tick) as watchdog now. The watchdog uses per-queue counter to check timeout. So, global lock is not required. |
| pcidevs.h | 1.561 Fri Aug 01 00:07:32 UTC 2003 jonathan regen from pcidevs rev 560 (adding Sun's bcm582x-compatible crypto accelerators) |
| pcidevs_data.h | 1.561 Thu Aug 07 05:35:36 UTC 2003 wiz regen (fix ID of Radeon 9100 Secondary) |
| pcidevs | 1.561 Fri Aug 01 11:55:03 UTC 2003 wiz Avoid duplicate definitions. From Quentin Garnier in PR 22331. |
| /src/sys/arch/amd64/conf/ | |
| GENERIC | 1.561 Sat Feb 08 07:07:06 UTC 2020 maxv Retire KLEAK. KLEAK was a nice feature and served its purpose; it allowed us to detect dozens of info leaks on the kernel->userland boundary, and thanks to it we tackled a good part of the infoleak problem 1.5 years ago. Nowadays however, we have kMSan, which can detect uninitialized memory in the kernel. kMSan supersedes KLEAK: it can detect what KLEAK was able to detect, but in addition, (1) it operates in all of the kernel and not just the kernel->userland boundary, (2) it requires no user interaction, and (3) it is deterministic and not statistical. That makes kMSan the feature of choice to detect info leaks nowadays; people interested in detecting info leaks should boot a kMSan kernel and just wait for the magic to happen. KLEAK was a good ride, and a fun project, but now is time for it to go. Discussed with several people, including Thomas Barabosch. |
| /src/sys/arch/i386/i386/ | |
| machdep.c | 1.561 Fri Apr 01 11:59:31 UTC 2005 yamt merge yamt-km branch. - don't use managed mappings/backing objects for wired memory allocations. save some resources like pv_entry. also fix (most of) PR/27030. - simplify kernel memory management API. - simplify pmap bootstrap of some ports. - some related cleanups. |
| /src/sys/kern/ | |
| vfs_syscalls.c | 1.561 Sat Sep 09 18:34:44 UTC 2023 ad do_sys_accessat(): copy credentials only when needed. |
| /src/sys/sys/ | |
| param.h | 1.561 Sun May 06 13:40:52 UTC 2018 kamil Remove an element from struct emul: e_tracesig e_tracesig used to be implemented for Darwin compat. Nowadays the Darwin compatiblity layer is gone and there are no other users. This functionality isn't used where it shall be used in the existing codebase. If we want to emulate debugging interfaces in compat layers we would need to implement that from scratch anyway. We would need to be bug compatible with other OSes too. Proposed on tech-kern@. Welcome to NetBSD 8.99.16! Sponsored by <The NetBSD Foundation> |
| /src/sys/arch/i386/conf/ | |
| GENERIC | 1.561 Thu May 29 20:22:28 UTC 2003 fvdl Add the options MPBIOS_SCANPCI and MPACPI_SCANPCI to configure PCI roots with the MPBIOS/ACPI bus information, by walking through the buses, and descending down every bus that hasn't been marked configured yet. |
| /src/sys/conf/ | |
| files | 1.561 Thu Oct 10 22:07:44 UTC 2002 thorpej Move IR and Bluetooth config defns missed in previous commit. |
| /src/doc/ | |
| CHANGES | 1.561 Sat Jan 14 20:27:22 UTC 2006 wiz Fix typo. |
| /src/distrib/sets/lists/tests/ | |
| mi | 1.561 Sat Feb 01 20:49:11 UTC 2014 jmmv Add missing Kyuafile for usr.bin/vmstat tests. |
| /src/distrib/sets/lists/base/ | |
| mi | 1.561 Mon Jul 25 00:19:36 UTC 2005 hubertf Add vndcompress(1) and vnduncompress(1) to transform filesystem/disk images from "normal" into cloop2-format compressed images and back. Written by Florian Stoehr (netbsd@wolfnode.de) with some polishing by me. Compressed disk images can be used with the vnd(4) driver when compiled with VND_COMPRESSION and "vnconfig -z". Useful for creation of Live CDs/DVDs. 1.532.2.20 Tue Aug 16 00:05:18 UTC 2005 tron Pull up revision 1.561 (requested by hubertf in ticket #667): Add vndcompress(1) and vnduncompress(1) to transform filesystem/disk images from "normal" into cloop2-format compressed images and back. Written by Florian Stoehr (netbsd@wolfnode.de) with some polishing by me. Compressed disk images can be used with the vnd(4) driver when compiled with VND_COMPRESSION and "vnconfig -z". Useful for creation of Live CDs/DVDs. |
1 2