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.
31ee3a33 | kd | Aug. 16, 2022, 9:07 a.m. | TPM: do not set device description if probe fails
device_set_desc should be called only if driver probes successfully. Approved by: mw(mentor) Reviewed by: mw, kd MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D35998cgit |
|
a8dc6738 | np | Aug. 16, 2022, 8:08 a.m. | cxgbe(4): Add a knob to request that clocks be gated on suspend.
MFC after: 3 months Sponsored by: Chelsio Communicationscgit |
|
a7d081a8 | np | Aug. 16, 2022, 8:07 a.m. | cxgbe(4): Decode and display some more bits in the PL interrupt handler.
MFC after: 1 week Sponsored by: Chelsio Communicationscgit |
|
2bb28b5f | np | Aug. 16, 2022, 8:06 a.m. | cxgbe(4): Update firmwares to 1.27.0.0.
Changes since 1.26.6.0 are listed here. This list comes from the Release Notes for "Chelsio Unified Wire 3.17.0.0 for Linux" dated 2022-07-29. Fixes ----- BASE: - Enabled all MA parity interrupt bits. - Use config file value to override number of rx channel. nrxch=1 was not handled in the firmware. - Replaced read only registers with new registers EDC_H_BIST_USER_WDATA0, EDC_H_BIST_USER_WDATA1 and EDC_H_BIST_CMD_LEN to dump the uP memory parity error status registers. - 10G simplex module support enabled. Obtained from: Chelsio Communications MFC after: 1 month Sponsored by: Chelsio Communicationscgit |
|
66a3e513 | ganbold | Aug. 16, 2022, 7:55 a.m. | Add RockChip rk809/rk817 pmic support to existing
RockChip pmic drivers. Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D36149cgit |
|
b80572fe | lwhsu | Aug. 16, 2022, 5:18 a.m. | libc/locale tests: temporarily skip lib.libc.locale.c16rtomb_test.c16rtomb_utf_8_test
This test case starts failing after iconv changes on 2022-08-11. PR: 265871 Sponsored by: The FreeBSD Foundationcgit |
|
5f33eb72 | philip | Aug. 16, 2022, 2:54 a.m. | contrib/tzdata: import tzdata 2022c
Changes: https://github.com/eggert/tz/blob/2022c/NEWS MFC after: 1 daycgit |
|
f5d5282c | philip | Aug. 16, 2022, 2:53 a.m. | ObsoleteFiles: don't delete zoneinfo/GMT
The tzdata2022b import restored the zoneinfo/GMT link. Don't delete it again with 'make delete-old'. MFC after: 1 daycgit |
|
82493ff7 | mckusick | Aug. 15, 2022, 8:45 p.m. | Add a description of soft updates journaling to tunefs(8).
Add a descrition to the tunefs(8) -j (journal enablement) flag that explains what soft updates journaling does, the tradeoffs to using it, and the limitations that it imposes. Requested by: Graham Perrin PR: 261944 Sponsored by: The FreeBSD Foundationcgit |
|
88a782fc | mjg | Aug. 15, 2022, 8:38 p.m. | routing: G/C rt_exportinfo declaration
Sponsored by: Rubicon Communications, LLC ("Netgate")cgit |
|
20f68c5f | schweikh | Aug. 15, 2022, 8:15 p.m. | Indicate that xrefs to *roff,tbl,eqn et al are found in ports/textproc/groff. | |
da36b5d2 | dim | Aug. 15, 2022, 6:48 p.m. | Adjust function definition in riscv's db_trace.c to avoid clang 15 warning
With clang 15, the following -Werror warning is produced: sys/riscv/riscv/db_trace.c:56:23: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] db_md_list_watchpoints() ^ void This is because db_md_list_watchpoints() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 dayscgit |
|
02dd51c9 | dim | Aug. 15, 2022, 6:48 p.m. | Adjust function definitions in mp_cpudep.c.c to avoid clang 15 warnings
With clang 15, the following -Werror warnings are produced: sys/powerpc/booke/mp_cpudep.c:54:20: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] cpudep_ap_bootstrap() ^ void sys/powerpc/booke/mp_cpudep.c:97:16: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] cpudep_ap_setup() ^ void This is because cpudep_ap_bootstrap() and cpudep_ap_setup() are declared with (void) argument lists, but defined with empty argument lists. Make the definitions match the declarations. MFC after: 3 dayscgit |
|
ff490346 | dim | Aug. 15, 2022, 6:48 p.m. | Adjust function definition in moea64_native.c to avoid clang 15 warning
With clang 15, the following -Werror warning is produced: sys/powerpc/aim/moea64_native.c:306:22: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] moea64_install_native() ^ void This is because moea64_install_native() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 dayscgit |
|
3446738e | dim | Aug. 15, 2022, 6:48 p.m. | Fix unused variable warning in mmu_radix.c
With clang 15, the following -Werror warning is produced: sys/powerpc/aim/mmu_radix.c:5409:22: error: variable 'freed' set but not used [-Werror,-Wunused-but-set-variable] int allfree, field, freed, idx; ^ The 'freed' variable is only used when PV_STATS is defined. Ensure it is only declared and set in that case. MFC after: 3 dayscgit |