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.
6b3ad1d7 | sobomax | Aug. 12, 2022, 5:07 p.m. | When -u option is used also set USER, HOME and SHELL variables.
This is consistent with what other uid-morphing utilities do, i.e. jexec(1), su(1) etc. MFC after: 2 weeks Reviewed by: gbe Differential Revision: https://reviews.freebsd.org/D36148cgit |
|
948f31d7 | glebius | Aug. 12, 2022, 3:31 p.m. | netinet: do not broadcast PRC_REDIRECT_HOST on ICMP redirect
This is expensive and useless call. It has been useless since Alexander melifaro@ moved the forwarding table to nexthops with passive invalidation. What happens now is that cached route in a inpcb would get invalidated on next ip_output(). These were the last users of pfctlinput(), so garbage collect it. Reviewed by: melifaro Differential revision: https://reviews.freebsd.org/D36156cgit |
|
886fc1e8 | glebius | Aug. 12, 2022, 3:30 p.m. | protosw: provide prototypes for all protocol switch methods
Reviewed by: melifaro Differential revision: https://reviews.freebsd.org/D36153cgit |
|
9d16275c | melifaro | Aug. 12, 2022, 11:43 a.m. | netinet6: simplify defrouter_select_fib()
* factor out underlying llentry check into a separate function and use it consistently * enter epoch once instead of per-router enter/exit * don't execute body with fibnum = `RT_ALL_FIBS` Differential Revision: https://reviews.freebsd.org/D35523 MFC after: 2 weekscgit |
|
730bfa28 | melifaro | Aug. 12, 2022, 9:31 a.m. | routing: add rib_match_gw() helper
Finish 02e05b8faec1: * add gateway matcher function that can be used in rib_del_route_px() or any rib_walk-family functions. It will be used in the upcoming migration to the new KPI * rename gw_fulter_func to match_gw_one() to better signal the function purpose / semantic. MFC after: 1 monthcgit |
|
6a70a0c8 | sobomax | Aug. 11, 2022, 11:33 p.m. | Document implicit dependencies of the mlx5(4) & friends.
MFC after: 2 weekscgit |
|
4c8ea3ef | imp | Aug. 11, 2022, 11:29 p.m. | stand: Go back to a.out format for /boot/loader
Turns out there's two hidden a.out dependencies. pxeldr.S assumes it has access to the a.out header from /boot/loader and cdboot.S assumes that /boot/loader is also a.out and doesn't use boot2. So, go back to making a.out files for these and adjust the size checks to use ls, but we only need to check loader.bin. Trim the size we check against by 2,000. The difference in size between loader and loader.bin is about 3000 bytes, but clang15 produces binaries that are a smidge bigger so we need to relax the check just a little and accept some additional risk for the moment. Add some comments to loader's Makefile about this. Sponsored by: Netflix Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D36142cgit |
|
ac175bd3 | arichardson | Aug. 11, 2022, 10:18 p.m. | Install working pkgconfig .pc files for compat libraries
The default ones are install them to /usr/libdata/pkgconfig, and we can't use this path for compat libraries, so we use /usr/lib<suffix>/pkgconfigi here. Test Plan: grep -rn libdir= ./usr/lib32/pkgconfig/*.pc MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D34939cgit |
|
92b5b97c | mjg | Aug. 11, 2022, 10:11 p.m. | mac: s/0/false/ in macros denoting probe enablement
No functional changes.cgit |
|
f73e4f6c | mjg | Aug. 11, 2022, 9:50 p.m. | routing: unbreak the build of a bunch of kernels
Sponsored by: Rubicon Communications, LLC ("Netgate")cgit |
|
648edd63 | mjg | Aug. 11, 2022, 9:35 p.m. | x86: remove MP_WATCHDOG
It does not work with ULE, which is the default scheduler for over a decade. Reviewed by: emaste, kib Differential Revision: https://reviews.freebsd.org/D36094cgit |
|
5244006f | mav | Aug. 11, 2022, 8:53 p.m. | ctladm: Fix typo in command line help.
MFC after: 1 weekcgit |
|
d8b42ddc | melifaro | Aug. 11, 2022, 8:36 p.m. | rtsock: subscribe to ifnet eventhandlers instead of direct calls.
Stop treating rtsock as a "special" consumer and use already-provided ifaddr arrival/departure notifications. MFC after: 2 weeks Test Plan: ``` 21:05 [0] m@devel0 route -n monitor -> ifconfig vtnet0.2 create got message of size 24 on Tue Aug 9 21:05:44 2022 RTM_IFANNOUNCE: interface arrival/departure: len 24, if# 3, what: arrival got message of size 168 on Tue Aug 9 21:05:54 2022 RTM_IFINFO: iface status change: len 168, if# 3, link: up, flags:<BROADCAST,RUNNING,SIMPLEX,MULTICAST> -> ifconfig vtnet0.2 destroy got message of size 24 on Tue Aug 9 21:05:54 2022 RTM_IFANNOUNCE: interface arrival/departure: len 24, if# 3, what: departure ``` Reviewed By: glebius Differential Revision: https://reviews.freebsd.org/D36095 MFC after: 2 weekscgit |
|
693f88c9 | kevans | Aug. 11, 2022, 4:42 p.m. | iconv_std: complete the //IGNORE support
Previously, it would only ignore failures due to csmapper conversion failure. It may be the case that the input string contains invalid sequences that also need to be ignored. A good example of //IGNORE application is sanitizing user- or remotely- specified strings that are expected to be UTF-8; perhaps as part of a pipeline that will feed the result into a system less tested against or tolerant of illegal UTF-8 sequences. Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D34345cgit |
|
2300a22c | kevans | Aug. 11, 2022, 4:42 p.m. | libc: iconv: add mb_cur_min for encoder traits
A future commit will actually implement //IGNORE so that applications using base iconv can, e.g., sanitize UTF-8 strings. To do this, the iconv_std module needs to be able to determine the minimum width for any given encoding so that it can skip that many bytes in the input buffer. This is mainly an issue for UTF-16 and UTF-32. This commit bumps shlib versions to 5 for libiconv modules to reflect the ABI change. It also fixes OptionalObsoleteFiles to remove the libiconv modules if WITHOUT_ICONV is in use. re: _ENCODING_MB_CUR_MIN, note that this file (citrus_stdenc_template.h) is included at the bottom of an encoding *implementation*, so the implementation is free to #define it prior. UTF1632 is a good example, as it redefines the minimum to be a property on the encodinginfo, and the minimum is set to 2 or 4 bytes for UTF-16 and UTF-32 respectively. Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D34344cgit |