diff options
author | Nathan Scott <nathans@sgi.com> | 2006-03-13 22:06:18 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-03-13 22:06:18 -0500 |
commit | a50cd2692617cfb796140a62c0082bce0a7306c7 (patch) | |
tree | 15a879237107bde586effdb46c2be41e4cd1af44 /fs/xfs/linux-2.6/xfs_export.c | |
parent | 416c6d5bcfe8ac2c65a955be62bc42d8b8d5b014 (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.c | 18 |
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 | ||
41 | STATIC struct dentry * | 41 | STATIC struct dentry * |
42 | linvfs_decode_fh( | 42 | xfs_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 | ||
87 | STATIC int | 87 | STATIC int |
88 | linvfs_encode_fh( | 88 | xfs_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 | ||
134 | STATIC struct dentry * | 134 | STATIC struct dentry * |
135 | linvfs_get_dentry( | 135 | xfs_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 | ||
158 | STATIC struct dentry * | 158 | STATIC struct dentry * |
159 | linvfs_get_parent( | 159 | xfs_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 | ||
180 | struct export_operations linvfs_export_ops = { | 180 | struct 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 | }; |