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.
840d7237 | gbe | Nov. 19, 2021, 7:04 p.m. | lpr(1): Fix a typo in a source code comment
-s /debuging/debugging/ MFC after: 3 dayscgit |
|
d7125850 | gbe | Nov. 19, 2021, 6:59 p.m. | ixl(4): Fix a typo in a sysctl description
MFC after: 3 dayscgit |
|
8acb6621 | gbe | Nov. 19, 2021, 6:51 p.m. | iwm(4): Fix a typo in a source code comment
- s/availabe/available/ MFC after: 3 dayscgit |
|
3e5ddef0 | gbe | Nov. 19, 2021, 6:50 p.m. | firewire(4): Fix a typo in a source code comment
- s/unavailabe/unavailable/ MFC after: 3 dayscgit |
|
5e21882b | gbe | Nov. 19, 2021, 6:29 p.m. | iscsi(4): Fix a typo in a source code comment
- s/conditon/condition/ MFC after: 3 dayscgit |
|
8b11850f | gbe | Nov. 19, 2021, 6:26 p.m. | TWL: Fix a typo in a source code comment
- s/maxium/maximum/ MFC after: 3 dayscgit |
|
975e2e3f | gbe | Nov. 19, 2021, 6:19 p.m. | ppbus(4): Fix a typo in source code comment
- s/quering/querying/ Obtained from: NetBSD MFC after: 3 dayscgit |
|
bebff615 | gbe | Nov. 19, 2021, 6:17 p.m. | ffs_softdep: Fix a typo in a source code comment
- s/conditonally/conditionally/ MFC after: 3 dayscgit |
|
b4fbc855 | gbe | Nov. 19, 2021, 6:16 p.m. | cc_newreno(4): Fix a typo in a source code comment
- s/conditons/conditions/ MFC after: 3 dayscgit |
|
15b5c347 | gbe | Nov. 19, 2021, 6:13 p.m. | sched_ule(4): Fix two typo in source code comments
- s/conditons/conditions/ - s/unconditonally/unconditionally/ MFC after: 3 dayscgit |
|
b2e84316 | andrew | Nov. 19, 2021, 11:40 a.m. | Use a builtin where possible in msun
Some of the functions in msun can be implemented using a compiler builtin function to generate a small number of instructions. Implement this support in fma, fmax, fmin, and sqrt on arm64. Care must be taken as the builtin can be implemented as a function call on some architectures that lack direct support. In these cases we need to use the original code path. As we don't set errno on failure build with -fno-math-errno so the toolchain doesn't convert a builtin into a function call when it detects a failure, e.g. gcc will add a call to sqrt when the input is negative leading to an infinite loop. Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D32801cgit |
|
2e8ff4d1 | andrew | Nov. 19, 2021, 11:40 a.m. | Switch to Arm Optimized Routines for mem* & str*
These are the updated version of the older Cortex Strings Library we previously used. The Arm Optimized Routines also support CPU features that are currently in development on FreeBSD, e.g. Branch Target Identification (BTI). Rather than add BTI support to the old code it's easier to just use the maintained version. Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D32774cgit |
|
f6842865 | ygy | Nov. 19, 2021, 8:58 a.m. | uuid(3): Document return values
PR: 204449 MFC after: 3 days Reported by: Michael Cress <michael.cress@cress.us>cgit |
|
1bfdb812 | avg | Nov. 19, 2021, 8 a.m. | iflib_stop: drain rx tasks to prevent any data races
iflib_stop modifies iflib data structures that are used by _task_fn_rx, most prominently the free lists. So, iflib_stop has to ensure that the rx task threads are not active. This should help to fix a crash seen when iflib_if_ioctl (e.g., SIOCSIFCAP) is called while there is already traffic flowing. The crash has been seen on VMWare guests with vmxnet3 driver. My guess is that on physical hardware the couple of 1ms delays that iflib_stop has after disabling interrupts are enough for the queued work to be completed before any iflib state is touched. But on busy hypervisors the guests might not get enough CPU time to complete the work, thus there can be a race between the taskqueue threads and the work done to handle an ioctl, specifically in iflib_stop and iflib_init_locked. PR: 259458 Reviewed by: markj MFC after: 3 weeks Differential Revision: https://reviews.freebsd.org/D32926cgit |
|
8502220d | imp | Nov. 19, 2021, 7:10 a.m. | Revert "Bootstrap: Prune building from pre-FreeBSD 11 support"
This reverts commit a420a672bc53bd3928626aa5d0ec5b41c0471356. kevans pointed out some potential problems here, so reverting until I can fix them.cgit |