linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] vfs: Pass setxattr(2) flags properly
@ 2011-04-20 18:30 Jan Kara
  2011-04-20 23:59 ` Linus Torvalds
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Kara @ 2011-04-20 18:30 UTC (permalink / raw)
  To: LKML; +Cc: linux-fsdevel, Andrew Morton, Al Viro, Linus Torvalds, Jan Kara

For some reason generic_setxattr() did not pass flags (XATTR_CREATE,
XATTR_REPLACE) to the filesystem specific helper. This caused that
setxattr(2) syscall just ignored these flags.

Fix the bug by passing flags correctly.

Signed-off-by: Jan Kara <jack@suse.cz>
---
 fs/xattr.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

 Who's handling VFS changes when Al is away? Andrew?

diff --git a/fs/xattr.c b/fs/xattr.c
index a19acdb..f1ef949 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -666,7 +666,7 @@ generic_setxattr(struct dentry *dentry, const char *name, const void *value, siz
 	handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
 	if (!handler)
 		return -EOPNOTSUPP;
-	return handler->set(dentry, name, value, size, 0, handler->flags);
+	return handler->set(dentry, name, value, size, flags, handler->flags);
 }
 
 /*
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-04-21  4:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-20 18:30 [PATCH] vfs: Pass setxattr(2) flags properly Jan Kara
2011-04-20 23:59 ` Linus Torvalds
2011-04-21  3:09   ` Christoph Hellwig
2011-04-21  3:58     ` Linus Torvalds
2011-04-21  4:17       ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).