Searched hist:1.526 (Results 1 - 25 of 29) sorted by relevance

12

/src/sys/arch/i386/i386/
H A Dmachdep.c1.526 Sun Jun 29 22:28:24 GMT 2003 fvdl branches: 1.526.2;
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
1.526 Sun Jun 29 22:28:24 GMT 2003 fvdl branches: 1.526.2;
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
/src/sys/sys/
H A Dparam.h1.526 Fri Jan 13 23:05:24 GMT 2017 kamil branches: 1.526.2;
Welcome to NetBSD 7.99.59 - PTRACE_VFORK and PTRACE_VFORK_DONE in ptrace(2)

Sponsored by <The NetBSD Foundation>
1.526 Fri Jan 13 23:05:24 GMT 2017 kamil branches: 1.526.2;
Welcome to NetBSD 7.99.59 - PTRACE_VFORK and PTRACE_VFORK_DONE in ptrace(2)

Sponsored by <The NetBSD Foundation>
/src/distrib/notes/common/
H A Dmain1.526 Mon May 02 16:02:24 GMT 2016 kre Add myself.
/src/share/man/man4/
H A Doptions.41.526 Mon Aug 14 16:51:52 GMT 2023 riastradh options(4), sysctl(7): Document options HEARTBEAT.
H A DMakefile1.526 Sat Oct 02 06:22:00 GMT 2010 kiyohara Add g760a fan speed controller driver.
/src/sys/dev/usb/
H A Dusbdevs1.526 Fri Apr 24 14:06:22 GMT 2009 jakllsch Add Microchip Technology vendor ID and two PICkit device IDs thereof.
H A Dusbdevs.h1.526 Sun Aug 02 20:53:41 GMT 2009 tshiozak regen.
H A Dusbdevs_data.h1.526 Wed Jul 29 15:47:26 GMT 2009 jakllsch Regenerate.
/src/usr.bin/xlint/lint1/
H A Dcgram.y1.526 Wed May 14 21:35:24 GMT 2025 rillig lint: extract type_attributes functions from grammar
H A Dtree.c1.526 Fri Jun 09 13:03:49 GMT 2023 rillig lint: indent local variables consistently

No binary change.
/src/sys/kern/
H A Dinit_main.c1.526 Sat May 23 23:42:43 GMT 2020 ad Move proc_lock into the data segment. It was dynamically allocated because
at the time we had mutex_obj_alloc() but not __cacheline_aligned.
H A Dkern_exec.c1.526 Sat Mar 15 00:11:09 GMT 2025 riastradh posix_spawn(2): Fix race between parent and child.

This was an embarrassing misuse of condition variables.

PR kern/59175: posix_spawn hang, hanging other process too
PR kern/52634: possible unhandled spurious wakeup in posix_spawn

(This only resolves one of the symptoms wiz had in PR 59175; there is
also another issue involved with p_vmspace and p_psstrp.)
/src/sys/net/
H A Dif.c1.526 Tue Sep 20 02:23:37 GMT 2022 knakahara Remove routes on an address removal if the routes referencing to the address. Implemented by ozaki-r@n.o.

A route that has a gateway is on a connected route can be invalid if the
connected route is deleted, i.e., an associated address is removed.
Traditionally NetBSD doesn't sweep such a route on the address removal. Sending
packets over the route fails with "No route to host". Also the route holds an
orphan ifaddr as rt_ifa that is destructed say by in_purgeaddr.

If the same address is assgined again in such a state, there can be two
different ifaddr objects with the same address. Until recently it's not a
big problem because we can send packets anyway. However after MP-ification
of the network stack, we can't send packets because we strictly check if rt_ifa
(i.e., the (old) ifaddr) is valid.

This change automatically removes such routes on a removal of an associated
address to avoid keeping inconsistent routes.
/src/sys/arch/amd64/conf/
H A DGENERIC1.526 Fri Apr 26 21:40:28 GMT 2019 sevan Enable BUFQ_PRIOCSCAN, CARP, Veriexec by default in GENERIC kernel configs.
On ports without a GENERIC kernel config enable in individul files, e.g evbmips.
Omit on:
atari, dreamcast, emips, epoc32, evbppc/VIRTEX*, ia64, luna68x, mvme68k,
mvmeppc, playstation2, riscv, sun2, sun3, x68k, zaurus due to resource
constraints or port infancy.
/src/sys/dev/pci/
H A Dpcidevs.h1.526 Sun Apr 13 01:53:21 GMT 2003 explorer typo, s/TX4/TX2/
H A Dpcidevs_data.h1.526 Tue Apr 15 23:15:47 GMT 2003 augustss Regen.
/src/distrib/sets/lists/base/
H A Dshl.mi1.526 Sat Mar 13 23:33:52 GMT 2010 agc deal with libnetpgp major bump to 3
H A Dmi1.526 Sat Feb 19 16:55:02 GMT 2005 thorpej Switch to ipsec-tools for libipsec, setkey, and racoon. From
Emmanuel Dreyfus, with some small changes by me.
/src/doc/
H A D3RDPARTY1.526 Wed May 16 06:56:19 GMT 2007 mrg remove myself from gdb list
/src/usr.bin/make/
H A Dmain.c1.526 Mon Feb 01 21:04:10 GMT 2021 rillig make: always use vfork, never fork

Before compat.c 1.217, job.c 1.390 and main.c 1.504 from 2020-12-27, the
exported make variables were exported from each freshly forked child
process. There was no practical difference though between exporting the
variables from the parent process or the child process since these two
processes share the same address space, except that the forked process
is very limited in what it may actually do. This limitation was
violated on a regular basis.

When an exported variable referred to a variable that used the :sh
variable modifier, this led to a fork from within vfork, which is not
allowed. Since 2020-12-27, exporting the variables is done from the
main process, which prevents this situation from ever occurring.

Since that day, there is no need anymore to distinguish between vfork
and fork, which removes any need for the macro.
H A Dparse.c1.526 Sun Jan 10 21:20:46 GMT 2021 rillig make(1): consistently use boolean expressions in conditions

Most of the make code already followed the style of explicitly writing
(ptr != NULL) instead of the shorter (ptr) in conditions.

The remaining 50 instances have been found by an experimental,
unpublished check in lint(1) that treats bool expressions as
incompatible to any other scalar type, just as in Java, C#, Pascal and
several other languages.

The only unsafe operation on Boolean that is left over is (flags &
FLAG), for an enum implementing a bit set. If Boolean is an ordinary
integer type (the default), some high bits may get lost. But if Boolean
is the same as _Bool (by compiling with -DUSE_C99_BOOLEAN), C99 6.3.1.2
defines that a conversion from any scalar to the type _Bool acts as a
comparison to 0, which cannot lose any bits.
/src/sys/arch/i386/conf/
H A DGENERIC1.526 Fri Nov 22 00:21:02 GMT 2002 wiz Fix typo (responsiness -> responsiveness).
/src/distrib/sets/lists/man/
H A Dmi1.526 Wed Oct 30 17:02:14 GMT 2002 agc Add a missing /usr/share/man/cat4/veriexec.0 as well
/src/distrib/sets/lists/tests/
H A Dmi1.526 Thu Feb 28 15:36:07 GMT 2013 martin Add new testprogram
/src/share/mk/
H A Dbsd.own.mk1.526 Sat Sep 06 05:27:46 GMT 2008 mrg add X11SRCDIR.xinput

Completed in 1359 milliseconds

12