diff options
-rw-r--r-- | fs/locks.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/locks.c b/fs/locks.c index 16cae1a00851..52b780fb5258 100644 --- a/fs/locks.c +++ b/fs/locks.c | |||
@@ -223,14 +223,7 @@ locks_get_lock_context(struct inode *inode, int type) | |||
223 | * Assign the pointer if it's not already assigned. If it is, then | 223 | * Assign the pointer if it's not already assigned. If it is, then |
224 | * free the context we just allocated. | 224 | * free the context we just allocated. |
225 | */ | 225 | */ |
226 | spin_lock(&inode->i_lock); | 226 | if (cmpxchg(&inode->i_flctx, NULL, new)) |
227 | if (likely(!inode->i_flctx)) { | ||
228 | inode->i_flctx = new; | ||
229 | new = NULL; | ||
230 | } | ||
231 | spin_unlock(&inode->i_lock); | ||
232 | |||
233 | if (new) | ||
234 | kmem_cache_free(flctx_cache, new); | 227 | kmem_cache_free(flctx_cache, new); |
235 | out: | 228 | out: |
236 | return inode->i_flctx; | 229 | return inode->i_flctx; |