aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_export.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-03-13 22:06:18 -0500
committerNathan Scott <nathans@sgi.com>2006-03-13 22:06:18 -0500
commita50cd2692617cfb796140a62c0082bce0a7306c7 (patch)
tree15a879237107bde586effdb46c2be41e4cd1af44 /fs/xfs/linux-2.6/xfs_export.c
parent416c6d5bcfe8ac2c65a955be62bc42d8b8d5b014 (diff)
[XFS] Switch over from linvfs names for sb/quotactl operations for
consistent naming. SGI-PV: 950556 SGI-Modid: xfs-linux-melb:xfs-kern:25382a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_export.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_export.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/fs/xfs/linux-2.6/xfs_export.c b/fs/xfs/linux-2.6/xfs_export.c
index 53ed99112365..391c1353cd42 100644
--- a/fs/xfs/linux-2.6/xfs_export.c
+++ b/fs/xfs/linux-2.6/xfs_export.c
@@ -39,7 +39,7 @@ STATIC struct dentry dotdot = { .d_name.name = "..", .d_name.len = 2, };
39 */ 39 */
40 40
41STATIC struct dentry * 41STATIC struct dentry *
42linvfs_decode_fh( 42xfs_fs_decode_fh(
43 struct super_block *sb, 43 struct super_block *sb,
44 __u32 *fh, 44 __u32 *fh,
45 int fh_len, 45 int fh_len,
@@ -85,7 +85,7 @@ linvfs_decode_fh(
85 85
86 86
87STATIC int 87STATIC int
88linvfs_encode_fh( 88xfs_fs_encode_fh(
89 struct dentry *dentry, 89 struct dentry *dentry,
90 __u32 *fh, 90 __u32 *fh,
91 int *max_len, 91 int *max_len,
@@ -132,7 +132,7 @@ linvfs_encode_fh(
132} 132}
133 133
134STATIC struct dentry * 134STATIC struct dentry *
135linvfs_get_dentry( 135xfs_fs_get_dentry(
136 struct super_block *sb, 136 struct super_block *sb,
137 void *data) 137 void *data)
138{ 138{
@@ -156,7 +156,7 @@ linvfs_get_dentry(
156} 156}
157 157
158STATIC struct dentry * 158STATIC struct dentry *
159linvfs_get_parent( 159xfs_fs_get_parent(
160 struct dentry *child) 160 struct dentry *child)
161{ 161{
162 int error; 162 int error;
@@ -177,9 +177,9 @@ linvfs_get_parent(
177 return parent; 177 return parent;
178} 178}
179 179
180struct export_operations linvfs_export_ops = { 180struct export_operations xfs_export_operations = {
181 .decode_fh = linvfs_decode_fh, 181 .decode_fh = xfs_fs_decode_fh,
182 .encode_fh = linvfs_encode_fh, 182 .encode_fh = xfs_fs_encode_fh,
183 .get_parent = linvfs_get_parent, 183 .get_parent = xfs_fs_get_parent,
184 .get_dentry = linvfs_get_dentry, 184 .get_dentry = xfs_fs_get_dentry,
185}; 185};