Searched hist:1.732 (Results 1 - 22 of 22) sorted by relevance
| /src/sys/dev/pci/ | ||
| H A D | if_wm.c | 1.732 Thu May 19 02:22:59 GMT 2022 msaitoh Call wm_xxeof() only when limit > 0. It's not required to call wm_xxeof() when limit == 0. It means that all xxeof processing will be done by softint or workqueue. Currently, wm_xxeof() returns quickly before checking the descriptor head when limit == 0 and return with ture to set the more flag. |
| H A D | pcidevs.h | 1.732 Sun Aug 21 21:21:48 GMT 2005 gavan regen |
| H A D | pcidevs_data.h | 1.732 Sun Sep 04 19:44:09 GMT 2005 tron Regen. |
| H A D | pcidevs | 1.732 Sun Sep 04 19:42:26 GMT 2005 tron Add PCI ids for ATI Radeon 9600 LE. |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs | 1.732 Tue Apr 18 19:09:12 GMT 2017 riastradh branches: 1.732.2; gson@ informs me the Alea I and II have the same USB product id. Thus, ualea(4) should work for both of them. Rename USB product id ARANEUS ALEA_II to ARANEUS ALEA to reflect this. No functional change intended, except perhaps via usbdevs. 1.732 Tue Apr 18 19:09:12 GMT 2017 riastradh branches: 1.732.2; gson@ informs me the Alea I and II have the same USB product id. Thus, ualea(4) should work for both of them. Rename USB product id ARANEUS ALEA_II to ARANEUS ALEA to reflect this. No functional change intended, except perhaps via usbdevs. |
| H A D | usbdevs.h | 1.732 Tue Aug 29 18:33:15 GMT 2017 ryoon Regen. |
| H A D | usbdevs_data.h | 1.732 Sun Aug 06 02:33:13 GMT 2017 ryoon Regen from previous changes of usbdevs to fix kernel build |
| /src/sys/arch/i386/conf/ | ||
| H A D | GENERIC | 1.732 Mon Mar 06 18:35:24 GMT 2006 bouyer branches: 1.732.2; Add svwsata(4), a driver for Serverworks K2 SATA controllers. From OpenBSD via Joerg Sonnenberger. 1.732 Mon Mar 06 18:35:24 GMT 2006 bouyer branches: 1.732.2; Add svwsata(4), a driver for Serverworks K2 SATA controllers. From OpenBSD via Joerg Sonnenberger. |
| /src/distrib/sets/lists/man/ | ||
| H A D | mi | 1.732 Thu Nov 11 01:53:41 GMT 2004 christos branches: 1.732.2; Add ptyfs installed files. 1.732 Thu Nov 11 01:53:41 GMT 2004 christos branches: 1.732.2; Add ptyfs installed files. |
| /src/share/man/man4/ | ||
| H A D | Makefile | 1.732 Fri Jun 30 00:48:03 GMT 2023 gutteridge Add npflog.4 to sets |
| /src/sys/arch/i386/i386/ | ||
| H A D | machdep.c | 1.732 Sun Sep 30 20:54:52 GMT 2012 dsl Fix build. I've removed 'option apmbios' so config no longer generates apmbios.h Not to be confused with dev/apm/apmbios.h :-) |
| /src/distrib/sets/lists/base/ | ||
| H A D | shl.mi | 1.732 Sat Jan 17 19:12:57 GMT 2015 christos bump libamu. |
| H A D | mi | 1.732 Wed Nov 21 01:28:44 GMT 2007 dogcow add <dev/pud> (hi, pooka!) |
| /src/doc/ | ||
| H A D | 3RDPARTY | 1.732 Wed Nov 11 15:35:57 GMT 2009 plunky update libevent version information |
| H A D | CHANGES | 1.732 Fri Oct 20 09:40:34 GMT 2006 yamt mention tcp abc. reminded by Rui Paulo. |
| /src/usr.bin/make/ | ||
| H A D | parse.c | 1.732 Thu Jul 04 17:47:53 GMT 2024 rillig make: add more context information to error messages In case of a parse error or evaluation error, print the variable value in addition to the variable name, to see the effects of previous expression modifiers. In nested make calls, print the current directory at the bottom of a stack trace, as that information is otherwise hard to get in a parallel build spanning multiple directories. |
| H A D | var.c | 1.732 Sun Dec 13 02:15:49 GMT 2020 rillig make(1): remove dead code from GetVarnamesToUnexport Now that the parsing of the directives is unified and strict, there is no need anymore for the dispatched functions to check for unknown directives. These functions don't even get the information to decide that since this decision is already done. |
| /src/sys/sys/ | ||
| H A D | param.h | 1.732 Sat Sep 23 18:49:16 GMT 2023 ad NetBSD 10.99.9 - struct lwp changed |
| /src/distrib/sets/lists/tests/ | ||
| H A D | mi | 1.732 Sun Apr 02 21:44:00 GMT 2017 kamil Import ptrace(2) tests into appropriate directory tests/lib/libc/sys/ This is the correct directory documented in tests/README for such tests. Discussed with <martin> Sponsored by <The NetBSD Foundation> |
| /src/share/mk/ | ||
| H A D | bsd.own.mk | 1.732 Wed Jun 05 07:41:56 GMT 2013 mrg define X11SRCDIR.xorg-docs. |
| /src/sys/conf/ | ||
| H A D | files | 1.732 Fri Sep 23 00:10:31 GMT 2005 jmmv Apply the NFS exports list rototill patch: - Remove all NFS related stuff from file system specific code. - Drop the vfs_checkexp hook and generalize it in the new nfs_check_export function, thus removing redundancy from all file systems. - Move all NFS export-related stuff from kern/vfs_subr.c to the new file sys/nfs/nfs_export.c. The former was becoming large and its code is always compiled, regardless of the build options. Using the latter, the code is only compiled in when NFSSERVER is enabled. While doing this, also make some functions in nfs_subs.c conditional to NFSSERVER. - Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a path and a set of export entries. At the moment it can only clear the exports list or append entries, one by one, but it is done in a way that allows setting the whole set of entries atomically in the future (see the comment in mountd_set_exports_list or in doc/TODO). - Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so that it becomes file system agnostic. In fact, all this whole thing was done to remove a 'XXX' block from this utility! - Change the mount*, newfs and fsck* userland utilities to not deal with NFS exports initialization; done internally by the kernel when initializing the NFS support for each file system. - Implement an interface for VFS (called VFS hooks) so that several kernel subsystems can run arbitrary code upon receipt of specific VFS events. At the moment, this only provides support for unmount and is used to destroy NFS exports lists from the file systems being unmounted, though it has room for extension. Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments and advice in the development of this patch. |
| /src/distrib/sets/lists/comp/ | ||
| H A D | mi | 1.732 Thu Sep 23 00:54:58 GMT 2004 he Add sys/cpu_data.h and sys/cc_microtime.h. |
Completed in 1565 milliseconds