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.
07d218f7 | delphij | Jan. 29, 2021, 7:26 a.m. | Now that the portsnap buildbox is generating the raw bits for INDEX-14,
add it to the set of INDEX files built by portsnap. Switch to INDEX-14 for main.cgit |
|
c050ea80 | jamie | Jan. 29, 2021, 5:51 a.m. | jail: Handle a parent jail when a child is added to it
It's possible when adding a jail that its dying parent comes back to life. Only allow that to happen when JAIL_DYING is specified. And if it does happen, call PR_METHOD_CREATE on it.cgit |
|
bf59049c | kevans | Jan. 29, 2021, 3:02 a.m. | du: tests: use dollar-single quotes where appropriate
No need for "foo$(printf "\t")", $'\t' is both more readable and still functional. Reported-by: Jamie Landeg-Jones <jamie@catflap.org>cgit |
|
0f919ed4 | kevans | Jan. 29, 2021, 1:25 a.m. | tmpfs: push VEXEC check into tmpfs_lookup()
vfs_cache_lookup() has already done the appropriate VEXEC check, therefore we must not re-check in VOP_CACHEDLOOKUP. This fixes O_SEARCH semantics on tmpfs and removes a redundant descent into VOP_ACCESS() in the common case. Reported-by: arichardson (via CheriBSD Jenkins CI) Reviewed-by: kib MFC-after: 3 days Differential Revision: https://reviews.freebsd.org/D28401cgit |
|
8a51f14a | imp | Jan. 29, 2021, 12:44 a.m. | newvers: tweak uname to be more useful
The current uname is branch-cXXXX-gHASH Three changes to make uname more useful. 1. Move from using git rev-list --count to git rev-lis --count --first-parent since that gives a better, incrementing number. 2. Report this count as 'nXXXXX' rather than 'cXXXXX' because c is part of a hash and we've changed the sematnics of XXXXX 3. Remove g to make HASH cut and pastable. Durting review, #1 & #3 had the largest consensus. There was a diversity of opinion on #2, but on the whole it was positive so I'll acknowledge the dissent, but move forward with something seems to have support since the dissent was all about what letter to use where I chose 'n'. MFC After: 3 days Reviewed by: rgrimes, emaste (earlier version) Differential Revision: https://reviews.freebsd.org/D28338cgit |
|
8fee65d0 | mav | Jan. 28, 2021, 11:20 p.m. | Add missing newlines.
MFC after: 3 dayscgit |
|
0c852bb9 | ambrisko | Jan. 28, 2021, 11:12 p.m. | Add support for some more Intel VMD controllers. Some of the
newer controller have a sparce bus space that can be figured out by probing the HW. This gives the starting bus number. When reading the PCI config. space behind the VMD controller, the offset of the starting bus needs to be subtracted from the bus being read. Fixed a bug in which in which not all of the devices directly attached to the VMD controller would be probed. On my initial test HW, a switch was found at bus 0, slot 0 and function 0. All of the NVME drives were behind that switch. Now scan for all slots and functions attached to bus 0. If a something was found then run attach after the scan. On detach also go through all slots and functions on bus 0. Tested with device ID's: 0x201d & 0x9a0b Tested by: nc@ MFC after: 7 days PR: 252253cgit |
|
5c689e21 | wulf | Jan. 28, 2021, 9:40 p.m. | hsctrl: Fix manpage typo
Use hsctrl_load to load the module at boot time. Submitted by: Shunchao Hu <ankohuu_outlook.com> Reviewed by: wulf MFC after: 3 days Differential revision: https://reviews.freebsd.org/D28343cgit |
|
b1f1917d | allanjude | Jan. 28, 2021, 9:35 p.m. | Regenerate src.conf.5 after enabling MK_OPENSSL_KTLS for arm64 | |
e6b7809c | allanjude | Jan. 28, 2021, 9:35 p.m. | Flip the default for OPENSSL_KTLS to arm64
This is required to make use of KERN_TLS Reviewed by: jhb Sponsored by: Ampere Computing Submitted by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D28405cgit |
|
b75168ed | mav | Jan. 28, 2021, 9:22 p.m. | Make software iSCSI more configurable.
Move software iSCSI tunables/sysctls into kern.icl.soft subtree. Replace several hardcoded length constants there with variables. While there, stretch the limits to better match Linux' open-iscsi and our own initiator with new MAXPHYS of 1MB. Our CTL target is also optimized for up to 1MB I/Os, so there is also a match now. For Windows 10 and VMware 6.7 initiators at default settings it should make no change, since previous limits were sufficient there. Tests of QD1 1MB writes from FreeBSD over 10GigE link show throughput increase by 29% on idle connection and 132% with concurrent QD8 reads. MFC after: 3 days Sponsored by: iXsystems, Inc.cgit |
|
d2c9d0a4 | jhb | Jan. 28, 2021, 8:55 p.m. | Bump date after ae257282ae5b. | |
f9322ff6 | allanjude | Jan. 28, 2021, 8:48 p.m. | Enable KERN_TLS by default in ARM64 GENERIC
Sponsored-by: Ampere Computing Submitted-by: Klara, Inc.cgit |
|
4f954864 | emaste | Jan. 28, 2021, 8:03 p.m. | arch.7: update 11.x to 11.4 as the last FreeBSD 11 release
armeb and pc98 were both discontinued after FreeBSD 11. FreeBSD 11.4 is now known to be the final 11.x release, so update to the specific version.cgit |
|
c926114f | bdrewery | Jan. 28, 2021, 7:24 p.m. | Fix getblk() with GB_NOCREAT returning false-negatives.
It is possible for a buf to be reassigned between the dirty and clean lists while gbincore_unlocked() looks in each list. Avoid creating a buffer in that case and fallback to a locked lookup. This fixes a regression from r363482. More discussion on potential improvements to the clean and dirty lists handling is in the review. Reviewed by: cem, kib, markj, vangyzen, rlibby Reported by: Suraj.Raju at dell.com Submitted by: Suraj.Raju at dell.com, cem, [based on both] MFC after: 2 weeks Sponsored by: Dell EMC Differential Revision: https://reviews.freebsd.org/D28375cgit |