diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-04-28 10:59:12 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-04-28 10:59:12 -0400 |
commit | 08bc2dbc7327e89b9d5b9c8ef9401d1df2622fca (patch) | |
tree | 2c16cbd9f5bd856b00ef0a0d9f88b3afa67712ee /fs/gfs2/eaops.c | |
parent | c56b39cd2c55d521597f04bbd872a08d1c4373ca (diff) |
[GFS2] [-mm patch] fs/gfs2/: possible cleanups
This patch contains the following possible cleanups:
- make needlessly global code static
- #if 0 unused functions
- remove the following global function that was both unused and
unimplemented:
- super.c: gfs2_do_upgrade()
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/eaops.c')
-rw-r--r-- | fs/gfs2/eaops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/eaops.c b/fs/gfs2/eaops.c index 4b9f6cff7a34..1b376eceb6af 100644 --- a/fs/gfs2/eaops.c +++ b/fs/gfs2/eaops.c | |||
@@ -167,7 +167,7 @@ static int system_eo_remove(struct gfs2_inode *ip, struct gfs2_ea_request *er) | |||
167 | return gfs2_ea_remove_i(ip, er); | 167 | return gfs2_ea_remove_i(ip, er); |
168 | } | 168 | } |
169 | 169 | ||
170 | struct gfs2_eattr_operations gfs2_user_eaops = { | 170 | static struct gfs2_eattr_operations gfs2_user_eaops = { |
171 | .eo_get = user_eo_get, | 171 | .eo_get = user_eo_get, |
172 | .eo_set = user_eo_set, | 172 | .eo_set = user_eo_set, |
173 | .eo_remove = user_eo_remove, | 173 | .eo_remove = user_eo_remove, |