summaryrefslogtreecommitdiff
path: root/src/sys/os/vfs_subr.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-17 19:55:12 -0400
committerIan Moffett <ian@osmora.org>2025-10-17 19:55:12 -0400
commit285cddba8b3ed2be1f6d7636a904a3492b522f34 (patch)
treecaf2c373eb556bc1ef6935719ec1aa0e4aeacdd4 /src/sys/os/vfs_subr.c
parent4d6a6a58ddf41a903a602ef3f4be07c66e4cfed0 (diff)
kern: vfs: Add vop_getattr() for vnodes
The vop_getattr() allows the caller to obtain information about a file represented by a specific vnode Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/os/vfs_subr.c')
-rw-r--r--src/sys/os/vfs_subr.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/sys/os/vfs_subr.c b/src/sys/os/vfs_subr.c
index adfcffb..2ae18af 100644
--- a/src/sys/os/vfs_subr.c
+++ b/src/sys/os/vfs_subr.c
@@ -246,3 +246,23 @@ vop_create(struct vnode *vp, struct nameidata *ndp)
args.ndp = ndp;
return vops->create(&args);
}
+
+int
+vop_getattr(struct vnode *vp, struct vattr *res)
+{
+ struct vop *vops;
+
+ if (vp == NULL || res == NULL) {
+ return -EINVAL;
+ }
+
+ if ((vops = vp->vops) == NULL) {
+ return -EIO;
+ }
+
+ if (vops->getattr == NULL) {
+ return -EIO;
+ }
+
+ return vops->getattr(vp, res);
+}