Searched hist:1.487 (Results 1 - 25 of 34) sorted by relevance

12

/src/sys/dist/pf/net/
H A Dpf.c1.25 Sat Oct 07 21:45:49 GMT 2006 peter PR/34746: Nino Dehne: pf(4)'s synproxy state breaks when used with tags

Apply OpenBSD src/sys/net/pf.c rev 1.486 and 1.487:

1.486:
When synproxy sends packets to the destination host, make sure to copy
the 'tag' from the original state entry into the outgoing mbuf.

1.487:
When synproxy completes the replayed handshake and modifies the state
into a normal one, it sets both peers' sequence windows. Fix a bug where
the previously advertised windows are applied to the wrong side (i.e.
peer A's seqhi is peer A's seqlo plus peer B's, not A's, window). This
went undetected because mostly the windows are similar and/or re-
advertised soon. But there are (rare) cases where a synproxy'd connection
would stall right after handshake. Found by Gleb Smirnoff.

1.25 Sat Oct 07 21:45:49 GMT 2006 peter PR/34746: Nino Dehne: pf(4)'s synproxy state breaks when used with tags

Apply OpenBSD src/sys/net/pf.c rev 1.486 and 1.487:

1.486:
When synproxy sends packets to the destination host, make sure to copy
the 'tag' from the original state entry into the outgoing mbuf.

1.487:
When synproxy completes the replayed handshake and modifies the state
into a normal one, it sets both peers' sequence windows. Fix a bug where
the previously advertised windows are applied to the wrong side (i.e.
peer A's seqhi is peer A's seqlo plus peer B's, not A's, window). This
went undetected because mostly the windows are similar and/or re-
advertised soon. But there are (rare) cases where a synproxy'd connection
would stall right after handshake. Found by Gleb Smirnoff.

/src/share/man/man4/
H A DMakefile1.487 Thu Feb 05 18:03:30 GMT 2009 sborrill branches: 1.487.2;
Add bwi(4) man page based on Dragonfly man page
1.487 Thu Feb 05 18:03:30 GMT 2009 sborrill branches: 1.487.2;
Add bwi(4) man page based on Dragonfly man page
H A Doptions.41.487 Fri May 11 14:38:28 GMT 2018 maxv Retire ICMPPRINTFS, it's annoying and it doesn't build.
/src/sys/arch/i386/conf/
H A DALL1.487 Wed Jan 29 18:39:02 GMT 2020 maya remove urio(4), a driver for the Rio500 MP3 player.

At this point it is highly unlikely this 1999 device still has users,
but it still comes up in the context of maxv's USB-fuzzing (and any device
could pretend to be a urio(4)), so it's best to get rid of it.

Renamed all major entries to obsolete, as was done in previous removals.

This still requires an update to sanitizers, but they're located in
"external", perhaps it should be first committed upstream?

Proposed on tech-kern a month ago.
/src/distrib/notes/common/
H A Dmain1.487 Tue Apr 17 14:11:59 GMT 2012 khorben Added myself to the list of NetBSD Developers
/src/distrib/sets/lists/debug/
H A Dmi1.487 Mon Oct 06 13:16:43 GMT 2025 riastradh libpthread: Test pthread stubs in threaded vs non-threaded programs.

PR lib/59685: libcrypto should not depend on libpthread
/src/sys/dev/usb/
H A Dusbdevs1.487 Sun Nov 25 09:16:49 GMT 2007 kiyohara Add COREGA CG-WLUSB2GL.
H A Dusbdevs.h1.487 Thu Nov 29 18:38:43 GMT 2007 xtraeme regen
H A Dusbdevs_data.h1.487 Sun Nov 25 09:17:56 GMT 2007 kiyohara Regen.
/src/usr.bin/xlint/lint1/
H A Dcgram.y1.487 Mon Feb 05 23:11:22 GMT 2024 rillig lint: make function call arguments directly accessible

