Searched hist:1.535 (Results 1 - 25 of 27) sorted by relevance
| /src/tests/fs/vfs/ | ||
| H A D | t_ro.c | 1.8 Sat Sep 21 14:25:42 GMT 2019 kre branches: 1.8.10; Initialise the sometvs array of struct timeval that is to be used to validate that utimes() cannot update the times of a file on a read only filesystem. The values are never actually used, but since src/sys/kern/vfs_syscalls.c 1.535 they are validated for sanity, and the syscall returns EINVAL if the values passed are invalid (tv_usec <0 or >= 1000000). If that happens we don't get as far as the test which produces the EROFS that is expected from this test (these tests - one for each filesystem type). So, init the timeval structs (just to 0, the values will still not be used) so that the EINVAL doesn't bite us before we're eaten by the EROFS which is the way we're supposed to die. If the syscall API args were labelled as "const" the compiler probably would have caught the use of uninit'd vars and complained much sooner. |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.535 Tue May 16 17:40:01 GMT 2017 snj branches: 1.535.2; update core 1.535 Tue May 16 17:40:01 GMT 2017 snj branches: 1.535.2; update core |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs | 1.535 Fri Oct 30 16:22:32 GMT 2009 is Quirk to regenerate residue for borken UMASS devices; needed (at least) for Supertop IDE bridge. From Matthias Kretschmer, PR 42225. |
| H A D | usbdevs.h | 1.535 Thu Jan 14 09:30:39 GMT 2010 matthias Make ums.c work with a "Microsoft Natural Ergonomic Desktop 7000" mouse. XXX The tilt function still doesn't work for me. |
| H A D | usbdevs_data.h | 1.535 Tue Jan 12 14:51:43 GMT 2010 jakllsch regen. |
| /src/sys/kern/ | ||
| H A D | init_main.c | 1.535 Thu Apr 01 04:41:38 GMT 2021 simonb Expose olde style intrcnt interrupt accounting via event counters. This code will be garbage collected once our last legacy intrcnt user is update to native evcnts. |
| /src/sys/net/ | ||
| H A D | if.c | 1.535 Thu Jun 12 10:23:43 GMT 2025 ozaki-r if: protect if_link_state_change_process with IFNET_LOCK This change avoids race conditions between if_link_state_change handlers and other operations on a target interface such as if_ioctl. |
| /src/sys/arch/amd64/conf/ | ||
| H A D | GENERIC | 1.535 Sat Sep 14 06:57:51 GMT 2019 maxv Add vHCI, a driver which allows to send and receive USB packets directly from userland via /dev/vhci. Using this, it becomes possible to test and fuzz the USB stack and all the USB drivers without having the associated hardware. The vHCI device has four ports independently addressable. For each xfer on each port, we create two packets: a setup packet (which indicates mostly the type of request) and a data packet (which contains the raw data). These packets are processed by read and write operations on /dev/vhci: userland poll-reads it to fetch usb_device_request_t structures, and dispatches the requests depending on bRequest and bmRequestType. A few ioctls are available: VHCI_IOC_GET_INFO - Get the current status VHCI_IOC_SET_PORT - Choose a vHCI port VHCI_IOC_USB_ATTACH - Attach a USB device on the current port VHCI_IOC_USB_DETACH - Detach the USB device on the current port vHCI has already allowed me to automatically find several bugs in the USB stack and its drivers. |
| /src/share/man/man4/ | ||
| H A D | Makefile | 1.535 Mon Nov 15 23:07:38 GMT 2010 skrll Add a man page for nside(4). |
| /src/sys/dev/pci/ | ||
| H A D | pcidevs.h | 1.535 Sat Jun 07 09:08:01 GMT 2003 wiz regen (+ATI 9100, 9600TX, 9500/9700) |
| H A D | pcidevs_data.h | 1.535 Sun Jun 08 13:21:06 GMT 2003 ichiro regen. |
| H A D | pcidevs | 1.535 Sat Jun 07 09:15:00 GMT 2003 wiz Add some Brooktree device IDs. |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | tree.c | 1.535 Fri Jun 30 09:26:03 GMT 2023 rillig lint: make alignof(incomplete enum) an error |
| /src/sys/arch/i386/i386/ | ||
| H A D | machdep.c | 1.535 Wed Sep 10 11:39:09 GMT 2003 drochner in cpu_setmcontext(), check where we go, not where we are coming from, and line-terminate a diagnostic message which was caused by that bug |
| /src/distrib/sets/lists/base/ | ||
| H A D | shl.mi | 1.535 Sun Apr 25 00:54:44 GMT 2010 joerg Add the constant database reader (cdbr(3)) and writer ((cdbw(3)). They implement a space efficent write-once database with fast access path. Switch the services(5) database to use cdb. The size of the database file decreases from 2.1MB disk space to 307KB. Access performance is about the same if setservent(0) is used and about an order of magnitude faster otherwise. services_mkdb defaults to the new format, but can optionally create the old db(3) format as well for statically linked legacy applications. |
| H A D | mi | 1.535 Mon Mar 21 23:09:39 GMT 2005 tron Add support for handling obsolete X11 files and directories. |
| /src/doc/ | ||
| H A D | 3RDPARTY | 1.535 Fri Jun 29 22:32:03 GMT 2007 kardel document in-tree ntp version 4.2.4p2 |
| /src/usr.bin/make/ | ||
| H A D | main.c | 1.535 Sun Apr 04 10:05:08 GMT 2021 rillig make: rename a few functions to be more descriptive No functional change. |
| H A D | parse.c | 1.535 Mon Feb 01 21:56:03 GMT 2021 rillig make: replace parse error "Need an operator" with better message The previous error message is not easily understandable since it is missing a crucial detail, the column where the operator is needed. Without this information, the author of the makefile gets no useful hint. Furthermore, there are several types of operators in makefiles: the dependency operators ':', '!', '::', the variable assignment operators '=', '!=', '+=', '?=', ':=', the conditional operators '&&', '||', '!', the comparison operators '==', '!=', '>', '>=', '<', '<='. This leaves too much ambiguity. Replace this error message with "Invalid line type", which is more generic, more accurate and thus less misleading. |
| H A D | var.c | 1.535 Wed Sep 23 04:27:39 GMT 2020 rillig make(1): inline local variable delim Now that ParseModifierPart generates the error message itself, there is no need to keep this variable around since it is read a single time. |
| /src/sys/sys/ | ||
| H A D | param.h | 1.535 Mon Apr 10 19:52:38 GMT 2017 jdolecek change b_wapbllist to TAILQ, to preserve the LRU order |
| /src/sys/arch/i386/conf/ | ||
| H A D | GENERIC | 1.535 Sun Jan 05 21:44:32 GMT 2003 jmcneill Document all known ACPI devices and options (disabled by default). |
| /src/distrib/sets/lists/man/ | ||
| H A D | mi | 1.535 Wed Dec 11 13:55:14 GMT 2002 lukem add db(1) |
| /src/distrib/sets/lists/tests/ | ||
| H A D | mi | 1.535 Mon Apr 22 21:06:28 GMT 2013 christos new t_mktemp |
| /src/share/mk/ | ||
| H A D | bsd.own.mk | 1.535 Sun Oct 19 19:44:47 GMT 2008 apb Define TOOL_AWK. |
Completed in 1220 milliseconds