svn commit: r357360 - head/sys/ufs/ufs
Mateusz Guzik
mjg at FreeBSD.org
Sat Feb 1 06:41:45 UTC 2020
Author: mjg
Date: Sat Feb 1 06:41:44 2020
New Revision: 357360
URL: https://svnweb.freebsd.org/changeset/base/357360
Log:
ufs: drop ufs_markatime from ufs_fifoops
The routine is only called on mmap and exec, both of which are invalid for
this type.
Reviewed by: kib
Differential Revision: https://reviews.freebsd.org/D23421
Modified:
head/sys/ufs/ufs/ufs_vnops.c
Modified: head/sys/ufs/ufs/ufs_vnops.c
==============================================================================
--- head/sys/ufs/ufs/ufs_vnops.c Sat Feb 1 06:40:35 2020 (r357359)
+++ head/sys/ufs/ufs/ufs_vnops.c Sat Feb 1 06:41:44 2020 (r357360)
@@ -2783,7 +2783,6 @@ struct vop_vector ufs_fifoops = {
.vop_getattr = ufs_getattr,
.vop_inactive = ufs_inactive,
.vop_kqfilter = ufsfifo_kqfilter,
- .vop_markatime = ufs_markatime,
.vop_pathconf = ufs_pathconf,
.vop_print = ufs_print,
.vop_read = VOP_PANIC,
More information about the svn-src-all
mailing list