2014-10-31 19:02:51

by Miklos Szeredi

[permalink] [raw]
Subject: [PATCH] ovl: initialize ->is_cursor

From: Miklos Szeredi <[email protected]>

Signed-off-by: Miklos Szeredi <[email protected]>
---
This goes on top of "ovl: fix check for cursor".

fs/overlayfs/readdir.c | 1 +
1 file changed, 1 insertion(+)

--- a/fs/overlayfs/readdir.c
+++ b/fs/overlayfs/readdir.c
@@ -93,6 +93,7 @@ static struct ovl_cache_entry *ovl_cache
p->type = d_type;
p->ino = ino;
p->is_whiteout = false;
+ p->is_cursor = false;
}

return p;


2014-10-31 21:54:33

by Al Viro

[permalink] [raw]
Subject: Re: [PATCH] ovl: initialize ->is_cursor

On Fri, Oct 31, 2014 at 08:02:42PM +0100, Miklos Szeredi wrote:
> From: Miklos Szeredi <[email protected]>
>
> Signed-off-by: Miklos Szeredi <[email protected]>
> ---
> This goes on top of "ovl: fix check for cursor".

Applied