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.
a92c6b24 | rwatson | Feb. 27, 2021, 4:25 p.m. | Add a comment on why the call to mac_vnode_relabel() might be in the wrong
place -- in the VOP rather than vn_setexttr() -- and that it is for historic reasons. We might wish to relocate it in due course, but this way at least we document the asymmetry.cgit |
|
9d9fd8b7 | mav | Feb. 27, 2021, 3:40 p.m. | Micro-optimize OOA queue processing.
- Move ctl_get_cmd_entry() calls from every OOA traversal to when the requests first inserted, storing seridx in struct ctl_scsiio. - Move some checks out of the loop in ctl_check_ooa(). - Replace checks for errors that can not happen with asserts. - Transpose ctl_serialize_table, so that any OOA traversal accessed only one row (cache line). Compact it from enum to uint8_t. - Optimize static branch predictions in hottest places. Due to O(n) nature on deep LUN queues this can be the hottest code path in CTL, and additional 20% of IOPS I see in some 4KB I/O tests are good to have in reserve. About 50% of CPU time here according to the profiles is now spent in two memory accesses per traversed request in OOA. Sponsored by: iXsystems, Inc. MFC after: 2 weekscgit |
|
becaac39 | tsoome | Feb. 27, 2021, 9:26 a.m. | loader: use display pixel density for font autoselection
Calculate font size from 16 density independent pixels (dp) by using: size = 16 * ppi/160 * display_factor We are specifying font size 16dp, and assuming 1dp = 160ppi. Also apply scaling factor 2 (display_factor). MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D28849cgit |
|
c01da939 | imp | Feb. 27, 2021, 8:23 a.m. | cardbus: Be sure to acquire Giant when calling into newbus
Acquire Giant in cardbus_detach_card. This used to be done above us, but no more. Tested by: kargl@ MFC After: 3 dayscgit |
|
c170aa9f | mm | Feb. 26, 2021, 11:05 p.m. | zfs: add missing checks for unsupported features
After the merge of OpenZFS master-9312e0fd1 it has become possible to import ZFS pools witn an active org.illumos:edonr feature on FreeBSD, leading to a panic. In addition, "zpool status" reported all pools without edonr as upgradable and "zpool upgrade -v" lists edonr in the list of upgradable features. This is an accepted but not yet included bugfix by upstream. Obtained from: https://github.com/openzfs/zfs/pull/11653 Differential Revision: https://reviews.freebsd.org/D28935 Reported by: garga (on freebsd-current@) Reviewed by: freqlabs X-MFC-with: ba27dd8be821792e15bdabfac69fd6cab0cf9dd3cgit |
|
9e83a6a5 | rscheff | Feb. 26, 2021, 9:31 p.m. | Include new data sent in PRR calculation
Reviewed By: #transport, kbowling MFC after: 3 days Sponsored by: NetApp, Inc. Differential Revision: https://reviews.freebsd.org/D28941cgit |
|
bc3bba70 | debdrup | Feb. 26, 2021, 7:07 p.m. | inetd: Add examples from manual page and other sources
The manual page lists a bunch of examples, some of which already exist in this file. Since it's both easier to remember when all examples are listed in the same location, move examples so they get installed into /etc/inetd.conf This also means users won't have to copy-paste, but can simply uncomment one or more services to use them. As such, it also becomes necessary to remove the examples from the manual page, so instead add a note explaining where the previous examples as well as others may be found. Cross-references, including to ports, have also been added where applicable. The rsync example has lived in the bug tracker for too long, considering how useful it can situationally be, for example when backup jobs on client devices are run through periodic(8) weekly. The microsoft-ds entry is necessary for Windows 10 compatibility (this can be confirmed with packet capturing, as it is not readily documented at time of writing). While here, remove two examples for which compatible daemons could not be found in ports. Submitted by: David Yeske <dyeske at gmail.com> (in part, prev ver) PR: 122037 Reviewed by: kevans, brueffer, lwhsu, yuripv Differential Revision: https://reviews.freebsd.org/D28882cgit |
|
34d69611 | imp | Feb. 26, 2021, 6:45 p.m. | cam: add new ASC and ASCQ values related to drive depopulation
Add 04/25 Depopulation restoration in progress, 31/04 Depopulation failed, and 31/05 Depopulation restoration failed. These are defined in SPC-6r2 (though 31/4 was added in an earlier draft). They relate to different aspects of in-progress or failed depopulation removal and restoration commands.cgit |
|
888ae572 | bapt | Feb. 26, 2021, 3:32 p.m. | nvi: fix catalog generation
Upstream broke catalog generation with some over-eagre style cleanups. This brings in my pull request. Obtained from: https://github.com/lichray/nvi2/pull/88 Differential Revision: https://reviews.freebsd.org/D28594cgit |
|
60a632f0 | asomers | Feb. 26, 2021, 3:06 p.m. | fortune: add a tip about gstat
MFC after: 3 weekscgit |
|
1bf86687 | debdrup | Feb. 26, 2021, 1:09 p.m. | etc/shells: Add a reference to the ftpd manpage
While here, also fix incorrect capitalizaitoncgit |
|
172f2fc1 | bapt | Feb. 26, 2021, 10:13 a.m. | dialog: guard macros definition to avoid redifinition
This unbreaks building libdpvcgit |
|
ec74116a | bapt | Feb. 26, 2021, 9:17 a.m. | dialog: finish update to 1.3-20210117
patch dialog.c which requires stddef for the usage of offsetof catchup on the config headercgit |
|
a96ef450 | bapt | Feb. 26, 2021, 9:16 a.m. | dialog: import dialog 1.3-20210117 | |
01b7bcd4 | bapt | Feb. 26, 2021, 9:05 a.m. | dialog: vendor import version 1.3-20210117 |