[<prev] [next>] [day] [month] [year] [list]
Message-ID: <4B2F6302.5050302@gmail.com>
Date: Mon, 21 Dec 2009 19:58:58 +0800
From: Liuwenyi <qingshenlwy@...il.com>
To: swhiteho@...hat.com, viro@...iv.linux.org.uk,
joel.becker@...cle.com, jmorris@...ei.org, hch@....de,
cluster-devel@...hat.com, linux-kernel@...r.kernel.org,
onlyflyer@...il.com, strongzgy@...il.com
Subject: [PATCHv2 07/12]posix_acl: Add the check items
move the ACL validation check in to fs/posix_acl.c.
Including nullpointer check and PTR_ERR check.
---
Signed-off-by: Liuwenyi <qingshenlwy@...il.com>
Cc: Steven Whitehouse <swhiteho@...hat.com>
Cc: Al Viro <viro@...iv.linux.org.uk>
Cc: Joel Becker <joel.becker@...cle.com>
Cc: James Morris <jmorris@...ei.org>
Cc: Christoph Hellwig <hch@....de>
Cc: cluster-devel@...hat.com
Cc: linux-kernel@...r.kernel.org
---
diff --git a/fs/gfs2/acl.c b/fs/gfs2/acl.c
index 87ee309..462f4e3 100644
--- a/fs/gfs2/acl.c
+++ b/fs/gfs2/acl.c
@@ -284,17 +284,6 @@ static int gfs2_xattr_system_set(struct dentry
*dentry, const char *name,
goto set_acl;
acl = posix_acl_from_xattr(value, size);
- if (!acl) {
- /*
- * acl_set_file(3) may request that we set default ACLs with
- * zero length -- defend (gracefully) against that here.
- */
- goto out;
- }
- if (IS_ERR(acl)) {
- error = PTR_ERR(acl);
- goto out;
- }
error = posix_acl_valid(acl);
if (error)
--
Best Regards,
Liuwenyi
--
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