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.
8505eb5d | dchagin | May 31, 2021, 7:30 p.m. | linux(4): Convert flags before use in utimensat.
Differential Revision: https://reviews.freebsd.org/D30487 MFC after: 2 weekscgit |
|
a06c1246 | dchagin | May 31, 2021, 7:15 p.m. | linux(4): Add F_GETPIPE_SZ fcntl operation which returns the capacity
of the pipe referred by fd. Differential Revision: https://reviews.freebsd.org/D30517 MFC after: 2 weekscgit |
|
19593f77 | dchagin | May 31, 2021, 6:56 p.m. | linux(4); Retire unnecessary __packed attribute from some struct's
definition. Differential Revision: https://reviews.freebsd.org/D30482 MFC after: 2 weekscgit |
|
2d926ed7 | manu | May 31, 2021, 5:08 p.m. | arm: SOCFPGA: Add ext_resources driver
mmc_fdt_helpers needs clock and regulators. Add all the ext_resources driver to SOCFPGA conf file to fix the build Reported by: mjgcgit |
|
68c25442 | mjg | May 31, 2021, 4:32 p.m. | nfs: even up value returned by nfsrv_parsename with copyinstr
Reported by: dim Reviewed by: rmacklemcgit |
|
f62c7e54 | kib | May 31, 2021, 3:09 p.m. | Add thread_reap_barrier()
Reviewed by: hselasky,markj Sponsored by: Mellanox Technologies/NVidia Networking MFC after: 1 week Differential revision: https://reviews.freebsd.org/D30468cgit |
|
3a68546d | kib | May 31, 2021, 3:09 p.m. | quisce_cpus(): add special handling for PDROP
Currently passing PDROP to the quisce_cpus() function does not make sense. Add special meaning for it, by not waiting for the idle thread to schedule. Also avoid allocating u_int[MAXCPU] on the stack. Reviewed by: hselasky, markj Sponsored by: Mellanox Technologies/NVidia Networking MFC after: 1 week Differential revision: https://reviews.freebsd.org/D30468cgit |
|
845d7797 | kib | May 31, 2021, 3:09 p.m. | kern_thread.c: wrap too long lines
Reviewed by: hselasky, markj Sponsored by: Mellanox Technologies/NVidia Networking MFC after: 1 week Differential revision: https://reviews.freebsd.org/D30468cgit |
|
e266a0f7 | kib | May 31, 2021, 3:09 p.m. | kern linker: do not allow more than one kldload and kldunload syscalls simultaneously
kld_sx is dropped e.g. for executing sysinits, which allows user to initiate kldunload while module is not yet fully initialized. Reviewed by: markj Differential revision: https://reviews.freebsd.org/D30456 Sponsored by: The FreeBSD Foundation MFC after: 1 weekcgit |
|
7c434289 | kp | May 31, 2021, 12:19 p.m. | pf: Convenience function for optional (numeric) arguments
Add _opt() variants for the uint* functions. These functions set the provided default value if the nvlist doesn't contain the relevant value. This is helpful for optional values (e.g. when the API is extended to add new fields). While here simplify the header by also using macros to create the prototypes for the macro-generated function implementations. Reviewed by: scottl MFC after: 2 weeks Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D30510cgit |
|
27c77f42 | kp | May 31, 2021, 12:18 p.m. | libpfctl: Improve error handling in pfctl_get_states()
Ensure that we always free nvlists and other allocated memory. Reviewed by: scottl MFC after: 3 days Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D30493cgit |
|
6dbb729d | kp | May 31, 2021, 12:18 p.m. | libpfctl: fix memory leak
When we create an nvlist and insert it into another nvlist we must remember to destroy it. The nvlist_add_nvlist() function makes a copy, just like nvlist_add_string() makes a copy of the string. See also 4483fb47735c29408c72045469c9c4b3e549668b Reviewed by: scottl MFC after: 3 days Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D30492cgit |
|
ac1d7397 | manu | May 31, 2021, 12:10 p.m. | arm64: allwinner: clk: Test with the current parent freq first
Even if the clock is flagged with AW_CLK_SET_PARENT the current parent freq might be enough to get a correct divisor. So test first if we can get the expected freq before changing the parent freq.cgit |
|
bec0a5dc | donner | May 31, 2021, 11:04 a.m. | libalias: Remove LibAliasCheckNewLink
Finally drop the function in 14-CURRENT. Discussed with: kp Differential Revision: https://reviews.freebsd.org/D30275cgit |
|
bfd41ba1 | donner | May 31, 2021, 10:53 a.m. | libalias: Remove unused function LibAliasCheckNewLink
The functionality to detect a newly created link after processing a single packet is decoupled from the packet processing. Every new packet is processed asynchronously and will reset the indicator, hence the function is unusable. I made a Google search for third party code, which uses the function, and failed to find one. That's why the function should be removed: It unusable and unused. A much simplified API/ABI will remain in anything below 14. Discussed with: kp Reviewed by: manpages (bcr) MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D30275cgit |