[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1426824116-22920-1-git-send-email-tsgatesv@gmail.com>
Date: Fri, 20 Mar 2015 00:01:56 -0400
From: Taesoo Kim <tsgatesv@...il.com>
To: ericvh@...il.com, rminnich@...dia.gov, lucho@...kov.net,
v9fs-developer@...ts.sourceforge.net, linux-kernel@...r.kernel.org
Cc: taesoo@...ech.edu, changwoo@...ech.edu, sanidhya@...ech.edu,
blee@...ech.edu, csong84@...ech.edu,
Taesoo Kim <tsgatesv@...il.com>
Subject: [PATCH 1/1] 9p: correctly check empty xattr key
When xattr name (key) is empty (""), correctly return -EINVAL
error. Not sure how previous xattr_set_acl() performs with
any xattr key for get/set().
Signed-off-by: Taesoo Kim <tsgatesv@...il.com>
---
fs/9p/acl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/9p/acl.c b/fs/9p/acl.c
index 8482f2d..295bf25 100644
--- a/fs/9p/acl.c
+++ b/fs/9p/acl.c
@@ -237,7 +237,7 @@ static int v9fs_xattr_get_acl(struct dentry *dentry, const char *name,
struct posix_acl *acl;
int error;
- if (strcmp(name, "") != 0)
+ if (strcmp(name, "") == 0)
return -EINVAL;
v9ses = v9fs_dentry2v9ses(dentry);
@@ -287,7 +287,7 @@ static int v9fs_xattr_set_acl(struct dentry *dentry, const char *name,
struct v9fs_session_info *v9ses;
struct inode *inode = dentry->d_inode;
- if (strcmp(name, "") != 0)
+ if (strcmp(name, "") == 0)
return -EINVAL;
v9ses = v9fs_dentry2v9ses(dentry);
--
2.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists