diff options
author | Jan Harkes <jaharkes@cs.cmu.edu> | 2007-07-19 04:48:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:48 -0400 |
commit | a1b0aa87647493c0201821ab884e86298d5da7d6 (patch) | |
tree | df7c97e4ae6469b238f0f507eed86d906a5539b3 /fs/coda/cache.c | |
parent | 5fd31e9a67dd6c80e49240514cf854c1f054aca2 (diff) |
coda: remove struct coda_sb_info
The sb_info structure only contains a single pointer to the character device,
there is no need for the added indirection.
Signed-off-by: Jan Harkes <jaharkes@cs.cmu.edu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/coda/cache.c')
-rw-r--r-- | fs/coda/cache.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/coda/cache.c b/fs/coda/cache.c index 11538a2b5423..8a2370341c7a 100644 --- a/fs/coda/cache.c +++ b/fs/coda/cache.c | |||
@@ -49,11 +49,6 @@ void coda_cache_clear_inode(struct inode *inode) | |||
49 | /* remove all acl caches */ | 49 | /* remove all acl caches */ |
50 | void coda_cache_clear_all(struct super_block *sb) | 50 | void coda_cache_clear_all(struct super_block *sb) |
51 | { | 51 | { |
52 | struct coda_sb_info *sbi; | ||
53 | |||
54 | sbi = coda_sbp(sb); | ||
55 | BUG_ON(!sbi); | ||
56 | |||
57 | atomic_inc(&permission_epoch); | 52 | atomic_inc(&permission_epoch); |
58 | } | 53 | } |
59 | 54 | ||