Searched hist:1.522 (Results 1 - 25 of 30) sorted by relevance
| /src/sys/arch/i386/conf/ | ||
| H A D | ALL | 1.522 Thu Mar 27 00:22:44 GMT 2025 riastradh branches: 1.522.2; virtio(4): Consolidate kernel configs. No functional change intended. Leave `# XXX ?' comments where I don't know why the driver in question is excluded. (Typical reason is that PAGE_SIZE is not 4096 but I didn't investigate -- if you do investigate, please either update the comment if you determine a reason, or enable the driver if you don't.) PR kern/59211: vio9p(4): missing from various GENERICs and MAKEDEVs 1.522 Thu Mar 27 00:22:44 GMT 2025 riastradh branches: 1.522.2; virtio(4): Consolidate kernel configs. No functional change intended. Leave `# XXX ?' comments where I don't know why the driver in question is excluded. (Typical reason is that PAGE_SIZE is not 4096 but I didn't investigate -- if you do investigate, please either update the comment if you determine a reason, or enable the driver if you don't.) PR kern/59211: vio9p(4): missing from various GENERICs and MAKEDEVs |
| H A D | GENERIC | 1.522 Thu Nov 07 21:56:56 GMT 2002 martin Add a driver for the Myson Technology MTD803 3-in-1 Fast Ethernet Controller, provided by Peter Bex in PR 18675. |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs | 1.522 Wed Jan 21 14:36:10 GMT 2009 jnemeth branches: 1.522.2; add a comment explaining how to regenerate usbdevs.h and usbdevs_data.h 1.522 Wed Jan 21 14:36:10 GMT 2009 jnemeth branches: 1.522.2; add a comment explaining how to regenerate usbdevs.h and usbdevs_data.h |
| H A D | usbdevs.h | 1.522 Mon May 25 11:36:52 GMT 2009 nisimura regen to sync with new usbdevs file. |
| H A D | usbdevs_data.h | 1.522 Fri Apr 24 14:07:36 GMT 2009 jakllsch regen. |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.522 Fri May 29 09:13:49 GMT 2015 youri Add myself. |
| /src/share/man/man4/ | ||
| H A D | options.4 | 1.522 Sat May 07 04:35:20 GMT 2022 rin Document MODULAR_DEFAULT_VERBOSE. Bump date. |
| H A D | Makefile | 1.522 Thu Jul 08 20:00:24 GMT 2010 christos man page for balloon driver from Cherry |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | cgram.y | 1.522 Sat Apr 12 15:49:49 GMT 2025 rillig lint: s/illegal/invalid/g Lint does not provide legal advice. |
| H A D | tree.c | 1.522 Wed May 10 21:46:26 GMT 2023 rillig lint: make code simpler No functional change. |
| /src/sys/kern/ | ||
| H A D | init_main.c | 1.522 Mon Feb 24 20:47:47 GMT 2020 jdolecek move config_init_mi() call before vfsinit(), which can trigger loading of VFS modules fixes crash with LOCKDEBUG due to uninitialized mutex when zfs module is loaded in boot, because zfs's spa_init() calls config_mountroot() which now requires the config init having been done |
| H A D | kern_exec.c | 1.522 Sun Nov 10 00:15:46 GMT 2024 mlelstv Add missing rw_exit() in error path. |
| /src/sys/net/ | ||
| H A D | if.c | 1.522 Fri Sep 02 04:34:58 GMT 2022 thorpej f_detach(): Drain the protocol input queues before the pr_purgeif() calls; pktq_barrier() doesn't remove packets from the queue, it waits for the packets enqueued before the barrier to drain. This, in turn, may cause the protocols to gain additional references to the interface that's detaching. By draining the queues first, we ensure that no additional references will be taken after calling pr_purgeif(). |
| /src/sys/arch/amd64/conf/ | ||
| H A D | GENERIC | 1.522 Sat Apr 13 08:41:37 GMT 2019 maxv Introduce POOL_QUARANTINE, a feature that creates a window during which a freed buffer cannot be reallocated. This greatly helps detecting use-after-frees, because they are not short-lived anymore. We maintain a per-pool fifo of 128 buffers. On each pool_put, we do a real free of the oldest buffer, and insert the new buffer. Before insertion, we mark the buffer as invalid with KASAN. On each pool_cache_put, we destruct the object, so it lands in pool_put, and the quarantine is handled there. POOL_QUARANTINE can be used in conjunction with KASAN to detect more use-after-free bugs. |
| /src/sys/dev/pci/ | ||
| H A D | pcidevs.h | 1.522 Sat Apr 05 16:43:47 GMT 2003 lha Regenerate. (add Radeon Mobility M7 LW (AGP)) |
| H A D | pcidevs_data.h | 1.522 Sat Apr 12 08:41:21 GMT 2003 christos regen |
| /src/sys/arch/i386/i386/ | ||
| H A D | machdep.c | 1.522 Sat Apr 26 11:05:14 GMT 2003 ragge Call ksyms_init() instead of ddb_init() in case of NKSYMS || defined(DDB) || defined(LKM) |
| /src/distrib/sets/lists/base/ | ||
| H A D | shl.mi | 1.522 Sat Feb 20 02:55:52 GMT 2010 joerg Update build infrastructure for libarchive 2.8.0. |
| H A D | mi | 1.522 Fri Feb 04 17:10:40 GMT 2005 perry Restore the html directories. They are indeed functional. |
| /src/doc/ | ||
| H A D | 3RDPARTY | 1.522 Tue May 01 19:13:13 GMT 2007 martti ipf 4.1.20 |
| /src/usr.bin/make/ | ||
| H A D | main.c | 1.522 Mon Feb 01 19:43:07 GMT 2021 rillig make: rename functions for parsing command line arguments The function names now match the names around them. |
| H A D | parse.c | 1.522 Mon Dec 28 15:21:33 GMT 2020 rillig make(1): remove mmap for loading files, only allow files < 1 GiB Using mmap is beneficial if the loaded data is read-only, or if it is accessed in random order. Neither of these applies here. When loading a file, make reads it strictly from top to bottom, once. During parsing, the loaded data is modified in-place to insert '\0' and '\n' for terminating strings and lines. Because of all of this, there is no benefit in using mmap. Reading the file using 2 calls to read(2) (one for the data, one for checking for EOF) loads the data in a single pass, instead of producing a page fault whenever the parser passes another page boundary. Use a Buffer for loading the file data, to avoid calling bmake_realloc directly. Do not resize the loaded buffer at the end. Each loaded file is short-lived anyway, and only a few files are loaded at the same time, so there is no point in optimizing this part for low memory usage. |
| /src/sys/sys/ | ||
| H A D | param.h | 1.522 Thu Jan 05 03:40:33 GMT 2017 pgoyette By popular demand, update kernhist to use bintime(9) as the basis for its timestamps. As this changes storage structures for data passed between kernel and userland, welcome to 7.99.55! XXX Output routines still use microsecond resolution when printf()ing. XXX Possible future feature would be addition of option to use XXX getbintime(9) for less time-critical histories. |
| /src/distrib/sets/lists/man/ | ||
| H A D | mi | 1.522 Thu Oct 10 08:22:23 GMT 2002 itojun switch to GNU tar 1.13.25 with security fixes. |
| /src/distrib/sets/lists/tests/ | ||
| H A D | mi | 1.522 Sat Feb 23 22:01:51 GMT 2013 jmmv Autogenerate Kyuafiles next to Atffiles when MKKYUA is set. This is suboptimal: the current high-level definitions of test programs in the Makefiles do not carry enough information to support all the features of Kyuafiles. For example, it is not possible to register test programs that do *not* use the ATF libraries, which is something that has been frequently requested around here; nor it is possible to attach arbitrary metadata to test programs from the Makefile, which is handy particularly for ATF-less test programs. For these reasons, consider this a transitional step. Note that, with this change, you should now be able to use the 'kyua' tool to run the tests in /usr/tests. |
Completed in 1367 milliseconds