Searched hist:1.202 (Results 1 - 25 of 252) sorted by relevance
| /src/share/misc/ | ||
| H A D | style | 1.64 Thu Mar 10 23:39:12 GMT 2022 rillig share/misc/style: lint no longer needs CONSTCOND in do-while-loops Since usr.bin/xlint/lint1/tree.c 1.202 from 2021-01-31, lint recognizes the common idiom 'do { ... } while (0)' and no longer complains about its constant condition; see tests/usr.bin/xlint/lint1/msg_161.c. |
| /src/sys/arch/sparc/conf/ | ||
| H A D | GENERIC | 1.202 Sun Nov 04 14:34:26 GMT 2007 xtraeme branches: 1.202.2; 1.202.8; Remove System V semaphores and share memory options to set the limits: SEMMNI, SEMMNS, SEMUME and SHMMAXPGS. They can be tweaked via sysctl now. Ports that were setting values on them weren't touched, I only removed the ones that were commented out. 1.202 Sun Nov 04 14:34:26 GMT 2007 xtraeme branches: 1.202.2; 1.202.8; Remove System V semaphores and share memory options to set the limits: SEMMNI, SEMMNS, SEMUME and SHMMAXPGS. They can be tweaked via sysctl now. Ports that were setting values on them weren't touched, I only removed the ones that were commented out. 1.202 Sun Nov 04 14:34:26 GMT 2007 xtraeme branches: 1.202.2; 1.202.8; Remove System V semaphores and share memory options to set the limits: SEMMNI, SEMMNS, SEMUME and SHMMAXPGS. They can be tweaked via sysctl now. Ports that were setting values on them weren't touched, I only removed the ones that were commented out. |
| /src/sys/arch/amiga/amiga/ | ||
| H A D | machdep.c | 1.202 Sun Mar 04 05:59:15 GMT 2007 christos branches: 1.202.2; 1.202.4; 1.202.10; Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. 1.202 Sun Mar 04 05:59:15 GMT 2007 christos branches: 1.202.2; 1.202.4; 1.202.10; Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. 1.202 Sun Mar 04 05:59:15 GMT 2007 christos branches: 1.202.2; 1.202.4; 1.202.10; Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. 1.202 Sun Mar 04 05:59:15 GMT 2007 christos branches: 1.202.2; 1.202.4; 1.202.10; Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. |
| /src/usr.bin/xlint/common/ | ||
| H A D | tyname.c | 1.40 Sun Apr 18 17:47:32 GMT 2021 rillig branches: 1.40.4; lint: remove redundant CONSTCOND In do-while-0 loops, these are no longer needed since tree.c 1.202 from 2021-01-31. |
| /src/share/man/man4/ | ||
| H A D | ddb.4 | 1.202 Thu Apr 28 07:17:52 GMT 2022 msaitoh branches: 1.202.2; Add missing "show vmem[s]". 1.202 Thu Apr 28 07:17:52 GMT 2022 msaitoh branches: 1.202.2; Add missing "show vmem[s]". |
| /src/sys/kern/ | ||
| H A D | kern_descrip.c | 1.202 Sun Dec 20 09:36:05 GMT 2009 dsl branches: 1.202.2; 1.202.4; If a multithreaded app closes an fd while another thread is blocked in read/write/accept, then the expectation is that the blocked thread will exit and the close complete. Since only one fd is affected, but many fd can refer to the same file, the close code can only request the fs code unblock with ERESTART. Fixed for pipes and sockets, ERESTART will only be generated after such a close - so there should be no change for other programs. Also rename fo_abort() to fo_restart() (this used to be fo_drain()). Fixes PR/26567 1.202 Sun Dec 20 09:36:05 GMT 2009 dsl branches: 1.202.2; 1.202.4; If a multithreaded app closes an fd while another thread is blocked in read/write/accept, then the expectation is that the blocked thread will exit and the close complete. Since only one fd is affected, but many fd can refer to the same file, the close code can only request the fs code unblock with ERESTART. Fixed for pipes and sockets, ERESTART will only be generated after such a close - so there should be no change for other programs. Also rename fo_abort() to fo_restart() (this used to be fo_drain()). Fixes PR/26567 1.202 Sun Dec 20 09:36:05 GMT 2009 dsl branches: 1.202.2; 1.202.4; If a multithreaded app closes an fd while another thread is blocked in read/write/accept, then the expectation is that the blocked thread will exit and the close complete. Since only one fd is affected, but many fd can refer to the same file, the close code can only request the fs code unblock with ERESTART. Fixed for pipes and sockets, ERESTART will only be generated after such a close - so there should be no change for other programs. Also rename fo_abort() to fo_restart() (this used to be fo_drain()). Fixes PR/26567 |
| H A D | init_sysctl.c | 1.202 Mon Mar 24 20:07:41 GMT 2014 christos branches: 1.202.2; - create cpu_{g,s}etmodel() and hide cpu_model from direct access. 1.202 Mon Mar 24 20:07:41 GMT 2014 christos branches: 1.202.2; - create cpu_{g,s}etmodel() and hide cpu_model from direct access. |
| H A D | kern_lwp.c | 1.202 Tue Jun 04 11:54:03 GMT 2019 kamil branches: 1.202.2; Stop trying to inform debugger about events from an exiting child Do not emit signals to parent for if a process is demising: - fork/vfork/similar - lwp created/exited - exec - syscall entry/exit With these changes Go applications can be traced without a clash under a debugger, at least without deadlocking always. The culprit reason was an attempt to inform a debugger in the middle of exit1() call about a dying LWP. Go applications perform exit(2) without collecting threads first. Verified with GDB and picotrace-based utilities like sigtracer. PR kern/53120 PR port-arm/51677 PR bin/54060 PR bin/49662 PR kern/52548 1.202 Tue Jun 04 11:54:03 GMT 2019 kamil branches: 1.202.2; Stop trying to inform debugger about events from an exiting child Do not emit signals to parent for if a process is demising: - fork/vfork/similar - lwp created/exited - exec - syscall entry/exit With these changes Go applications can be traced without a clash under a debugger, at least without deadlocking always. The culprit reason was an attempt to inform a debugger in the middle of exit1() call about a dying LWP. Go applications perform exit(2) without collecting threads first. Verified with GDB and picotrace-based utilities like sigtracer. PR kern/53120 PR port-arm/51677 PR bin/54060 PR bin/49662 PR kern/52548 |
| H A D | kern_sysctl.c | 1.202 Fri Sep 08 20:58:57 GMT 2006 elad branches: 1.202.2; First take at security model abstraction. - Add a few scopes to the kernel: system, network, and machdep. - Add a few more actions/sub-actions (requests), and start using them as opposed to the KAUTH_GENERIC_ISSUSER place-holders. - Introduce a basic set of listeners that implement our "traditional" security model, called "bsd44". This is the default (and only) model we have at the moment. - Update all relevant documentation. - Add some code and docs to help folks who want to actually use this stuff: * There's a sample overlay model, sitting on-top of "bsd44", for fast experimenting with tweaking just a subset of an existing model. This is pretty cool because it's *really* straightforward to do stuff you had to use ugly hacks for until now... * And of course, documentation describing how to do the above for quick reference, including code samples. All of these changes were tested for regressions using a Python-based testsuite that will be (I hope) available soon via pkgsrc. Information about the tests, and how to write new ones, can be found on: http://kauth.linbsd.org/kauthwiki NOTE FOR DEVELOPERS: *PLEASE* don't add any code that does any of the following: - Uses a KAUTH_GENERIC_ISSUSER kauth(9) request, - Checks 'securelevel' directly, - Checks a uid/gid directly. (or if you feel you have to, contact me first) This is still work in progress; It's far from being done, but now it'll be a lot easier. Relevant mailing list threads: http://mail-index.netbsd.org/tech-security/2006/01/25/0011.html http://mail-index.netbsd.org/tech-security/2006/03/24/0001.html http://mail-index.netbsd.org/tech-security/2006/04/18/0000.html http://mail-index.netbsd.org/tech-security/2006/05/15/0000.html http://mail-index.netbsd.org/tech-security/2006/08/01/0000.html http://mail-index.netbsd.org/tech-security/2006/08/25/0000.html Many thanks to YAMAMOTO Takashi, Matt Thomas, and Christos Zoulas for help stablizing kauth(9). Full credit for the regression tests, making sure these changes didn't break anything, goes to Matt Fleming and Jaime Fournier. Happy birthday Randi! :) 1.202 Fri Sep 08 20:58:57 GMT 2006 elad branches: 1.202.2; First take at security model abstraction. - Add a few scopes to the kernel: system, network, and machdep. - Add a few more actions/sub-actions (requests), and start using them as opposed to the KAUTH_GENERIC_ISSUSER place-holders. - Introduce a basic set of listeners that implement our "traditional" security model, called "bsd44". This is the default (and only) model we have at the moment. - Update all relevant documentation. - Add some code and docs to help folks who want to actually use this stuff: * There's a sample overlay model, sitting on-top of "bsd44", for fast experimenting with tweaking just a subset of an existing model. This is pretty cool because it's *really* straightforward to do stuff you had to use ugly hacks for until now... * And of course, documentation describing how to do the above for quick reference, including code samples. All of these changes were tested for regressions using a Python-based testsuite that will be (I hope) available soon via pkgsrc. Information about the tests, and how to write new ones, can be found on: http://kauth.linbsd.org/kauthwiki NOTE FOR DEVELOPERS: *PLEASE* don't add any code that does any of the following: - Uses a KAUTH_GENERIC_ISSUSER kauth(9) request, - Checks 'securelevel' directly, - Checks a uid/gid directly. (or if you feel you have to, contact me first) This is still work in progress; It's far from being done, but now it'll be a lot easier. Relevant mailing list threads: http://mail-index.netbsd.org/tech-security/2006/01/25/0011.html http://mail-index.netbsd.org/tech-security/2006/03/24/0001.html http://mail-index.netbsd.org/tech-security/2006/04/18/0000.html http://mail-index.netbsd.org/tech-security/2006/05/15/0000.html http://mail-index.netbsd.org/tech-security/2006/08/01/0000.html http://mail-index.netbsd.org/tech-security/2006/08/25/0000.html Many thanks to YAMAMOTO Takashi, Matt Thomas, and Christos Zoulas for help stablizing kauth(9). Full credit for the regression tests, making sure these changes didn't break anything, goes to Matt Fleming and Jaime Fournier. Happy birthday Randi! :) |
| H A D | vfs_bio.c | 1.202 Fri Jun 06 00:49:15 GMT 2008 ad branches: 1.202.2; - Make getiobuf() return buffers marked BUSY. - Sprinkle more assertions. 1.202 Fri Jun 06 00:49:15 GMT 2008 ad branches: 1.202.2; - Make getiobuf() return buffers marked BUSY. - Sprinkle more assertions. |
| /src/sys/arch/i386/i386/ | ||
| H A D | trap.c | 1.202 Sat Aug 28 17:53:01 GMT 2004 jdolecek branches: 1.202.4; 1.202.6; use uvm_grow() to update stack segment size on stack page fault instead of MD code 1.202 Sat Aug 28 17:53:01 GMT 2004 jdolecek branches: 1.202.4; 1.202.6; use uvm_grow() to update stack segment size on stack page fault instead of MD code 1.202 Sat Aug 28 17:53:01 GMT 2004 jdolecek branches: 1.202.4; 1.202.6; use uvm_grow() to update stack segment size on stack page fault instead of MD code |
| /src/sys/miscfs/procfs/ | ||
| H A D | procfs_vnops.c | 1.202 Sun Dec 31 03:02:23 GMT 2017 christos branches: 1.202.2; Add an environ node 1.202 Sun Dec 31 03:02:23 GMT 2017 christos branches: 1.202.2; Add an environ node |
| /src/sys/arch/x68k/conf/ | ||
| H A D | GENERIC | 1.202 Sun Sep 27 13:48:55 GMT 2020 roy branches: 1.202.2; vether: Add to kernel configurations It's only enabled if the kernel enabled bridge AND tap. Otherwise it's commented out. 1.202 Sun Sep 27 13:48:55 GMT 2020 roy branches: 1.202.2; vether: Add to kernel configurations It's only enabled if the kernel enabled bridge AND tap. Otherwise it's commented out. |
| /src/distrib/sets/lists/comp/ | ||
| H A D | md.i386 | 1.202 Fri Apr 30 13:55:18 GMT 2021 christos branches: 1.202.2; Add <x86/gdt.h> (we could gc now the <machine/gdt.h> files if we fix the sources that use them. 1.202 Fri Apr 30 13:55:18 GMT 2021 christos branches: 1.202.2; Add <x86/gdt.h> (we could gc now the <machine/gdt.h> files if we fix the sources that use them. |
| /src/sys/arch/mac68k/conf/ | ||
| H A D | GENERIC | 1.202 Mon Oct 03 19:22:59 GMT 2011 hauke branches: 1.202.2; Add the MI software watchdog to GENERIC (not to SMALLRAM, as usual). 1.202 Mon Oct 03 19:22:59 GMT 2011 hauke branches: 1.202.2; Add the MI software watchdog to GENERIC (not to SMALLRAM, as usual). |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | lint1.h | 1.202 Thu Sep 14 21:08:12 GMT 2023 rillig lint: remove preprocessor magic from definition of operators No binary change. 1.100 Sun Apr 18 17:47:32 GMT 2021 rillig branches: 1.100.2; lint: remove redundant CONSTCOND In do-while-0 loops, these are no longer needed since tree.c 1.202 from 2021-01-31. |
| /src/sys/nfs/ | ||
| H A D | nfs_socket.c | 1.202 Mon Feb 05 21:46:06 GMT 2024 andvar branches: 1.202.2; fix various typos in comments. 1.202 Mon Feb 05 21:46:06 GMT 2024 andvar branches: 1.202.2; fix various typos in comments. |
| /src/sys/dev/pcmcia/ | ||
| H A D | pcmciadevs.h | 1.202 Thu Aug 05 17:24:00 GMT 2004 mycroft Regen. |
| H A D | pcmciadevs_data.h | 1.202 Thu Aug 05 17:24:00 GMT 2004 mycroft Regen. |
| /src/sys/dev/raidframe/ | ||
| H A D | rf_netbsdkintf.c | 1.202 Wed Mar 01 21:41:49 GMT 2006 oster branches: 1.202.2; 1.202.4; 1.202.6; Fix lossage related to device_is_a() changes. Fix from cube@ (thanks!). Tested by me. 1.202 Wed Mar 01 21:41:49 GMT 2006 oster branches: 1.202.2; 1.202.4; 1.202.6; Fix lossage related to device_is_a() changes. Fix from cube@ (thanks!). Tested by me. 1.202 Wed Mar 01 21:41:49 GMT 2006 oster branches: 1.202.2; 1.202.4; 1.202.6; Fix lossage related to device_is_a() changes. Fix from cube@ (thanks!). Tested by me. 1.202 Wed Mar 01 21:41:49 GMT 2006 oster branches: 1.202.2; 1.202.4; 1.202.6; Fix lossage related to device_is_a() changes. Fix from cube@ (thanks!). Tested by me. |
| /src/sys/uvm/ | ||
| H A D | uvm_fault.c | 1.202 Mon Nov 20 21:06:54 GMT 2017 chs branches: 1.202.2; In uvm_fault_upper_enter(), if pmap_enter(PMAP_CANFAIL) fails, assert that the pmap did not leave around a now-stale pmap mapping for an old page. If such a pmap mapping still existed after we unlocked the vm_map, the UVM code would not know later that it would need to lock the lower layer object while calling the pmap to remove or replace that stale pmap mapping. See PR 52706 for further details. 1.202 Mon Nov 20 21:06:54 GMT 2017 chs branches: 1.202.2; In uvm_fault_upper_enter(), if pmap_enter(PMAP_CANFAIL) fails, assert that the pmap did not leave around a now-stale pmap mapping for an old page. If such a pmap mapping still existed after we unlocked the vm_map, the UVM code would not know later that it would need to lock the lower layer object while calling the pmap to remove or replace that stale pmap mapping. See PR 52706 for further details. |
| /src/sys/modules/ | ||
| H A D | Makefile | 1.202 Mon Feb 26 07:29:24 GMT 2018 pgoyette branches: 1.202.2; Descend into subdirectory to create the module for ichsmb(4) driver. 1.202 Mon Feb 26 07:29:24 GMT 2018 pgoyette branches: 1.202.2; Descend into subdirectory to create the module for ichsmb(4) driver. |
| /src/sys/arch/sparc64/sparc64/ | ||
| H A D | machdep.c | 1.202 Tue Sep 11 16:00:06 GMT 2007 martin branches: 1.202.2; Cleanup cpu_info: get rid of ci_number and ci_upaid, use ci_index and ci_cpuid instead. 1.202 Tue Sep 11 16:00:06 GMT 2007 martin branches: 1.202.2; Cleanup cpu_info: get rid of ci_number and ci_upaid, use ci_index and ci_cpuid instead. |
| H A D | pmap.c | 1.202 Sun Dec 09 20:12:55 GMT 2007 martin branches: 1.202.2; Provide cpu_intr_p(), at least for non-MULTIPROCESSOR kernels. Based on suggestions by Andrew Doran. 1.202 Sun Dec 09 20:12:55 GMT 2007 martin branches: 1.202.2; Provide cpu_intr_p(), at least for non-MULTIPROCESSOR kernels. Based on suggestions by Andrew Doran. |
| /src/sys/arch/mips/mips/ | ||
| H A D | locore.S | 1.202 Mon Jul 11 16:15:36 GMT 2016 matt branches: 1.202.2; Change MIPS to use the common pmap code. Switch to 8KB pages on CPUs with a R4K MMU. Simplify cache code. Merge in most of changes from matt-mips64 branch 1.202 Mon Jul 11 16:15:36 GMT 2016 matt branches: 1.202.2; Change MIPS to use the common pmap code. Switch to 8KB pages on CPUs with a R4K MMU. Simplify cache code. Merge in most of changes from matt-mips64 branch |
Completed in 224 milliseconds