Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 May 2011 11:09:36 GMT
From:      Ilya Putsikau <ilya@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 193906 for review
Message-ID:  <201105291109.p4TB9alN081427@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@193906?ac=10

Change 193906 by ilya@ilya_triton2011 on 2011/05/29 11:09:33

	Use fuse_vfs prefix

Affected files ...

.. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vfsops.c#8 edit

Differences ...

==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vfsops.c#8 (text+ko) ====

@@ -43,16 +43,16 @@
 
 static vfs_hash_cmp_t fuse_vnode_bgdrop_cmp;
 
-static vfs_mount_t fuse_mount;
-static vfs_unmount_t fuse_unmount;
-static vfs_root_t fuse_root;
-static vfs_statfs_t fuse_statfs;
+static vfs_mount_t fuse_vfs_mount;
+static vfs_unmount_t fuse_vfs_unmount;
+static vfs_root_t fuse_vfs_root;
+static vfs_statfs_t fuse_vfs_statfs;
 
 struct vfsops fuse_vfsops = {
-	.vfs_mount   = fuse_mount,
-	.vfs_unmount = fuse_unmount,
-	.vfs_root    = fuse_root,
-	.vfs_statfs  = fuse_statfs,
+	.vfs_mount   = fuse_vfs_mount,
+	.vfs_unmount = fuse_vfs_unmount,
+	.vfs_root    = fuse_vfs_root,
+	.vfs_statfs  = fuse_vfs_statfs,
 };
 
 SYSCTL_INT(_vfs_fuse, OID_AUTO, init_backgrounded, CTLFLAG_RD,
@@ -130,7 +130,7 @@
  * Mount system call
  */
 static int
-fuse_mount(struct mount *mp)
+fuse_vfs_mount(struct mount *mp)
 {
 	struct thread *td = curthread;
 	int err = 0;
@@ -435,7 +435,7 @@
  * Unmount system call
  */
 static int
-fuse_unmount(struct mount *mp, int mntflags)
+fuse_vfs_unmount(struct mount *mp, int mntflags)
 {
 	struct thread *td = curthread;
 	int flags = 0, err = 0;
@@ -540,7 +540,7 @@
 
 /* stolen from portalfs */
 static int
-fuse_root(struct mount *mp, int flags, struct vnode **vpp)
+fuse_vfs_root(struct mount *mp, int flags, struct vnode **vpp)
 {
 	/*
 	 * Return locked reference to root.
@@ -558,7 +558,7 @@
 		data = fsdat->master;
 		sx_slock(&data->mhierlock);
 		if (data->mpri == FM_PRIMARY)
-			err = fuse_root(data->mp, flags, vpp);
+			err = fuse_vfs_root(data->mp, flags, vpp);
 		else
 			err = ENXIO;
 		sx_sunlock(&data->mhierlock);
@@ -582,7 +582,7 @@
 }
 
 static int
-fuse_statfs(struct mount *mp, struct statfs *sbp)
+fuse_vfs_statfs(struct mount *mp, struct statfs *sbp)
 {
 	struct thread *td = curthread;
 	struct fuse_dispatcher fdi;
@@ -601,7 +601,7 @@
 
 		sx_slock(&data->mhierlock);
 		if (data->mpri == FM_PRIMARY)
-			err = fuse_statfs(data->mp, sbp);
+			err = fuse_vfs_statfs(data->mp, sbp);
 		else
 			err = ENXIO;
 		sx_sunlock(&data->mhierlock);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105291109.p4TB9alN081427>