aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_subr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r--sys/kern/vfs_subr.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index e1eefaa..850961e 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -115,3 +115,16 @@ vfs_vop_read(struct vnode *vp, struct sio_txn *sio)
return vops->read(vp, sio);
}
+
+int
+vfs_vop_getattr(struct vnode *vp, struct vop_getattr_args *args)
+{
+ const struct vops *vops = vp->vops;
+
+ if (vops == NULL)
+ return -EIO;
+ if (vops->getattr == NULL)
+ return -EIO;
+
+ return vops->getattr(args);
+}