summaryrefslogtreecommitdiffstats
path: root/sys/ufs/ffs/ffs_vnops.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2002-08-13 10:33:57 +0000
committerphk <phk@FreeBSD.org>2002-08-13 10:33:57 +0000
commit088460429a355d729101729f71fe08a18a6ca4d9 (patch)
tree02528fd72a5e561267b5f7198275d6af725ecd0f /sys/ufs/ffs/ffs_vnops.c
parent4eec5270bc9cd0c403c10898e54678948a2472dc (diff)
downloadFreeBSD-src-088460429a355d729101729f71fe08a18a6ca4d9.zip
FreeBSD-src-088460429a355d729101729f71fe08a18a6ca4d9.tar.gz
Unravel the UFS_EXTATTR incest between FFS and UFS: UFS_EXTATTR is an
UFS only thing, and FFS should in principle not know if it is enabled or not. This commit cleans ffs_vnops.c for such knowledge, but not ffs_vfsops.c Sponsored by: DARPA and NAI Labs.
Diffstat (limited to 'sys/ufs/ffs/ffs_vnops.c')
-rw-r--r--sys/ufs/ffs/ffs_vnops.c51
1 files changed, 49 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c
index 350536a..0d177f0 100644
--- a/sys/ufs/ffs/ffs_vnops.c
+++ b/sys/ufs/ffs/ffs_vnops.c
@@ -43,8 +43,6 @@
* $FreeBSD$
*/
-#include "opt_ufs.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/resourcevar.h>
@@ -82,6 +80,8 @@ static int ffs_read(struct vop_read_args *);
static int ffs_write(struct vop_write_args *);
static int ffs_extread(struct vop_read_args *);
static int ffs_extwrite(struct vop_write_args *);
+static int ffs_getextattr(struct vop_getextattr_args *);
+static int ffs_setextattr(struct vop_setextattr_args *);
/* Global vfs data structures for ufs. */
@@ -93,6 +93,8 @@ static struct vnodeopv_entry_desc ffs_vnodeop_entries[] = {
{ &vop_read_desc, (vop_t *) ffs_read },
{ &vop_reallocblks_desc, (vop_t *) ffs_reallocblks },
{ &vop_write_desc, (vop_t *) ffs_write },
+ { &vop_getextattr_desc, (vop_t *) ffs_getextattr },
+ { &vop_setextattr_desc, (vop_t *) ffs_setextattr },
{ NULL, NULL }
};
static struct vnodeopv_desc ffs_vnodeop_opv_desc =
@@ -102,6 +104,8 @@ vop_t **ffs_specop_p;
static struct vnodeopv_entry_desc ffs_specop_entries[] = {
{ &vop_default_desc, (vop_t *) ufs_vnoperatespec },
{ &vop_fsync_desc, (vop_t *) ffs_fsync },
+ { &vop_getextattr_desc, (vop_t *) ffs_getextattr },
+ { &vop_setextattr_desc, (vop_t *) ffs_setextattr },
{ NULL, NULL }
};
static struct vnodeopv_desc ffs_specop_opv_desc =
@@ -111,6 +115,8 @@ vop_t **ffs_fifoop_p;
static struct vnodeopv_entry_desc ffs_fifoop_entries[] = {
{ &vop_default_desc, (vop_t *) ufs_vnoperatefifo },
{ &vop_fsync_desc, (vop_t *) ffs_fsync },
+ { &vop_getextattr_desc, (vop_t *) ffs_getextattr },
+ { &vop_setextattr_desc, (vop_t *) ffs_setextattr },
{ NULL, NULL }
};
static struct vnodeopv_desc ffs_fifoop_opv_desc =
@@ -1299,3 +1305,44 @@ ffs_extwrite(ap)
error = UFS_UPDATE(vp, 1);
return (error);
}
+
+/*
+ * Vnode operating to retrieve a named extended attribute.
+ */
+int
+ffs_getextattr(struct vop_getextattr_args *ap)
+/*
+vop_getextattr {
+ IN struct vnode *a_vp;
+ IN int a_attrnamespace;
+ IN const char *a_name;
+ INOUT struct uio *a_uio;
+ OUT struct size_t *a_size;
+ IN struct ucred *a_cred;
+ IN struct thread *a_td;
+};
+*/
+{
+
+ return (ufs_vnoperate((struct vop_generic_args *)ap));
+}
+
+/*
+ * Vnode operation to set a named attribute.
+ */
+int
+ffs_setextattr(struct vop_setextattr_args *ap)
+/*
+vop_setextattr {
+ IN struct vnode *a_vp;
+ IN int a_attrnamespace;
+ IN const char *a_name;
+ INOUT struct uio *a_uio;
+ IN struct ucred *a_cred;
+ IN struct thread *a_td;
+};
+*/
+{
+
+ return (ufs_vnoperate((struct vop_generic_args *)ap));
+}
OpenPOWER on IntegriCloud