projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d3095f
)
ovl: allow zero size xattr
author
Miklos Szeredi
<miklos@szeredi.hu>
Tue, 10 Nov 2015 16:08:41 +0000
(17:08 +0100)
committer
Miklos Szeredi
<miklos@szeredi.hu>
Tue, 10 Nov 2015 16:08:41 +0000
(17:08 +0100)
When ovl_copy_xattr() encountered a zero size xattr no more xattrs were
copied and the function returned success. This is clearly not the desired
behavior.
Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Cc: <stable@vger.kernel.org>
fs/overlayfs/copy_up.c
patch
|
blob
|
history
diff --git
a/fs/overlayfs/copy_up.c
b/fs/overlayfs/copy_up.c
index
871fcb6
..
394e87f
100644
(file)
--- a/
fs/overlayfs/copy_up.c
+++ b/
fs/overlayfs/copy_up.c
@@
-54,7
+54,7
@@
int ovl_copy_xattr(struct dentry *old, struct dentry *new)
for (name = buf; name < (buf + list_size); name += strlen(name) + 1) {
size = vfs_getxattr(old, name, value, XATTR_SIZE_MAX);
- if (size <
=
0) {
+ if (size < 0) {
error = size;
goto out_free_value;
}