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.
04eeddc0 | dim | May 14, 2022, 11:44 a.m. | Merge llvm-project main llvmorg-14-init-17616-g024a1fab5c35
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-14-init-17616-g024a1fab5c35. PR: 261742 MFC after: 2 weekscgit |
|
0eae32dc | dim | May 14, 2022, 11:44 a.m. | Merge llvm-project main llvmorg-14-init-13186-g0c553cc1af2e
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-14-init-13186-g0c553cc1af2e. PR: 261742 MFC after: 2 weekscgit |
|
4824e7fd | dim | May 14, 2022, 11:43 a.m. | Merge llvm-project main llvmorg-14-init-11187-g222442ec2d71
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-14-init-11187-g222442ec2d71. PR: 261742 MFC after: 2 weekscgit |
|
5e801ac6 | dim | May 14, 2022, 11:43 a.m. | Merge llvm-project main llvmorg-14-init-10223-g401b76fdf2b3
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-14-init-10223-g401b76fdf2b3. PR: 261742 MFC after: 2 weekscgit |
|
349cc55c | dim | May 14, 2022, 11:43 a.m. | Merge llvm-project main llvmorg-14-init-10186-gff7f2cfa959b
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvmorg-14-init-10186-gff7f2cfa959b. PR: 261742 MFC after: 2 weekscgit |
|
cb2ae616 | dchagin | May 14, 2022, 11:07 a.m. | sysvsem: Fix a typo
Per jamie@ rpr can be NULL if the jail is created with sysvsem=disable. But at least it doesn't appear to be fatal, since rpr is never dereferenced but is only compared to other prison pointers. Reviewed by: jamie Differential revision: https://reviews.freebsd.org/D35198 MFC after: 2 weekscgit |
|
b6c8f461 | dchagin | May 14, 2022, 11:06 a.m. | sysvsem: Style(9)
MFC after: 2 weekscgit |
|
f0b0fdf1 | dchagin | May 14, 2022, 11:06 a.m. | sysvsem: Trim traiing whitespace
MFC after: 2 weekscgit |
|
448c505c | jhibbits | May 14, 2022, 1:24 a.m. | libm: Add feenableexcept and fedisableexcept to library on powerpc
Summary: These functions are missing from the library itself, and exist solely in the header. This breaks a few ports that expect libm to have the symbols in the library itself. Questions on MFC-ability: Can this be MFC'd to 13.2, and how? Reviewers: imp, emaste, kib Reviewed By: kib Differential Revision: https://reviews.freebsd.org/D35204cgit |
|
20917cac | vangyzen | May 13, 2022, 4:38 p.m. | sysv test: properly wait for children
In the msg and shm tests, if the child exited before the parent entered sigsuspend(), the test would hang and time out. This was also a problem in the sem test, but the misuse of atf_tc_pass() masked it. Adding a short sleep before the sigsuspend() calls made the hang 100% reliable. With the same sleep in the new version, the test passes reliably. Remove calls to atf_tc_pass(). The call in the sem test broke the test by exiting prematurely, after only one child out of five had finished. The other two were harmless but unhelpful. Reduce a one-second sleep to a more reasonable duration so I can quickly run many iterations of the test. Where feasible, assert that wait() returns the child PID. While I'm here, use the more succinct ATF_REQUIRE* instead of if/atf_tc_fail/else. Flush stdout before forking to avoid double-flush. Use errx() when errno is irrelevant. Don't use ATF_REQUIRE* in children. Apparently, the output doesn't get saved. The exit status works, so it fails correctly, but silently. Re-enable the test in CI. PR: 233649 Reviewed by: markj (previous version) MFC after: 1 week Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D35187cgit |
|
9d7cefc2 | eugen | May 13, 2022, 9:30 p.m. | ipfw.8: spell "layer2" consistently throughout the manual page
MFC after: 1 weekcgit |
|
808b7d80 | glebius | May 13, 2022, 8:32 p.m. | mbuf: remove PH_vt alias for mbuf packet header persistent shared data
Mechanical sed change s/PH_vt\.vt_nrecs/vt_nrecs/gcgit |
|
9573cc35 | kp | May 13, 2022, 6:05 p.m. | rtsock: fix a stack overflow
struct sockaddr is not sufficient for buffer that can hold any sockaddr_* structure. struct sockaddr_storage should be used. Test: ifconfig epair create ifconfig epair0a inet6 add 2001:db8::1 up ndp -s 2001:db8::2 02:86:98:2e:96:0b proxy # this triggers kernel stack overflow Reviewed by: markj, kp Differential Revision: https://reviews.freebsd.org/D35188cgit |
|
d966efcc | dchagin | May 13, 2022, 5:52 p.m. | fusefs tests: Remove an unused variable.
Reviewed by: asomers Differential revision: https://reviews.freebsd.org/D35185 MFC after: 2 weekscgit |
|
147585b4 | brd | May 13, 2022, 4:35 p.m. | bsdinstall: allow whitelabeling the installer
Override OSNAME to change the name of the OS in the installer. This is a first step, the shell changes will be separate. Reviewed by: allanjude Approved by: allanjude Differential Revision: https://reviews.freebsd.org/D34878 Sponsored by: Rubicon Communications, LLC ("Netgate")cgit |