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.
9b88ecd6 | kbowling | May 17, 2022, 3:15 a.m. | igc: Increase rx_buffer_size local variable to 32b
Apply 6987c47569b377f4b6eba9966afdedfb1b39fca8 to igc. This is not expected to have any benefit on current parts with current observed PBA sizes but will avoid surprises if they are increased in future chips. Approved by: grehan MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D35217cgit |
|
aa9f97af | glebius | May 17, 2022, 2:08 a.m. | tests/unix_dgram: account for size of sender address in the filling cycle
This fixes test failure with large net.local.dgram.recvspace values.cgit |
|
ecdc04d0 | asomers | May 16, 2022, 10:32 p.m. | makefs: fix calculation of file sizes
When a new FS image is created we need to calculate how much space each file is going to consume. Fix two bugs in that logic: 1) Count the space needed for indirect blocks for large files. 1) Normally the trailing data of a file is written to a block of frag size, 4 kB by default. However for files that use indirect blocks a full block is allocated, 32kB by default. Take that into account. Adjust size calculations to match what is done in ffs_mkfs routine: * Depending on the UFS version the superblock is stored at a different offset. Take that into account. * Add the cylinder group block size. * All of the above has to be aligned to the block size. Finally, Remove "ncg" variable. It's always 1 and it was used to multiply stuff. PR: 229929 Reviewed by: mckusick MFC after: 2 weeks Sponsored by: Semihalf Submitted by: Kornel Dulęba <mindal@semihalf.com> Differential Revision: https://reviews.freebsd.org/D35131 Differential Revision: https://reviews.freebsd.org/D35132cgit |
|
c1e0431c | pkubaj | May 16, 2022, 9:56 p.m. | riscv: also enable includes, stats and stats_client in libclang_rt
Reviewed by: dim (earlier version) Differential Revision: https://reviews.freebsd.org/D34735 MFC after: 3 dayscgit |
|
3020bfe1 | dchagin | May 16, 2022, 7:53 p.m. | linux(4): Fix arm64 syscalls.master layout
MFC after: 2 weekscgit |
|
41068268 | dchagin | May 16, 2022, 6:57 p.m. | libsysdecode: Fix decoding of SCHED_ flags
Use sys/sched.h where SCHED_ flags are defined. Reviewed by: emaste Differential revision: https://reviews.freebsd.org/D35208 MFC after: 2 weekscgit |
|
88a15f72 | bz | May 16, 2022, 6:07 p.m. | iwlwifi: import two fixes from linux v5.18-rc7
Import two changes from torvalds/linux.git at tag: v5.18-rc7: b20bdd9cc9740ac1f2138adab25ddd51245c67be iwlwifi: mvm: Don't fail if PPAG isn't supported 7635a1ad8d92dcc8247b53f949e37795154b5b6f iwlwifi: iwl-dbg: Use del_timer_sync() before freeing Sponsored by: The FreeBSD Foundation MFC after: 3 dayscgit |
|
275172b5 | bz | May 16, 2022, 4:18 p.m. | iwlwifi: update firmware
Update to the latest iwlwifi firmware based on linux-firmware at b19cbdca78ab2adfd210c91be15a22568e8b8cae (tag: 20220509) and update firmware module Makefiles accordingly. Sponsored by: The FreeBSD Foundation MFC after: 3 dayscgit |
|
fac1f593 | bz | May 16, 2022, 3:54 p.m. | iwlwifi: update driver from iwlwifi-next
Import code update from iwlwifi-next at e89600ebeeb14d18c0b062837a84196f72542830. This amongst other things removes the deprecated BCAST_FILTERING option, which we had disabled before due to firmware issues. Also prepares us for the next firmware update. The "enable_ini" module option has become an integer with a sysctl proc equivalent handler. Disable the module parameter changing for the moment until we'll have working LinuxKPI support or implement it as SYSCTL_PROC in FreeBSD directly. Sponsored by: The FreeBSD Foundation MFC after: 3 dayscgit |
|
05d6f4d6 | bz | May 16, 2022, 3:38 p.m. | LinuxKPI: 802.11 add rfkill_soft_blocked()
Add rfkill_soft_blocked() to the list of things to implement in preparation for an iwlwifi update. Sponsored by: The FreeBSD Foundation MFC after: 3 dayscgit |
|
48a1a6be | kbowling | May 15, 2022, 11:17 p.m. | igc: Fix typo in PCI ID define usage
Reported by: jenkins Fixes: bf0aa72f1f59 igc: Update PCI IDs MFC after: 3 dayscgit |
|
bf0aa72f | kbowling | May 15, 2022, 10:09 p.m. | igc: Update PCI IDs
I226-K PCI ID got clarified by intel. Add a new I226 ID while here. Approved by: grehan MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D35218cgit |
|
187d7e98 | mckusick | May 15, 2022, 10:02 p.m. | Reduce code nesting in readsuper().
No functional change.cgit |
|
edc5b6ea | tuexen | May 14, 2022, 10:38 a.m. | sctp: use sb_avail() when accessing sb_acc for reading
This is a cleanup to simplify a patch for PR 260116. PR: 260116 MFC after: 3 dayscgit |
|
0b4f2ab0 | rmacklem | May 15, 2022, 6:51 p.m. | krpc: Fix NFS-over-TLS for KTLS1.3
When NFS-over-TLS uses KTLS1.3, the client can receive post-handshake handshake records. These records can be safely thown away, but are not handled correctly via the rpctls_ct_handlerecord() upcall to the daemon. Commit 373511338d95 changed soreceive_generic() so that it will only return ENXIO for Alert records when MSG_TLSAPPDATA is specified. As such, the post-handshake handshake records will be returned to the krpc. This patch modifies the krpc so that it will throw these records away, which seems sufficient to make NFS-over-TLS work with KTLS1.3. This change has no effect on the use of KTLS1.2, since it does not generate post-handshake handshake records. MFC after: 2 weekscgit |