diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-11-05 20:19:58 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-11-05 20:19:58 (GMT) |
commit | 20f3963d8f48ae8309fbc777ef6787fd0a3f53c2 (patch) | |
tree | 299f098bf4a5e2392acaa3872c8bf5cbae0dc401 | |
parent | 90f95768447e040af96d3bfdaf5c64b407ae3dca (diff) | |
parent | 3f822c6264954660babce757fb45792fd3af273e (diff) | |
download | linux-20f3963d8f48ae8309fbc777ef6787fd0a3f53c2.tar.xz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull vfs fix from Al Viro:
"Another overlayfs fix"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
ovl: don't poison cursor
-rw-r--r-- | fs/overlayfs/readdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/overlayfs/readdir.c b/fs/overlayfs/readdir.c index 4e9d7c1..2a7ef4f 100644 --- a/fs/overlayfs/readdir.c +++ b/fs/overlayfs/readdir.c @@ -168,7 +168,7 @@ static void ovl_cache_put(struct ovl_dir_file *od, struct dentry *dentry) { struct ovl_dir_cache *cache = od->cache; - list_del(&od->cursor.l_node); + list_del_init(&od->cursor.l_node); WARN_ON(cache->refcount <= 0); cache->refcount--; if (!cache->refcount) { |