From noreply at github.com Thu Sep 8 18:32:18 2022 From: noreply at github.com (Lucas Holt) Date: Thu, 08 Sep 2022 15:32:18 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 511ecb: tcp: Correctly compute the retransmit length f... Message-ID: Branch: refs/heads/stable/2.2 Home: https://github.com/MidnightBSD/src Commit: 511ecb476b711ffb0572425c07baf280ad238aed https://github.com/MidnightBSD/src/commit/511ecb476b711ffb0572425c07baf280ad238aed Author: Lucas Holt Date: 2022-09-08 (Thu, 08 Sep 2022) Changed paths: M sys/netinet/tcp_output.c M sys/netinet/tcp_seq.h Log Message: ----------- tcp: Correctly compute the retransmit length for all 64-bit platforms. When the TCP sequence number subtracted is greater than 2**32 minus the window size, or 2**31 minus the window size, the use of unsigned long as an intermediate variable, may result in an incorrect retransmit length computation on all 64-bit platforms. While at it create a helper macro to facilitate the computation of the difference between two TCP sequence numbers. Obtained from: FreeBSD 11 stable / June 2022 From noreply at github.com Thu Sep 8 18:34:26 2022 From: noreply at github.com (Lucas Holt) Date: Thu, 08 Sep 2022 15:34:26 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 444e9e: fetch: make -S argument accept values > 2GB Message-ID: Branch: refs/heads/stable/2.2 Home: https://github.com/MidnightBSD/src Commit: 444e9e03de4a6c4dea235e907ebb457a8e7f6c9d https://github.com/MidnightBSD/src/commit/444e9e03de4a6c4dea235e907ebb457a8e7f6c9d Author: Lucas Holt Date: 2022-09-08 (Thu, 08 Sep 2022) Changed paths: M usr.bin/fetch/fetch.c Log Message: ----------- fetch: make -S argument accept values > 2GB Use strtoll() to parse the argument of the -S option. While strtol() returns a 64 bit value on 64 LP64 architectures, it is limit to 32 bit on e.g. i386. The strtoll() function returns a 64 but result on all supported architectures and therefore supports the possible file lengths and file offsets on 32 bit archtectures. Obtained from: FreeBSD From noreply at github.com Thu Sep 8 18:35:55 2022 From: noreply at github.com (Lucas Holt) Date: Thu, 08 Sep 2022 15:35:55 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 73ef53: document changes Message-ID: Branch: refs/heads/stable/2.2 Home: https://github.com/MidnightBSD/src Commit: 73ef53af0843aa680786d9221df057c135a11252 https://github.com/MidnightBSD/src/commit/73ef53af0843aa680786d9221df057c135a11252 Author: Lucas Holt Date: 2022-09-08 (Thu, 08 Sep 2022) Changed paths: M UPDATING M sys/conf/newvers.sh Log Message: ----------- document changes From noreply at github.com Thu Sep 8 18:38:54 2022 From: noreply at github.com (Lucas Holt) Date: Thu, 08 Sep 2022 15:38:54 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] df8222: installworld: handle ldd including preloaded objects Message-ID: Branch: refs/heads/stable/2.2 Home: https://github.com/MidnightBSD/src Commit: df8222751b0afa9f2ccc513bce3e5a727b2353d5 https://github.com/MidnightBSD/src/commit/df8222751b0afa9f2ccc513bce3e5a727b2353d5 Author: Lucas Holt Date: 2022-09-08 (Thu, 08 Sep 2022) Changed paths: M Makefile.inc1 Log Message: ----------- installworld: handle ldd including preloaded objects Obtained from: FreeBSD