Previously, the arguments of a function call expression were arranged in
a linear tree structure, from right to left. To allow easier access to
the arguments, store them in an array instead.
H A Dtree.c1.487 Sun Jan 08 15:22:33 GMT 2023 rillig lint: recognize enum constant named 'max' as a count of values

Seen in external/bsd/mdocml/dist/mdoc.h(50).
/src/sys/kern/
H A Dinit_main.c1.487 Wed Nov 16 00:31:33 GMT 2016 pgoyette Initialize the bufq code right before we're ready to load the strategy
modules.
H A Dkern_exec.c1.487 Sun Jan 12 18:30:58 GMT 2020 ad Tidy up the vnode locking around execve() on ELF images to acquire and
release the locks fewer times. Proposed on tech-kern a very long time go.
H A Dvfs_subr.c1.487 Sat May 16 18:31:50 GMT 2020 christos Add ACL support for FFS. From FreeBSD.
/src/sys/net/
H A Dif.c1.487 Thu Jul 01 22:08:13 GMT 2021 blymn Back out fix for kern_pmf.c calling a null if_stop and apply a fix
suggested by Jared McNeill which sets if_stop to a stub function
which means that more than just the pmf is protected from the NULL call.
/src/sys/arch/amd64/conf/
H A DGENERIC1.487 Sat Apr 07 19:38:06 GMT 2018 mrg add an SPECTRE_V2_GCC_MITIGATION option to x86 kernels, that turns
on the GCC spectre v2 mitigation options.

XXX: pullup-8.
XXX: turn on in all kernels.
/src/sys/dev/pci/
H A Dpcidevs.h1.487 Sat Nov 09 07:39:55 GMT 2002 grant regen for ATI Rage Mobility M1.
H A Dpcidevs_data.h1.487 Fri Nov 15 22:20:02 GMT 2002 tsutsui Regen from pcidevs rev 1.486:
> Remove an entry for AMD PCNETS_PCI.
>
> AMD Am79C974 PCnet-SCSI Ethernet and SCSI conrtoller is
> a multi-function PCI device which has two device IDs
> of Am53C974(PCscsi-PCI) and Am79C970(PCnet-PCI),
> and there is no its own ID.
/src/usr.bin/make/
H A Djob.c1.487 Fri Mar 07 06:50:34 GMT 2025 rillig make: clean up comments and code for parallel mode

Most of the comments didn't help understand the code.

The Finish function was named way too soft for what it does, which is to
exit without cleaning up properly. Since it was used only once, inline
it. The code from that function causes jobs to be terminated early when
an unrelated target has failed, resulting in partially written files,
due to SIGPIPE.

H A Dmain.c1.487 Sat Nov 28 23:43:14 GMT 2020 rillig make(1): reduce memory allocation in ReadBuiltinRules
H A Dparse.c1.487 Fri Dec 18 23:18:08 GMT 2020 rillig make(1): clean up UnescapeBackslash
/src/sys/arch/i386/i386/
H A Dmachdep.c1.487 Fri Oct 04 18:42:34 GMT 2002 junyoung Correctly identify model 6, 7, and 8 of AMD Athlon and Duron processors.

Before:
cpu0: AMD Athlon Model 6 (Palomino) (686-class), 1532.11 MHz

After:
cpu0: AMD Athlon XP 1800+ (686-class), 1532.11 MHz
/src/distrib/sets/lists/base/
H A Dshl.mi1.487 Thu Sep 03 00:55:10 GMT 2009 pooka install librumpfs_fdesc
/src/doc/
H A D3RDPARTY1.487 Mon Dec 04 03:05:51 GMT 2006 xtraeme ACPI-CA 20060912 is the latest version available.
/src/sys/sys/
H A Dparam.h1.487 Thu Nov 26 13:17:07 GMT 2015 martin struct emul::e_vm_default_addr changed signature, welcome to 7.99.22!

Completed in 1066 milliseconds

12