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.
9597f7cb | bz | June 26, 2022, 6:50 p.m. | Revert "LinuxKPI: 802.11: fix iwlwifi fw assert with older chipsets"
This reverts commit 013e516dc9b1b32e9422ab02a875a05fc2d32f39.cgit |
|
942e234d | fernape | June 26, 2022, 4:53 p.m. | Remove references to named(8)
named(8) hasn't been in base for some time. Remove all references to it in manual pages. Approved by: manpages (Pau Amma) Differential Revision: https://reviews.freebsd.org/D35586cgit |
|
924226fb | melifaro | June 26, 2022, 1:25 p.m. | testing: move atf-pytest-wrapper to /usr/libexec
Move pytest wrapper to the collection of the other atf wrappers in libexec. It solves the problem of combining bits & pieces from bsd.test.mk and bgs.prog.mk to address "test binary, but not the suite binary". Reviewed by: kp Differential Revision: https://reviews.freebsd.org/D35604 MFC after: 2 weekscgit |
|
fdfeaa66 | tsoome | June 26, 2022, 5:55 a.m. | Support of optional PMC classes.
Reviewed by: mhorne Differential Revision: https://reviews.freebsd.org/D32316cgit |
|
b6e28991 | tsoome | June 26, 2022, 5:31 a.m. | System wide and NUMA domain wide counters support. PMC classes for ARM DMC-620 and CMN-600.
Add support for system wide and NUMA domain wide counters support. Add 3 new PMC classes for ARM DMC-620 and CMN-600 controllers PMU. Reviewed by: mhorne Sponsored By: ARM Sponsored By: Ampere Computing Differential Revision: https://reviews.freebsd.org/D35342cgit |
|
33a0803f | melifaro | June 26, 2022, 7:28 a.m. | routing: fix debug headers added in 6fa8ed43ee0c #2.
Move debug declaration out of COMPAT_FREEBSD32 in rtsock.c MFC after: 2 weekscgit |
|
da33f6d7 | alc | June 26, 2022, 6:01 a.m. | iommu_gas: Tidy up
Move a comment to the code that it describes. Improve the wording. Style fixes. MFC after: 2 weekscgit |
|
0e87bab6 | melifaro | June 25, 2022, 11:05 p.m. | routing: fix debug headers added in 6fa8ed43ee0c.
- move debug headers out of COMPAT_FREEBSD32 in rtsock.c - remove accidentally-added LOG_ defines from syslog.h MFC after: 2 weekscgit |
|
76179e40 | melifaro | June 25, 2022, 10:08 p.m. | routing: fix syslog include for rtsock.c
MFC after: 2 weekscgit |
|
9a75209d | melifaro | June 25, 2022, 9:16 p.m. | routing: add tests/sys/net/routing to mtree
MFC after: 2 weekscgit |
|
6fa8ed43 | melifaro | June 25, 2022, 7:53 p.m. | routing: improve debugging.
Use unified guidelines for the severity across the routing subsystem. Update severity for some of the already-used messages to adhere the guidelines. Convert rtsock logging to the new FIB_ reporting format. MFC after: 2 weekscgit |
|
c260d5cd | melifaro | June 25, 2022, 7:35 p.m. | routing: fix crash when RTM_CHANGE results in no-op for the multipath
route. Reporting logic assumed there is always some nhop change for every successful modification operation. Explicitly check that the changed nexthop indeed exists when reporting back to userland. MFC after: 2 weeks Reported by: Claudio Jeker <claudio.jeker@klarasystems.com> Tested by: Claudio Jeker <claudio.jeker@klarasystems.com>cgit |
|
bd03f10a | melifaro | June 25, 2022, 7:29 p.m. | routing: add multipath pytest tests
Differential Revision: https://reviews.freebsd.org/D31084cgit |
|
8eb2bee6 | melifaro | June 25, 2022, 7:25 p.m. | testing: Add basic atf support to pytest.
Implementation consists of the pytest plugin implementing ATF format and a simple C++ wrapper, which reorders the provided arguments from ATF format to the format understandable by pytest. Each test has this wrapper specified after the shebang. When kyua executes the test, wrapper calls pytest, which loads atf plugin, does the work and returns the result. Additionally, a separate python "package", `/usr/tests/atf_python` has been added to collect code that may be useful across different tests. Current limitations: * Opaque metadata passing via X-Name properties. Require some fixtures to write * `-s srcdir` parameter passed by the runner is ignored. * No `atf-c-api(3)` or similar - relying on pytest framework & existing python libraries * No support for `atf_tc_<get|has>_config_var()` & `atf_tc_set_md_var()`. Can be probably implemented with env variables & autoload fixtures Differential Revision: https://reviews.freebsd.org/D31084 Reviewed by: kp, ngiecgit |
|
c38da70c | melifaro | June 25, 2022, 6:54 p.m. | routing: fix RTM_CHANGE nhgroup updates.
RTM_CHANGE operates on a single component of the multipath route (e.g. on a single nexthop). Search of this nexthop is peformed by iterating over each component from multipath (nexthop) group, using check_info_match_nhop. The problem with the current code that it incorrectly assumes that `check_info_match_nhop()` returns true value on match, while in reality it returns an error code on failure). Fix this by properly comparing the result with 0. Additionally, the followup code modified original necthop group instead of a new one. Fix this by targetting new nexthop group instead. Reported by: thj Tested by: Claudio Jeker <claudio.jeker@klarasystems.com> Differential Revision: https://reviews.freebsd.org/D35526 MFC after: 2 weekscgit |