Searched hist:1.374 (Results 1 - 25 of 65) sorted by relevance
| /src/ | ||
| H A D | build.sh | 1.374 Mon Sep 04 02:21:17 GMT 2023 khorben build.sh: add support for git worktree Git supports multiple working trees attached to the same repository, with the git-worktree(1) subcommand. When building from a Git working tree, the repository metadata in .git from the top source directory is a file (containing the actual location of the metadata) instead of the usual directory structure. With this change, build.sh allows .git to be a directory or a regular file instead, therefore letting the sources build as expected from a Git working tree. To test: (without this patch) src$ git worktree add ../src-clean-tree [...] src$ (cd ../src-clean-tree && ./build.sh tools) [...] ERROR: Cannot determine VCS for '.../src-clean-tree/' XXX: pullup-10 pullup-9 |
| H A D | UPDATING | 1.374 Sat Nov 23 14:51:58 GMT 2024 riastradh UPDATING: Note compat objdirs too. |
| /src/sys/arch/i386/conf/ | ||
| H A D | files.i386 | 1.374 Wed Feb 12 23:24:09 GMT 2014 dsl branches: 1.374.6; 1.374.10; Change i386 to use x86/fpu.c instead of i386/isa/npx.c This changes the trap10 and trap13 code to call directly into fpu.c, removing all the code for T_ARITHTRAP, T_XMM and T_FPUNDA from i386/trap.c Not all of the code thate appeared to handle fpu traps was ever called! Most of the changes just replace the include of machine/npx.h with x86/fpu.h (or remove it entirely). 1.374 Wed Feb 12 23:24:09 GMT 2014 dsl branches: 1.374.6; 1.374.10; Change i386 to use x86/fpu.c instead of i386/isa/npx.c This changes the trap10 and trap13 code to call directly into fpu.c, removing all the code for T_ARITHTRAP, T_XMM and T_FPUNDA from i386/trap.c Not all of the code thate appeared to handle fpu traps was ever called! Most of the changes just replace the include of machine/npx.h with x86/fpu.h (or remove it entirely). 1.374 Wed Feb 12 23:24:09 GMT 2014 dsl branches: 1.374.6; 1.374.10; Change i386 to use x86/fpu.c instead of i386/isa/npx.c This changes the trap10 and trap13 code to call directly into fpu.c, removing all the code for T_ARITHTRAP, T_XMM and T_FPUNDA from i386/trap.c Not all of the code thate appeared to handle fpu traps was ever called! Most of the changes just replace the include of machine/npx.h with x86/fpu.h (or remove it entirely). |
| H A D | ALL | 1.374 Fri Apr 25 18:25:52 GMT 2014 riastradh Add applesmc(4) to {i386,amd64}/ALL. |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs.h | 1.374 Mon Mar 15 11:16:43 GMT 2004 augustss branches: 1.374.2; Regen. 1.374 Mon Mar 15 11:16:43 GMT 2004 augustss branches: 1.374.2; Regen. |
| /src/sys/arch/alpha/conf/ | ||
| H A D | GENERIC | 1.374 Sat Dec 10 23:03:23 GMT 2016 christos remove VAUDIOSPEAKER for now, will be done differently. |
| /src/distrib/sets/lists/debug/ | ||
| H A D | shl.mi | 1.374 Sat Oct 11 07:16:01 GMT 2025 nakayama Mark old gcc=9 conditional entries as obsolete or just remove them. XXX pullup netbsd-11 |
| H A D | mi | 1.374 Mon Mar 28 20:52:17 GMT 2022 christos Add t_link |
| /src/share/misc/ | ||
| H A D | acronyms.comp | 1.374 Wed Oct 11 01:15:16 GMT 2023 jschauma +SSRF server-side request forgery |
| /src/sys/arch/macppc/conf/ | ||
| H A D | GENERIC | 1.374 Wed Feb 16 23:20:38 GMT 2022 riastradh macppc: Support *macppc* GENERIC.local, not evbarm GENERIC64.local. Managed to fumble with a copypasta error of local commits, and committed the one that didn't work instead of the one that did. |
| /src/sys/ufs/ffs/ | ||
| H A D | ffs_vfsops.c | 1.374 Sat Mar 12 15:36:53 GMT 2022 riastradh ffs: Fix 64-bit inode integer truncation. Reported-by: syzbot+1ae93e092d532582b809@syzkaller.appspotmail.com |
| /src/sys/ufs/lfs/ | ||
| H A D | lfs_vfsops.c | 1.374 Sun Feb 23 15:46:42 GMT 2020 ad UVM locking changes, proposed on tech-kern: - Change the lock on uvm_object, vm_amap and vm_anon to be a RW lock. - Break v_interlock and vmobjlock apart. v_interlock remains a mutex. - Do partial PV list locking in the x86 pmap. Others to follow later. |
| /src/sys/uvm/ | ||
| H A D | uvm_map.c | 1.374 Sat Mar 14 17:29:53 GMT 2020 ad uvm_map_lookup_entry(): save the hint even on failure, since code elsewhere relies on it pointing to the previous entry. |
| /src/sys/kern/ | ||
| H A D | kern_sig.c | 1.374 Wed Oct 16 15:27:38 GMT 2019 christos Add void * function pointer casts. There are different ways to "fix" those warnings: 1. this one: add a void * cast (which I think is the least intrusive) 2. add pragmas to elide the warning 3. add intermediate inline conversion functions 4. change the called function prototypes, adding unused arguments and converting some of the pointer arguments to void *. 5. make the functions varyadic (which defeats the purpose of checking) 6. pass command line flags to elide the warning I did try 3 and 4 and I was not pleased with the result (sys_ptrace_common.c) (3) added too much code and defines, and (4) made the regular use clumsy. |
| /src/sys/arch/sparc64/sparc64/ | ||
| H A D | locore.s | 1.374 Wed Oct 15 21:18:32 GMT 2014 palle sun4v: fixed bug causing the real address to be incorrectly calculated as zero |
| /src/sys/dev/ata/ | ||
| H A D | wd.c | 1.374 Fri May 15 23:49:28 GMT 2009 dyoung Do not detach a wd(4) instance if it is open, but return EBUSY, instead. If the detach is forced, do what wdclose() does on the last close: flush the cache, clear the flag WDF_LOADED, and delete our reference to the ATA bus device. |
| /src/sys/arch/sparc/sparc/ | ||
| H A D | pmap.c | 1.374 Sat Aug 07 19:23:03 GMT 2021 uwe sp_tlb_flush - consistent whitespace in inline asm. |
| /src/sys/dev/ic/ | ||
| H A D | com.c | 1.374 Mon Oct 03 19:26:35 GMT 2022 riastradh com(4): Update confusing comment from decades ago to reflect now. No functional change. |
| /src/sys/arch/alpha/alpha/ | ||
| H A D | machdep.c | 1.374 Sun Jul 11 01:58:41 GMT 2021 thorpej Optimized fast-paths for rw_enter() / rw_tryenter() / rw_exit(). |
| /src/sys/arch/amd64/amd64/ | ||
| H A D | machdep.c | 1.374 Thu Apr 24 23:51:03 GMT 2025 riastradh x86: Make sure esp is aligned when delivering signal. While here, use STACK_ALIGNBYTES consistently for the alignment mask (or STACK_ALIGNBYTES32 in amd64 for the compat32 alignment mask). PR kern/59327: user stack pointer is not aligned properly |
| /src/sys/arch/arm/arm32/ | ||
| H A D | pmap.c | 1.374 Wed Sep 25 16:37:54 GMT 2019 skrll Convert a __CTASSERT into a KASSERT as L1_S_CACHE_MASK may not be a compile time constant if ARM_NMMUS > 1 |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.374 Tue Nov 27 22:56:07 GMT 2007 rhaen Added my name to the list of developers |
| /src/etc/ | ||
| H A D | Makefile | 1.374 Mon Nov 30 16:13:22 GMT 2009 uebayasi Support "extsrc", externally added programs and libraries. Users can write their own reach-overs, cross-build, install, and get set files just like base and X11 / X.org. (These sets are not included as TNF releases.) |
| /src/share/man/man9/ | ||
| H A D | Makefile | 1.374 Thu Sep 19 17:29:06 GMT 2013 rmind G/C npf_ncode(9) |
| /src/share/mk/ | ||
| H A D | bsd.README | 1.374 Sun Jun 03 04:38:12 GMT 2018 wiz Fix MKSANITIZER default in description. |
Completed in 554 milliseconds