Searched hist:1.346 (Results 1 - 25 of 79) sorted by relevance
| /src/ | ||
| H A D | build.sh | 1.346 Thu Jan 28 10:36:27 GMT 2021 martin Modify the generated make wrapper to avoid complaints about non-writable OBJDIR from make (which happen a lot when cross-building kernels re-using a makewrapper build for some other user). |
| H A D | UPDATING | 1.346 Thu Apr 11 02:15:39 GMT 2024 riastradh Nix /var/run/named entry from set lists. Normally we don't do this, but /var/run/named is (a) used by running daemons, so postinstall should not delete it, and (b) deleted at boot-time anyway by /etc/rc.d/mountcritlocal, so there's no sense in having it checked by mtree. However, this means that update builds need manual intervention to delete $DESTDIR/var/run/named or else checkflist will fail, so add a note to UPDATING about this. Do the same with /var/run/lwresd just in case. PR misc/57877 |
| /src/sys/arch/alpha/alpha/ | ||
| H A D | machdep.c | 1.346 Fri Oct 17 18:14:42 GMT 2014 uebayasi branches: 1.346.2; 1.346.4; Fix build of RAWHIDE kernel. 1.346 Fri Oct 17 18:14:42 GMT 2014 uebayasi branches: 1.346.2; 1.346.4; Fix build of RAWHIDE kernel. 1.346 Fri Oct 17 18:14:42 GMT 2014 uebayasi branches: 1.346.2; 1.346.4; Fix build of RAWHIDE kernel. |
| /src/sys/kern/ | ||
| H A D | init_sysent.c | 1.346 Wed Oct 09 16:29:10 GMT 2024 christos regen |
| H A D | kern_synch.c | 1.346 Sat Apr 04 20:21:53 GMT 2020 ad branches: 1.346.2; preempt_needed(), preempt_point(): simplify the definition of these and key on ci_want_resched in the interests of interactive response. 1.346 Sat Apr 04 20:21:53 GMT 2020 ad branches: 1.346.2; preempt_needed(), preempt_point(): simplify the definition of these and key on ci_want_resched in the interests of interactive response. |
| H A D | kern_sig.c | 1.346 Sat May 19 05:01:42 GMT 2018 kamil Stop masking raise(SIGSTOP) in a vfork(2)ed child that called PT_TRACE_ME. Sponsored by <The NetBSD Foundation> |
| /src/doc/ | ||
| H A D | BRANCHES | 1.346 Thu Aug 23 16:25:37 GMT 2018 snj mark netbsd-6* as Terminated |
| /src/sys/dev/ata/ | ||
| H A D | wd.c | 1.346 Mon Oct 08 16:41:11 GMT 2007 ad branches: 1.346.2; Merge disk init changes from the vmlocking branch. These seperate init / destroy of 'struct disk' from attach / detach. 1.346 Mon Oct 08 16:41:11 GMT 2007 ad branches: 1.346.2; Merge disk init changes from the vmlocking branch. These seperate init / destroy of 'struct disk' from attach / detach. |
| /src/sys/dev/ic/ | ||
| H A D | com.c | 1.346 Mon Dec 04 09:55:37 GMT 2017 bouyer branches: 1.346.2; Put back SUNXI definitions in the COM_REGMAP case; com.c uses them without #ifdef COM_AWIN. To be safe, expand the register map to 42 entries. 1.346 Mon Dec 04 09:55:37 GMT 2017 bouyer branches: 1.346.2; Put back SUNXI definitions in the COM_REGMAP case; com.c uses them without #ifdef COM_AWIN. To be safe, expand the register map to 42 entries. |
| /src/sys/arch/amd64/amd64/ | ||
| H A D | machdep.c | 1.346 Fri Jan 31 08:21:11 GMT 2020 maxv branches: 1.346.4; constify 1.346 Fri Jan 31 08:21:11 GMT 2020 maxv branches: 1.346.4; constify |
| /src/sys/arch/alpha/conf/ | ||
| H A D | GENERIC | 1.346 Wed Oct 17 14:48:07 GMT 2012 apb Add "options COMPAT_60" to all kernel configuration files that already had "options COMPAT_50". |
| /src/distrib/sets/lists/comp/ | ||
| H A D | shl.mi | 1.346 Mon May 17 04:07:41 GMT 2021 yamaguchi Add a new link-aggregation pseudo interface named lagg(4) - FreeBSD's lagg(4) based implementation - MP-safe and MP-scalable |
| /src/distrib/sets/lists/debug/ | ||
| H A D | shl.mi | 1.346 Thu Jul 11 08:13:49 GMT 2024 riastradh Revert the duplication of compat set lists; do it another way. 1. Restore the compatdir and compatfile tags in base and debug. => compatdir marks directories that should have per-ABI compat subdirectories, like /usr/lib having /usr/lib/o32 and /usr/lib/64 on mips64. => compatfile marks files that have per-ABI versions in the nearest compatdir, like /usr/lib/o32/libc.so.12.221. This is the mechanism we use to avoid duplicating every library that has a compat version in multiple set lists. 2. Teach sets.subr to split the compatdir and compatfile entries out into separate sets for base and debug. The mechanism is to internally use: - a new tag `omitcompat' when processing base and debug, so we don't generate the per-ABI compat directories or per-ABI compat files under them; - a new tag `takecompat=${ABI}' when processing base32/64 and debug32/64, so we _do_ generate the per-ABI compat directories for ${ABI}. => On, e.g., mips64, base32 uses `takecompat=o32' and base64 uses `takecompat=64'. => On, e.g., aarch64, base32 uses `takecompat=eabi,takecompat=eabihf', and there is no base64. 3. Record in sets.subr the list of `32' and `64' architectures for each port. This is maybe not the right place to put it, but it's also not clear that we want to keep exactly this division -- maybe it would be more sensible to just have per-ABI , e.g.: (aarch64) base-eabi, base-eabihf (amd64) base-i386 (mips64) base-o32, base-64 (mipsn64) base-o32, base-n32 But I'll leave cleaning that up for another day. 4. Adjust some sets. Mostly this commit shouldn't change what file go in what sets, but, e.g., on mips64, the following move from base32 to base64 as part of this change, which I think is appropriate: - /lib/64 - /libexec/ld.elf_so-64 - /usr/lib/64 - /usr/libdata/debug/lib/64 - /usr/libdata/debug/usr/lib/64 - /usr/libexec/ld.elf_so-64 TBD: Remove ./lib and ./usr/lib from debug/mi; they're already in base/mi. Maybe move ./usr/libdata/debug to from base/mi to debug/mi. This reverts most of the set list changes in: https://mail-index.netbsd.org/source-changes/2024/04/09/msg150763.html PR misc/58365 |
| /src/share/misc/ | ||
| H A D | acronyms.comp | 1.346 Tue Mar 07 01:29:21 GMT 2023 thorpej Add: HCC - Home Cable Computer HCCA - Home Cable Computer Adaptor (yes, that is the original spelling) |
| /src/share/mk/ | ||
| H A D | bsd.prog.mk | 1.346 Wed Oct 11 14:08:17 GMT 2023 riastradh bsd.prog.mk: krb5 stuff no longer needs to link against sqlite3. (Why is this here? Seems like it should be a .mk fragment under crypto/external/bsd/heimdal -- that way I would have found it for the previous commit.) PR lib/57406 XXX pullup-10 |
| /src/sys/dev/scsipi/ | ||
| H A D | sd.c | 1.346 Sat Oct 11 13:58:08 GMT 2025 mlelstv For SPC-3 devices try READ_CAPACITY_16 first and fall back to older READ_CAPACITY_10. This fixes SCSI drivers like mpt(4) that announce SPC-3 conformity but don't support READ_CAPACITY_16 in all configurations. |
| /src/sys/arch/macppc/conf/ | ||
| H A D | GENERIC | 1.346 Fri Mar 16 03:19:38 GMT 2018 sevan Forgot the pseudo devices in the previous commit. |
| /src/sys/arch/amd64/conf/ | ||
| H A D | GENERIC | 1.347 Tue Jan 17 18:11:28 GMT 2012 veego Back out all changes for rev 1.346 which are not related to PR/45850 Should fix the reported build problem from Paul Goyette 1.346 Tue Jan 17 03:49:19 GMT 2012 christos PR/45850: Pierre Pronchery: USB multi-touch panels are not supported |
| /src/sys/ufs/ffs/ | ||
| H A D | ffs_vfsops.c | 1.346 Wed Feb 22 09:50:13 GMT 2017 hannken Enable fstrans on all file systems. Welcome to 7.99.61 |
| /src/sys/ufs/lfs/ | ||
| H A D | lfs_vfsops.c | 1.346 Sat Oct 10 22:33:57 GMT 2015 dholland Remove no longer needed explicit 32->64 sign extension. This is the last 32-bit-on-disk item among those that were either already tagged or readily discoverable. |
| H A D | lfs_vnops.c | 1.346 Sat Nov 01 04:10:47 GMT 2025 perseant Create a new LFS inode flag, IN_DEAD, to indicate that a file's last reference, other than those that come with VU_DIROP or IN_CLEANING and the one the caller holds, has been dropped. Check and apply this flag in lfs_orphan(), and call lfs_orphan() on close if the link count is zero. Change the signature of lfs_orphan to facilitate. Make test t_vfsops:lfs_tfhremove expect success. Closes PR kern/43745. |
| /src/sys/uvm/ | ||
| H A D | uvm_map.c | 1.346 Fri May 19 14:42:00 GMT 2017 christos mention the man page instead of the command. |
| /src/sys/arch/sparc64/sparc64/ | ||
| H A D | locore.s | 1.346 Wed Jan 23 00:19:02 GMT 2013 martin Sligthly clean up the (by default unused) #ifdef TRAPS_USE_IG |
| /src/sys/arch/sparc/sparc/ | ||
| H A D | pmap.c | 1.346 Thu Sep 01 08:47:56 GMT 2011 martin In pmap_unwire() fix an obvious editor mishap - enable kernel preemption before returning, not the other way around. Might fix PR kern/45137. |
| /src/sys/arch/i386/conf/ | ||
| H A D | ALL | 1.346 Wed Oct 03 18:58:30 GMT 2012 dsl Remove all references to KVM86. It was only ever used by APMBIOS - and then only if an option was selected. Probably didn't work well at all! |
Completed in 382 milliseconds