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.
f8f1e9cd | imp | May 18, 2022, 12:02 a.m. | bsd-family-tree: FreeBSD 13.1
Now that 13.1 has been announced, add today's date UTC as the release date. MFC After: 3 dayscgit |
|
12b37f8f | jhb | May 17, 2022, 11:33 p.m. | cxgbe: Deactivate upper layer drivers (like TOE) during detach.
Reviewed by: np Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D35237cgit |
|
892b1874 | bz | May 17, 2022, 10:33 p.m. | net80211: remove (optional) RSN from preobereq
802.11i-2004 did not specify that RSN can be added to the probereq, only to the proberesp (and others) yet it was added in what seems was b032f27c365b992e9d8e42214183b39acfb8c6ac (multi-BSS support). 802.11-2020 does not list the IE either for probereq so remove it. Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Okayed by: adrian Differential Revision: https://reviews.freebsd.org/D34893cgit |
|
c678572e | olivier | May 17, 2022, 9:33 p.m. | Prevent running sigwait tests in parallel
test_sig_discard_ign_* could not run at the same time. Approved by: dchagin Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D35236cgit |
|
f5024381 | pkubaj | May 17, 2022, 7:46 p.m. | powerpc: enable supported sanitizers on powerpc64*
1. Merge LLVM's 315d792130258a9b7250494be8d002ebb427b08f, adding support for FreeBSD/powerpc64*. 2. Add sanitizer list to lib/libclang_rt/Makefile, taken from the list of libraries that llvm-devel port builds. 3. powerpc64le supports the same sanitizers that powerpc64, but powerpc64le also supports xray* sanitizers. 4. lib/libclang_rt/xray/Makefile hardcodes amd64-specific files, so that needs to be conditionalized. 5. Sanitizers are not enabled for powerpc, because powerpc supports only builtins and profile. Reviewed by: dim Differential Revision: https://reviews.freebsd.org/D35228 Relnotes: yes MFC after: 3 dayscgit |
|
9bf4983f | naddy | May 17, 2022, 6:23 p.m. | truss: add ppoll(2) argument decoding
PR: 264029 Approved by: emaste MFC after: 3 dayscgit |
|
6890b588 | glebius | May 17, 2022, 5:10 p.m. | sockbuf: improve sbcreatecontrol()
o Constify memory pointer. Make length unsigned. o Make it never fail with M_WAITOK and assert that length is sane.cgit |
|
b46667c6 | glebius | May 17, 2022, 5:10 p.m. | sockbuf: merge two versions of sbcreatecontrol() into one
No functional change.cgit |
|
eac7f079 | glebius | May 17, 2022, 5:10 p.m. | unix: garbage collect unp_dispose_mbuf() for brevity | |
2e5bf7c4 | glebius | May 17, 2022, 5:10 p.m. | unix: fix mbuf leak on close of socket with data
Fixes: 1f32cef47189403e9e70b1893c731c68b97b964ecgit |
|
386b1a03 | kp | May 17, 2022, 1:55 p.m. | pf: allocate krule->timestamp in pf_krule_alloc()
There are three calls which can allocate a new rule. DIOCADDRULE, DIOCADDRULENV and DIOCCHANGERULE. The first two call pf_ioctl_addrule(), but DIOCCHANGERULE does not. As a result rules created through DIOCCHANGERULE do not have the timestamp per-cpu memory allocated, and we panic when the rule is exported with pf_krule_to_nvrule(). Sponsored by: Rubicon Communications, LLC ("Netgate")cgit |
|
71fe907d | wulf | May 17, 2022, 12:10 p.m. | LinuxKPI: Switch irq_work implementation back to standard taskqueue
from fast one as dmabuf does not run callbacks from critical sections since drm-kmod 5.7. Consumers which requires fair irq_work like drm-kmod 5.4 must #define LKPI_IRQ_WORK_USE_FAST_TQ somewhere in source file before linux/irq_work.h inclusion to enable old behavior. MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D35052cgit |
|
bec4576e | wulf | May 17, 2022, 12:10 p.m. | LinuxKPI: Do not use forward declaration for struct llist_node
in linux/irq_work.h as irq_work structure contains full version of llist_node rather than reference to it. MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D35052cgit |
|
fa30bff5 | wulf | May 17, 2022, 12:10 p.m. | LinuxKPI: IRQ work add TASKQUEUE_FAIL_IF_PENDING flag to taskqueue_enqueue
call to match Linux. MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D35052cgit |
|
b6f87b78 | wulf | May 17, 2022, 12:10 p.m. | LinuxKPI: Implement kthread_worker related functions
Kthread worker is a single thread workqueue which can be used in cases where specific kthread association is necessary, for example, when it should have RT priority or be assigned to certain cgroup. This change implements Linux v4.9 interface which mostly hides kthread internals from users thus allowing to use ordinary taskqueue(9) KPI. As kthread worker prohibits enqueueing of already pending or canceling tasks some minimal changes to taskqueue(9) were done. taskqueue_enqueue_flags() was added to taskqueue KPI which accepts extra flags parameter. It contains one or more of the following flags: TASKQUEUE_FAIL_IF_PENDING - taskqueue_enqueue_flags() fails if the task is already scheduled to execution. EEXIST is returned and the ta_pending counter value remains unchanged. TASKQUEUE_FAIL_IF_CANCELING - taskqueue_enqueue_flags() fails if the task is in the canceling state and ECANCELED is returned. Required by: drm-kmod 5.10 MFC after: 1 week Reviewed by: hselasky, Pau Amma (docs) Differential Revision: https://reviews.freebsd.org/D35051cgit |