Searched hist:1.438 (Results 1 - 25 of 41) sorted by relevance
| /src/sys/dev/usb/ | ||
| H A D | usbdevs.h | 1.438 Sun Sep 03 18:30:54 GMT 2006 martin branches: 1.438.2; 1.438.4; Regen 1.438 Sun Sep 03 18:30:54 GMT 2006 martin branches: 1.438.2; 1.438.4; Regen 1.438 Sun Sep 03 18:30:54 GMT 2006 martin branches: 1.438.2; 1.438.4; Regen |
| H A D | usbdevs | 1.438 Sun Sep 24 17:18:02 GMT 2006 christos Fix whitespace inconsistencies; no functional change |
| H A D | usbdevs_data.h | 1.438 Sat Jul 01 08:15:16 GMT 2006 martin Regen |
| /src/sys/dev/ata/ | ||
| H A D | wd.c | 1.438 Sun Jan 07 11:37:30 GMT 2018 mlelstv branches: 1.438.2; Fix block address calculation for bad sectors. 1.438 Sun Jan 07 11:37:30 GMT 2018 mlelstv branches: 1.438.2; Fix block address calculation for bad sectors. |
| /src/etc/ | ||
| H A D | Makefile | 1.438 Sat Jan 12 17:25:09 GMT 2019 roy branches: 1.438.2; Install /etc/wpa_supplicant.conf 1.438 Sat Jan 12 17:25:09 GMT 2019 roy branches: 1.438.2; Install /etc/wpa_supplicant.conf |
| /src/sys/netinet/ | ||
| H A D | tcp_input.c | 1.438 Fri Nov 04 09:01:53 GMT 2022 ozaki-r branches: 1.438.2; inpcb: rename functions to in6pcb_* 1.438 Fri Nov 04 09:01:53 GMT 2022 ozaki-r branches: 1.438.2; inpcb: rename functions to in6pcb_* |
| /src/sys/arch/sparc64/sparc64/ | ||
| H A D | locore.s | 1.438 Tue Nov 04 20:51:49 GMT 2025 palle sun4v: pcbspill should handle scenarios where %otherwin > 1 Now the pcbspill and pcbspill_other functions are basically the same and could be merged into one common function at some point in time. With this commit we get a bit further, but still has issues with incorrect contents in registers upon returning to user space from time to time. |
| /src/sys/arch/i386/conf/ | ||
| H A D | ALL | 1.438 Tue May 01 16:16:05 GMT 2018 maya Fix ALL configs following MPVERBOSE becoming a defparam XXX i386 ALL kernel build is failing |
| /src/sys/arch/arm/arm32/ | ||
| H A D | pmap.c | 1.438 Sun Dec 18 00:02:47 GMT 2022 skrll Appease KDASSERT / LOCKDEBUG. Tested by mlelstv. |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.438 Wed Feb 25 17:50:32 GMT 2009 sno Add myself (Jens Rehsack <sno@NetBSD.org>) |
| /src/distrib/sets/lists/debug/ | ||
| H A D | mi | 1.438 Mon Jul 08 22:35:09 GMT 2024 christos bump libssh, add sshd-session |
| /src/share/man/man9/ | ||
| H A D | Makefile | 1.438 Sat Aug 10 20:35:35 GMT 2019 mrg usbnet may be stable now. document it. |
| /src/share/mk/ | ||
| H A D | bsd.README | 1.438 Sun May 29 15:23:20 GMT 2022 nia mk: Add MKTIMED and MKMOUSED flags for compiling NetBSD without timed and moused |
| /src/share/man/man4/ | ||
| H A D | options.4 | 1.438 Wed Jul 23 20:13:13 GMT 2014 gdt Sync DIAGNOSTIC performance comments with historical reality. Somehow, options(4) ended up with a bizarre claim that DIAGNOSTIC can reduce performance by 15%. While that might have been true at some isolated point due to a bug, it's an outlier. Since at least 2BSD, DIAGNOSTIC has added asserts, resulting in at most difficult-to-perceived performance degredation, and many people have been running production systems (meaning systems they intend to use, rather than debugging targets) with this option. (The decision a while ago to enable DIAGNOSTIC in -current's GENERIC reflects this; if it really were a 15% hit such enabling by default would be unreasonable.) |
| H A D | Makefile | 1.438 Mon Aug 20 00:29:43 GMT 2007 kiyohara Add support for AnyCom BlueCard. |
| /src/sys/dev/pci/ | ||
| H A D | files.pci | 1.438 Wed Aug 25 09:06:02 GMT 2021 msaitoh Use MCLGET() instead of homegrown cluster (jcl) allocation mechanism. - Before this commit, resource shortage was easily occurred because the total number of the clusters is small. - Reviewed by knakahara and ryo. |
| H A D | pcidevs.h | 1.438 Tue May 28 17:46:24 GMT 2002 christos regen |
| H A D | pcidevs_data.h | 1.438 Mon Jun 03 19:53:38 GMT 2002 briggs Regen. for MPC8245 host bridge. |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | cgram.y | 1.438 Thu Jun 29 09:58:36 GMT 2023 rillig lint: clean up function names No functional change. |
| /src/sys/kern/ | ||
| H A D | init_main.c | 1.438 Sun Dec 04 19:24:58 GMT 2011 jym Implement the register/deregister/evaluation API for secmodel(9). It allows registration of callbacks that can be used later for cross-secmodel "safe" communication. When a secmodel wishes to know a property maintained by another secmodel, it has to submit a request to it so the other secmodel can proceed to evaluating the request. This is done through the secmodel_eval(9) call; example: bool isroot; error = secmodel_eval("org.netbsd.secmodel.suser", "is-root", cred, &isroot); if (error == 0 && !isroot) result = KAUTH_RESULT_DENY; This one asks the suser module if the credentials are assumed to be root when evaluated by suser module. If the module is present, it will respond. If absent, the call will return an error. Args and command are arbitrarily defined; it's up to the secmodel(9) to document what it expects. Typical example is securelevel testing: when someone wants to know whether securelevel is raised above a certain level or not, the caller has to request this property to the secmodel_securelevel(9) module. Given that securelevel module may be absent from system's context (thus making access to the global "securelevel" variable impossible or unsafe), this API can cope with this absence and return an error. We are using secmodel_eval(9) to implement a secmodel_extensions(9) module, which plugs with the bsd44, suser and securelevel secmodels to provide the logic behind curtain, usermount and user_set_cpu_affinity modes, without adding hooks to traditional secmodels. This solves a real issue with the current secmodel(9) code, as usermount or user_set_cpu_affinity are not really tied to secmodel_suser(9). The secmodel_eval(9) is also used to restrict security.models settings when securelevel is above 0, through the "is-securelevel-above" evaluation: - curtain can be enabled any time, but cannot be disabled if securelevel is above 0. - usermount/user_set_cpu_affinity can be disabled any time, but cannot be enabled if securelevel is above 0. Regarding sysctl(7) entries: curtain and usermount are now found under security.models.extensions tree. The security.curtain and vfs.generic.usermount are still accessible for backwards compat. Documentation is incoming, I am proof-reading my writings. Written by elad@, reviewed and tested (anita test + interact for rights tests) by me. ok elad@. See also http://mail-index.netbsd.org/tech-security/2011/11/29/msg000422.html XXX might consider va0 mapping too. XXX Having a secmodel(9) specific printf (like aprint_*) for reporting secmodel(9) errors might be a good idea, but I am not sure on how to design such a function right now. |
| H A D | kern_exec.c | 1.438 Thu Nov 03 22:08:30 GMT 2016 kamil Prefer modern simple past tense and past participle of catch The "catched" form is obsolete and nonstandard, prefer "caught". |
| H A D | vfs_subr.c | 1.438 Mon Sep 30 18:58:00 GMT 2013 hannken Replace macro v_specmountpoint with two functions spec_node_getmountedfs() and spec_node_setmountedfs() to manage the file system mounted on a device. Assert the device is a block device. Welcome to 6.99.24 Discussed on tech-kern@ some time ago. Reviewed by: David Holland <dholland@netbsd.org> |
| /src/sys/net/ | ||
| H A D | if.c | 1.438 Tue Oct 30 05:27:51 GMT 2018 ozaki-r Remove a wrong assertion in ifaref Doing ifref on an ifa with IFA_DESTROYING is not a problem; the reference should be dropped during the destruction of the ifa. |
| /src/sys/arch/amd64/conf/ | ||
| H A D | GENERIC | 1.438 Fri Nov 25 23:06:58 GMT 2016 dholland The compat options should all be in one block. |
| /src/usr.bin/make/ | ||
| H A D | job.c | 1.438 Sun Nov 28 17:20:39 GMT 2021 rillig make: fix memory leak in jobs mode with -de (since today) |
Completed in 907 milliseconds