[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1371668008.2038.37.camel@joe-AO722>
Date: Wed, 19 Jun 2013 11:53:28 -0700
From: Joe Perches <joe@...ches.com>
To: Al Viro <viro@...IV.linux.org.uk>
Cc: LKML <linux-kernel@...r.kernel.org>
Subject: getxattr: kzalloc/vmalloc mismatch
It seems the kzalloc could be kmalloc instead.
(it's filled by xattr_getsecurity)
in fs/xattr.c:
static ssize_t
getxattr(struct dentry *d, const char __user *name, void __user *value,
size_t size)
{
[]
if (size) {
if (size > XATTR_SIZE_MAX)
size = XATTR_SIZE_MAX;
kvalue = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
if (!kvalue) {
vvalue = vmalloc(size);
if (!vvalue)
return -ENOMEM;
kvalue = vvalue;
}
}
--
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