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.
d0103273 | mav | Feb. 28, 2021, 2:08 p.m. | Fix diroffdiroff, probably copy/paste bug.
Too long name looks bad in `vmstat -m`. MFC after: 1 weekcgit |
|
99954552 | freqlabs | Feb. 28, 2021, 2:20 a.m. | sbin/ifconfig: Drop local name var in sfp_status
There is already a globally defined name variable. MFC after: 1 weekcgit |
|
a0ebb915 | freqlabs | Feb. 28, 2021, 2:20 a.m. | sbin/ifconfig: Get lagg status with libifconfig
Also trimmed an unused block of code that never prints out LAGG_PROTOS. Reviewed by: kp (earlier version) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D28961cgit |
|
da393346 | freqlabs | Feb. 28, 2021, 2:20 a.m. | sbin/ifconfig: Get carp status with libifconfig
A trivial change now that ifconfig is already using libifconfig. Reviewed by: kp (earlier version) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D28955cgit |
|
3fe2c68b | rmacklem | Feb. 28, 2021, 1:54 a.m. | nfsclient: fix panic in cache_enter_time()
Juraj Lutter (otis@) reported a panic "dvp != vp not true" in cache_enter_time() called from the NFS client's nfsrpc_readdirplus() function. This is specific to an NFSv3 mount with the "rdirplus" mount option. Unlike NFSv4, NFSv3 replies to ReaddirPlus includes entries for the current directory. This trivial patch avoids doing a cache_enter_time() call for the current directory to avoid the panic. Reported by: otis Tested by: otis Reviewed by: mjg MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D28969cgit |
|
b5449c92 | kib | Feb. 27, 2021, 11:27 p.m. | Use atomic_interrupt_fence() instead of bare __compiler_membar()
for the which which definitely use membar to sync with interrupt handlers. libc and rtld uses of __compiler_membar() seems to want compiler barriers proper. The barrier in sched_unpin_lite() after td_pinned decrement seems to be not needed and removed, instead of convertion. Reviewed by: markj MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D28956cgit |
|
1d9ba697 | freqlabs | Feb. 27, 2021, 11:12 p.m. | libifconfig: Set error in ifconfig_get_groups
This should return -1 with OTHER/ENOMEM set in the handle when malloc fails, like everywhere else in libifconfig. Reviewed by: kp MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D28964cgit |
|
1d8510c1 | mjg | Feb. 27, 2021, 10:29 p.m. | zfs: add missing seqc write begin/end around zfs_acl_chown_setattr
It happens to trip over an assert but does not matter for correctness at this time. However, do it for future proofing. Reported by: avgcgit |
|
1239a722 | mjg | Feb. 27, 2021, 10:29 p.m. | cache: temporarily drop the assert that dvp != vp when adding an entry
Historically it was allowed for any names, but arguably should never be even attempted. Allow it again since there is a release pending and allowing it is bug-compatible with previous behavior. Reported by: otiscgit |
|
70e95f0b | tuexen | Feb. 27, 2021, 10:27 p.m. | sctp: avoid integer overflow when starting the HB timer
MFC after: 3 days Reported by: syzbot+14b9d7c3c64208fae62f@syzkaller.appspotmail.comcgit |
|
d656ce19 | rew | Feb. 27, 2021, 9:07 p.m. | bhyve/snapshot: rename and bump size of MAX_SNAPSHOT_VMNAME
MAX_SNAPSHOT_VMNAME is a macro used to set the size of a character buffer that stores a filename or the path to a file - this file is used by the save/restore feature. Since the file doesn't have anything to do with a vm name, rename MAX_SNAPSHOT_VMNAME to MAX_SNAPSHOT_FILENAME. Bump the size to PATH_MAX while here. Reviewed by: jhb Differential Revision: https://reviews.freebsd.org/D28879cgit |
|
da971391 | rew | Feb. 27, 2021, 9:05 p.m. | bhyvectl: reduce code duplication
Combine send_start_checkpoint() and send_start_suspend() into a single function named snapshot_request(). snapshot_request() is equivalent to send_start_checkpoint() and send_start_suspend() except that it takes an additional argument. The additional argument, enum ipc_opcode, is used to determine the type of snapshot request being performed. Also, switch to using strlcpy instead of strncpy. Reviewed by: jhb Differential Revision: https://reviews.freebsd.org/D28878cgit |
|
b7fd9c4e | rew | Feb. 27, 2021, 9:03 p.m. | bhyve/snapshot: rename checkpoint_opcodes to be more generic
Generalize the naming here since the domain socket that uses these codes might be used for purposes other than the save/restore feature. - rename checkpoint_opcodes to ipc_opcode Reviewed by: jhb Differential Revision: https://reviews.freebsd.org/D28877cgit |
|
a9f11355 | rwatson | Feb. 27, 2021, 4:53 p.m. | Add Xrefs to the new VOP_SETLABEL(9) from mac(9) and vnode(9).
MFC after: 3 dayscgit |
|
7bfd8444 | rwatson | Feb. 27, 2021, 4:51 p.m. | Provide a man page for VOP_SETLABEL(9).
MFC after: 3 dayscgit |