committer filter by committer.
@path/to/ filter by path in repository.
committer@path/to/ filter by committer AND path in repository.
abdef0123 filter by commit's SHA hash.
rNNN filter by SVN revision.
rNNN-rMMM filter by SVN revisions range (inclusive).
Multiple filters can be specified separated by spaces or comas in which case they'll be combined using OR operator.
2ae79aa3 | freqlabs | Feb. 25, 2021, 7:16 p.m. | Install links for zpool feature compat aliases
The alias links were missed when this feature was introduced to the FreeBSD build system in 10f57cb98fd61b2669640a84aa73ad118601f281. Reviewed by: mm MFC after: 1 week Sponsored by: iXsystems, Inc. Differential Revision: https://reviews.freebsd.org/D28925cgit |
|
b7109c3c | freqlabs | Feb. 25, 2021, 6:58 p.m. | libifconfig: Add missing symbols to map
Regenerate the list of generated symbols for libifconfig: ``` grep -hr ^ifconfig_sfp_ /usr/obj/usr/src/amd64.amd64/lib/libifconfig \ | sed 's/(.*/;/' | sort -u ``` Spotted by build failures caused by a missing symbol while working on upgrading libifconfig from internal to private. Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D28927cgit |
|
e7a5b3bd | trasz | Feb. 25, 2021, 6:55 p.m. | Modify lock_delay() to increase the delay time after spinning
Modify lock_delay() to increase the delay time after spinning, not before. Previously we would spin at least twice instead of once. In NetApp's benchmarks this fixes a performance regression compared to FreeBSD 10, which called cpu_spinwait() directly. Reviewed By: mjg Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D27331cgit |
|
22267215 | trasz | Feb. 25, 2021, 6:45 p.m. | camcontrol(8): remove unnecessary CCB zeroing
After 3e404b8c53d, cam_getccb(3) clears the returned CCB, making a number of calls to CCB_CLEAR_ALL_EXCEPT_HDR(3) unnecessary. Reviewed By: imp Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D27812cgit |
|
f848d08e | trasz | Feb. 25, 2021, 6:40 p.m. | camcontrol: stop pretending cam_cmd is a bitmask
Cleanup only, no functional changes. Reviewed By: imp Sponsored By: NetApp, Inc. Sponsored By: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D27813cgit |
|
304bc766 | bapt | Feb. 25, 2021, 6:28 p.m. | ncurses: update configuration header after update | |
705d7263 | bapt | Feb. 25, 2021, 6:27 p.m. | ncurses: ensure we prefer the generated ncurses_dll.h | |
7a656419 | bapt | Feb. 25, 2021, 6:26 p.m. | ncurses: import version 6.2-20210220 | |
220c6d92 | garga | Feb. 25, 2021, 6:22 p.m. | ncurses: Silence MKuserdefs.sh call
Remove -x flag from sh used to execute MKuserdefs.sh during ncurses build and stop polluting make -s output Reviewed by: bapt, manu Approved by: bapt Differential Revision: https://reviews.freebsd.org/D28885cgit |
|
2593f858 | rscheff | Feb. 25, 2021, 6:12 p.m. | A TCP server has to take into consideration, if TCP_NOOPT is preventing
the negotiation of TCP features. This affects most TCP options but adherance to RFC7323 with the timestamp option will prevent a session from getting established. PR: 253576 Reviewed By: tuexen, #transport MFC after: 3 days Sponsored by: NetApp, Inc. Differential Revision: https://reviews.freebsd.org/D28652cgit |
|
31d7a27c | rscheff | Feb. 25, 2021, 5:37 p.m. | PRR: Avoid accounting left-edge twice in partial ACK.
Reviewed By: #transport, kbowling MFC after: 3 days Sponsored by: NetApp, Inc. Differential Revision: https://reviews.freebsd.org/D28819cgit |
|
48396dc7 | rscheff | Feb. 25, 2021, 5:32 p.m. | Address two incorrect calculations and enhance readability of PRR code
- address second instance of cwnd potentially becoming zero - fix sublte bug due to implicit int to uint typecase in max() - fix bug due to typo in hand-coded CEILING() function by using howmany() macro - use int instead of long, and add a missing long typecast - replace if conditionals with easier to read imax/imin (as in pseudocode) Reviewed By: #transport, kbowling MFC after: 3 days Sponsored by: NetApp, Inc. Differential Revision: https://reviews.freebsd.org/D28813cgit |
|
8f3c71c8 | manu | Feb. 25, 2021, 5:11 p.m. | mkimg: Add support for offset if the source is an image
This allow us to create image with the following format: mkimg -v -o sdcard -s gpt -p efi:=esp_aarch64.img:1M -p freebsd-ufs::1G Which will add a efi partition at a 1M offset on the image with its content coming from the esp_aarch64.img file. MFC after: 3 dayscgit |
|
655fa044 | lwhsu | Feb. 25, 2021, 4:43 p.m. | Add if_wg.4 MLINK | |
ba7ede0b | emaste | Feb. 25, 2021, 4:02 p.m. | Add UPDATING entry for PIE default
As of commit 9a227a2fd642 PIE is on by default for 64-bit architectures. Relnotes: yescgit |