Searched hist:1.377 (Results 1 - 25 of 67) sorted by relevance
| /src/sys/arch/i386/conf/ | ||
| H A D | CARDBUS | 1.27 Sat Nov 18 02:08:30 GMT 2000 lukem pull up stuff changed in GENERIC from 1.370 - 1.377, appropriately commented out if it's not relevant to a laptop |
| H A D | ALL | 1.377 Tue Jun 24 11:59:10 GMT 2014 maxv Remove dead code. The kernel already checks for PT_INTERP sections, and puts their content into "itp". There's no need for re-reading the whole binary and trying to find this section again. Just use "itp". DEBUG_FREEBSD_ELF is now unused, so remove its references in amd64/conf/ALL and i386/conf/ALL. |
| H A D | files.i386 | 1.377 Fri Feb 17 00:10:40 GMT 2017 maxv Support PMCs on multi-processor systems. Still several things to fix, but at least it works a little. Will be improved and moved into x86/ soon. |
| /src/ | ||
| H A D | build.sh | 1.377 Tue Apr 23 07:47:36 GMT 2024 martin branches: 1.377.2; For consistency, check MKREPRO_TIMESTAMP always numerically (not as string) 1.377 Tue Apr 23 07:47:36 GMT 2024 martin branches: 1.377.2; For consistency, check MKREPRO_TIMESTAMP always numerically (not as string) 1.377 Tue Apr 23 07:47:36 GMT 2024 martin branches: 1.377.2; For consistency, check MKREPRO_TIMESTAMP always numerically (not as string) 1.377 Tue Apr 23 07:47:36 GMT 2024 martin branches: 1.377.2; For consistency, check MKREPRO_TIMESTAMP always numerically (not as string) |
| H A D | UPDATING | 1.377 Sun Apr 13 17:23:06 GMT 2025 riastradh bsd.lib.mk: Redo rev. 1.418 more selectively. Previously, in rev. 1.418, I had changed: .if ${LIBISPRIVATE} != "no" ... . if defined(NOSTATICLIB) && ${MKPICLIB} != "no" MAKESTATICLIB?= no . elif ${LIBISPRIVATE} != "pic" MKPIC:= no . endif ... .endif ... -.if ${LIBISPRIVATE} == "pic" +.if ${MKPIC} != "no" CFLAGS+= -fPIC AFLAGS+= -fPIC .endif This was an attempt to obviate the need for grody conditionals in private shared libraries like libuv: .if ${MACHINE} == "sun2" LIBISPRIVATE=yes .else LIBISPRIVATE=pic .endif This is wrong, after all, because you can also do MKPIC=no on non-sun2 platforms if you really want a static build, and it's a mess to have to write it out in every case. My theory in making that change was that: (a) on MKPIC=yes platforms in makefiles without LIBISPRIVATE=yes, we're building with -fPIC anyway, so ${MKPIC} != no is right; (b) on MKPIC=yes platforms in makefiles with LIBISPRIVATE=yes, we shouldn't build with -fPIC and the conditional above sets MKPIC=no in that case, so ${MKPIC} != no is right; (c) on MKPIC=no platforms (mainly sun2), no matter what LIBISPRIVATE is set to, we shouldn't build with -fPIC, so ${MKPIC} != no is right. But (a) is wrong, because we use the same makefile to build .pico and .o objects from which we link (PIC) .so and (non-PIC) .a libraries, and the distinction is made not in CFLAGS/AFLAGS but in PICFLAGS and CSHLIBFLAGS. So, to obviate the need for the .if sun2 conditionals around LIBISPRIVATE=pic, but avoid breaking everything _other_ than LIBISPRIVATE=pic, let's make the addition of -fPIC to CFLAGS/AFLAGS conditional on _both_ LIBISPRIVATE=pic _and_ MKPIC=yes. PR port-mips/59064: jemalloc switch to 5.3 broke userland 1.377 Sun Apr 13 17:23:06 GMT 2025 riastradh bsd.lib.mk: Redo rev. 1.418 more selectively. Previously, in rev. 1.418, I had changed: .if ${LIBISPRIVATE} != "no" ... . if defined(NOSTATICLIB) && ${MKPICLIB} != "no" MAKESTATICLIB?= no . elif ${LIBISPRIVATE} != "pic" MKPIC:= no . endif ... .endif ... -.if ${LIBISPRIVATE} == "pic" +.if ${MKPIC} != "no" CFLAGS+= -fPIC AFLAGS+= -fPIC .endif This was an attempt to obviate the need for grody conditionals in private shared libraries like libuv: .if ${MACHINE} == "sun2" LIBISPRIVATE=yes .else LIBISPRIVATE=pic .endif This is wrong, after all, because you can also do MKPIC=no on non-sun2 platforms if you really want a static build, and it's a mess to have to write it out in every case. My theory in making that change was that: (a) on MKPIC=yes platforms in makefiles without LIBISPRIVATE=yes, we're building with -fPIC anyway, so ${MKPIC} != no is right; (b) on MKPIC=yes platforms in makefiles with LIBISPRIVATE=yes, we shouldn't build with -fPIC and the conditional above sets MKPIC=no in that case, so ${MKPIC} != no is right; (c) on MKPIC=no platforms (mainly sun2), no matter what LIBISPRIVATE is set to, we shouldn't build with -fPIC, so ${MKPIC} != no is right. But (a) is wrong, because we use the same makefile to build .pico and .o objects from which we link (PIC) .so and (non-PIC) .a libraries, and the distinction is made not in CFLAGS/AFLAGS but in PICFLAGS and CSHLIBFLAGS. So, to obviate the need for the .if sun2 conditionals around LIBISPRIVATE=pic, but avoid breaking everything _other_ than LIBISPRIVATE=pic, let's make the addition of -fPIC to CFLAGS/AFLAGS conditional on _both_ LIBISPRIVATE=pic _and_ MKPIC=yes. PR port-mips/59064: jemalloc switch to 5.3 broke userland 1.377 Sun Apr 13 17:23:06 GMT 2025 riastradh bsd.lib.mk: Redo rev. 1.418 more selectively. Previously, in rev. 1.418, I had changed: .if ${LIBISPRIVATE} != "no" ... . if defined(NOSTATICLIB) && ${MKPICLIB} != "no" MAKESTATICLIB?= no . elif ${LIBISPRIVATE} != "pic" MKPIC:= no . endif ... .endif ... -.if ${LIBISPRIVATE} == "pic" +.if ${MKPIC} != "no" CFLAGS+= -fPIC AFLAGS+= -fPIC .endif This was an attempt to obviate the need for grody conditionals in private shared libraries like libuv: .if ${MACHINE} == "sun2" LIBISPRIVATE=yes .else LIBISPRIVATE=pic .endif This is wrong, after all, because you can also do MKPIC=no on non-sun2 platforms if you really want a static build, and it's a mess to have to write it out in every case. My theory in making that change was that: (a) on MKPIC=yes platforms in makefiles without LIBISPRIVATE=yes, we're building with -fPIC anyway, so ${MKPIC} != no is right; (b) on MKPIC=yes platforms in makefiles with LIBISPRIVATE=yes, we shouldn't build with -fPIC and the conditional above sets MKPIC=no in that case, so ${MKPIC} != no is right; (c) on MKPIC=no platforms (mainly sun2), no matter what LIBISPRIVATE is set to, we shouldn't build with -fPIC, so ${MKPIC} != no is right. But (a) is wrong, because we use the same makefile to build .pico and .o objects from which we link (PIC) .so and (non-PIC) .a libraries, and the distinction is made not in CFLAGS/AFLAGS but in PICFLAGS and CSHLIBFLAGS. So, to obviate the need for the .if sun2 conditionals around LIBISPRIVATE=pic, but avoid breaking everything _other_ than LIBISPRIVATE=pic, let's make the addition of -fPIC to CFLAGS/AFLAGS conditional on _both_ LIBISPRIVATE=pic _and_ MKPIC=yes. PR port-mips/59064: jemalloc switch to 5.3 broke userland 1.377 Sun Apr 13 17:23:06 GMT 2025 riastradh bsd.lib.mk: Redo rev. 1.418 more selectively. Previously, in rev. 1.418, I had changed: .if ${LIBISPRIVATE} != "no" ... . if defined(NOSTATICLIB) && ${MKPICLIB} != "no" MAKESTATICLIB?= no . elif ${LIBISPRIVATE} != "pic" MKPIC:= no . endif ... .endif ... -.if ${LIBISPRIVATE} == "pic" +.if ${MKPIC} != "no" CFLAGS+= -fPIC AFLAGS+= -fPIC .endif This was an attempt to obviate the need for grody conditionals in private shared libraries like libuv: .if ${MACHINE} == "sun2" LIBISPRIVATE=yes .else LIBISPRIVATE=pic .endif This is wrong, after all, because you can also do MKPIC=no on non-sun2 platforms if you really want a static build, and it's a mess to have to write it out in every case. My theory in making that change was that: (a) on MKPIC=yes platforms in makefiles without LIBISPRIVATE=yes, we're building with -fPIC anyway, so ${MKPIC} != no is right; (b) on MKPIC=yes platforms in makefiles with LIBISPRIVATE=yes, we shouldn't build with -fPIC and the conditional above sets MKPIC=no in that case, so ${MKPIC} != no is right; (c) on MKPIC=no platforms (mainly sun2), no matter what LIBISPRIVATE is set to, we shouldn't build with -fPIC, so ${MKPIC} != no is right. But (a) is wrong, because we use the same makefile to build .pico and .o objects from which we link (PIC) .so and (non-PIC) .a libraries, and the distinction is made not in CFLAGS/AFLAGS but in PICFLAGS and CSHLIBFLAGS. So, to obviate the need for the .if sun2 conditionals around LIBISPRIVATE=pic, but avoid breaking everything _other_ than LIBISPRIVATE=pic, let's make the addition of -fPIC to CFLAGS/AFLAGS conditional on _both_ LIBISPRIVATE=pic _and_ MKPIC=yes. PR port-mips/59064: jemalloc switch to 5.3 broke userland |
| /src/sys/arch/sparc64/sparc64/ | ||
| H A D | locore.s | 1.377 Sun Oct 26 21:03:45 GMT 2014 palle branches: 1.377.2; sun4v: Create CLEANWIN0 and CLEANWIN1 macros for handling clean window traps on both sun4u and sun4u (based on the original code inlined in the sun4u trap table). Update trap tables accordingly for both sun4u and sun4v. Ok martin@ 1.377 Sun Oct 26 21:03:45 GMT 2014 palle branches: 1.377.2; sun4v: Create CLEANWIN0 and CLEANWIN1 macros for handling clean window traps on both sun4u and sun4u (based on the original code inlined in the sun4u trap table). Update trap tables accordingly for both sun4u and sun4v. Ok martin@ |
| /src/share/man/man9/ | ||
| H A D | Makefile | 1.377 Mon Mar 24 13:42:40 GMT 2014 hannken branches: 1.377.2; - Make VI_XLOCK, VI_CLEAN and VI_LOCKSHARE private to kern/vfs_*.c. - Make vwait() static. - Add vdead_check() to check a vnode for being or becoming dead. Discussed on tech-kern. Welcome to 6.99.38 1.377 Mon Mar 24 13:42:40 GMT 2014 hannken branches: 1.377.2; - Make VI_XLOCK, VI_CLEAN and VI_LOCKSHARE private to kern/vfs_*.c. - Make vwait() static. - Add vdead_check() to check a vnode for being or becoming dead. Discussed on tech-kern. Welcome to 6.99.38 |
| /src/usr.bin/make/ | ||
| H A D | make.1 | 1.377 Sat Jun 01 06:26:36 GMT 2024 sjg branches: 1.377.2; make: add .export-all An explicit syntax for exporting all global variables is much safer than allowing .export with no argument to do the same. Add .export-all and have .export with no argument throw a warning saying to use .export-all Reviewed by: rillig 1.377 Sat Jun 01 06:26:36 GMT 2024 sjg branches: 1.377.2; make: add .export-all An explicit syntax for exporting all global variables is much safer than allowing .export with no argument to do the same. Add .export-all and have .export with no argument throw a warning saying to use .export-all Reviewed by: rillig |
| /src/sys/uvm/ | ||
| H A D | uvm_map.c | 1.377 Sat Apr 04 21:17:02 GMT 2020 ad branches: 1.377.2; Mark uvm_map_entry_cache with PR_LARGECACHE. 1.377 Sat Apr 04 21:17:02 GMT 2020 ad branches: 1.377.2; Mark uvm_map_entry_cache with PR_LARGECACHE. 1.377 Sat Apr 04 21:17:02 GMT 2020 ad branches: 1.377.2; Mark uvm_map_entry_cache with PR_LARGECACHE. 1.377 Sat Apr 04 21:17:02 GMT 2020 ad branches: 1.377.2; Mark uvm_map_entry_cache with PR_LARGECACHE. 1.377 Sat Apr 04 21:17:02 GMT 2020 ad branches: 1.377.2; Mark uvm_map_entry_cache with PR_LARGECACHE. 1.377 Sat Apr 04 21:17:02 GMT 2020 ad branches: 1.377.2; Mark uvm_map_entry_cache with PR_LARGECACHE. |
| /src/share/mk/ | ||
| H A D | bsd.README | 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. 1.377 Mon Jun 25 09:38:46 GMT 2018 kamil branches: 1.377.2; Rephrase the documentation of MKSANITIZER Based on the feedback from <f8l> and <pgoyette>. |
| /src/sys/arch/alpha/conf/ | ||
| H A D | GENERIC | 1.377 Wed Sep 13 22:24:42 GMT 2017 sevan Remove support for VERIFIED_EXEC_FP_RMD160, VERIFIED_EXEC_FP_SHA1, and VERIFIED_EXEC_FP_MD5 options. These algorithms are either broken or on their way to being broken. Discussed on tech-security http://mail-index.netbsd.org/tech-security/2017/08/21/msg000936.html ok riastradh |
| /src/sys/arch/macppc/conf/ | ||
| H A D | GENERIC | 1.377 Thu Feb 09 14:09:49 GMT 2023 abs Adjust _all_ cinclude of *.local files - Ensure always at end - Use tab rather than spaces - Add consistent comment "Pull in optional local configuration - always at end" The only functional change is that a local file which tried to override an existing setting (eg with "no foo") would have failed in some cases before, but now will work |
| /src/share/misc/ | ||
| H A D | acronyms.comp | 1.377 Fri Oct 27 21:28:14 GMT 2023 jschauma +ROA route origin authorization 1.377 Fri Oct 27 21:28:14 GMT 2023 jschauma +ROA route origin authorization 1.377 Fri Oct 27 21:28:14 GMT 2023 jschauma +ROA route origin authorization 1.377 Fri Oct 27 21:28:14 GMT 2023 jschauma +ROA route origin authorization |
| /src/distrib/sets/lists/debug/ | ||
| H A D | shl.mi | 1.377 Sun Oct 26 20:50:03 GMT 2025 christos bump libpthread for pthread_setname_np change. 1.377 Sun Oct 26 20:50:03 GMT 2025 christos bump libpthread for pthread_setname_np change. 1.377 Sun Oct 26 20:50:03 GMT 2025 christos bump libpthread for pthread_setname_np change. 1.377 Sun Oct 26 20:50:03 GMT 2025 christos bump libpthread for pthread_setname_np change. 1.377 Sun Oct 26 20:50:03 GMT 2025 christos bump libpthread for pthread_setname_np change. 1.377 Sun Oct 26 20:50:03 GMT 2025 christos bump libpthread for pthread_setname_np change. |
| /src/sys/kern/ | ||
| H A D | kern_exec.c | 1.377 Wed Feb 19 15:23:20 GMT 2014 maxv branches: 1.377.2; We need VMCMDs for a binary and its interpreter, so make sure we have at least one VMCMD. This also prevents the kernel from using an uninitialized pointer as entry point for the execution. From me and Christos ok christos@ 1.377 Wed Feb 19 15:23:20 GMT 2014 maxv branches: 1.377.2; We need VMCMDs for a binary and its interpreter, so make sure we have at least one VMCMD. This also prevents the kernel from using an uninitialized pointer as entry point for the execution. From me and Christos ok christos@ |
| /src/sys/ufs/ffs/ | ||
| H A D | ffs_vfsops.c | 1.377 Thu Nov 10 10:53:29 GMT 2022 hannken Some changes to "fs->fs_fmod" and "fs->fs_clean": - clear "fs->fs_fmod" after reading the super block. - assert we don't write a super block when mounted read-only. - make sure "fs->fs_clean" is one of FS_ISCLEAN or FS_WASCLEAN. - print "file system not clean" on every mount. Should fix PR kern/57010: ffs: mounting unclean non-root fs read-only causes spurious write to superblock |
| /src/sys/dev/ata/ | ||
| H A D | wd.c | 1.377 Wed May 20 03:26:21 GMT 2009 dyoung On second thought, let's call disk_predetach() disk_begindetach(). Verbs are good. |
| /src/sys/arch/arm/arm32/ | ||
| H A D | pmap.c | 1.377 Fri Jan 17 00:40:44 GMT 2020 skrll Typo in comment |
| /src/distrib/notes/common/ | ||
| H A D | main | 1.377 Fri Dec 14 04:24:49 GMT 2007 jnemeth - update from htdocs/releases/formal-4/NetBSD-4.0.xml#major-changes - fix incorrect usage of .Lk macros - update Release Contents - new CHANGES.* files - no pkgsrc - new SHA512 checksum files - update set sizes - grammar - lint - thank WWU CS Dept. for a build cluster - update portmaster list |
| /src/etc/ | ||
| H A D | Makefile | 1.377 Sun Jan 10 06:13:25 GMT 2010 dholland Fix installation permissions of /var/db/locate.database as per PR misc/41544. |
| /src/sys/dev/raidframe/ | ||
| H A D | rf_netbsdkintf.c | 1.377 Wed Oct 30 07:59:44 GMT 2019 maxv Get &rsc->sc_dksc only when we know 'rsc' is not NULL. This was actually harmless because we didn't use the pointer then. Reported-by: syzbot+77097fae0e3aad6de088@syzkaller.appspotmail.com |
| /src/sys/dev/usb/ | ||
| H A D | usbdevs | 1.377 Wed Jul 07 21:11:02 GMT 2004 mycroft Add another Zire device, from PR 25929. |
| H A D | usbdevs.h | 1.377 Mon May 24 19:02:19 GMT 2004 tsarna regen |
| H A D | usbdevs_data.h | 1.377 Thu Apr 08 05:36:30 GMT 2004 matt Regen. |
| /src/sys/dev/pci/ | ||
| H A D | if_bge.c | 1.377 Sun Aug 14 09:04:17 GMT 2022 skrll bge: Use BUS_DMA_WAITOK in attach routines. |
Completed in 1082 milliseconds