diff options
author | Jan Harkes <jaharkes@cs.cmu.edu> | 2007-07-19 01:48:42 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 10:04:48 -0700 |
commit | 56ee3547940f895a2cf20f2ac462fbeaee55fa2a (patch) | |
tree | b8fe62fb424c9f6b10a41f67e91955735c9034ef /fs/coda | |
parent | 38c2e4370da495813ca93d7cad31ed5090e8c310 (diff) | |
download | kernel_samsung_crespo-56ee3547940f895a2cf20f2ac462fbeaee55fa2a.zip kernel_samsung_crespo-56ee3547940f895a2cf20f2ac462fbeaee55fa2a.tar.gz kernel_samsung_crespo-56ee3547940f895a2cf20f2ac462fbeaee55fa2a.tar.bz2 |
coda: correctly invalidate cached access rights
Change the epoch value to forces a refresh instead of clearing the cached
rights mask and block all further accesses to the object.
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')
-rw-r--r-- | fs/coda/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/coda/cache.c b/fs/coda/cache.c index fcb88fa..11538a2 100644 --- a/fs/coda/cache.c +++ b/fs/coda/cache.c @@ -43,7 +43,7 @@ void coda_cache_enter(struct inode *inode, int mask) void coda_cache_clear_inode(struct inode *inode) { struct coda_inode_info *cii = ITOC(inode); - cii->c_cached_perm = 0; + cii->c_cached_epoch = atomic_read(&permission_epoch) - 1; } /* remove all acl caches */ |