mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
kernfs: do not alloc iattrs in kernfs_xattr_get
This is a read-only operation, so we can simply return -ENODATA if kn->iattr is NULL. Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com> Acked-by: Casey Schaufler <casey@schaufler-ca.com> [PM: minor merge fixes] Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
committed by
Paul Moore
parent
0589521962
commit
d0c9c153b4
@@ -31,14 +31,14 @@ static const struct inode_operations kernfs_iops = {
|
|||||||
.listxattr = kernfs_iop_listxattr,
|
.listxattr = kernfs_iop_listxattr,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct kernfs_iattrs *kernfs_iattrs(struct kernfs_node *kn)
|
static struct kernfs_iattrs *__kernfs_iattrs(struct kernfs_node *kn, int alloc)
|
||||||
{
|
{
|
||||||
static DEFINE_MUTEX(iattr_mutex);
|
static DEFINE_MUTEX(iattr_mutex);
|
||||||
struct kernfs_iattrs *ret;
|
struct kernfs_iattrs *ret;
|
||||||
|
|
||||||
mutex_lock(&iattr_mutex);
|
mutex_lock(&iattr_mutex);
|
||||||
|
|
||||||
if (kn->iattr)
|
if (kn->iattr || !alloc)
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
|
|
||||||
kn->iattr = kmem_cache_zalloc(kernfs_iattrs_cache, GFP_KERNEL);
|
kn->iattr = kmem_cache_zalloc(kernfs_iattrs_cache, GFP_KERNEL);
|
||||||
@@ -60,6 +60,16 @@ out_unlock:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct kernfs_iattrs *kernfs_iattrs(struct kernfs_node *kn)
|
||||||
|
{
|
||||||
|
return __kernfs_iattrs(kn, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct kernfs_iattrs *kernfs_iattrs_noalloc(struct kernfs_node *kn)
|
||||||
|
{
|
||||||
|
return __kernfs_iattrs(kn, 0);
|
||||||
|
}
|
||||||
|
|
||||||
int __kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr)
|
int __kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr)
|
||||||
{
|
{
|
||||||
struct kernfs_iattrs *attrs;
|
struct kernfs_iattrs *attrs;
|
||||||
@@ -306,9 +316,9 @@ static int kernfs_xattr_get(const struct xattr_handler *handler,
|
|||||||
struct kernfs_node *kn = inode->i_private;
|
struct kernfs_node *kn = inode->i_private;
|
||||||
struct kernfs_iattrs *attrs;
|
struct kernfs_iattrs *attrs;
|
||||||
|
|
||||||
attrs = kernfs_iattrs(kn);
|
attrs = kernfs_iattrs_noalloc(kn);
|
||||||
if (!attrs)
|
if (!attrs)
|
||||||
return -ENOMEM;
|
return -ENODATA;
|
||||||
|
|
||||||
return simple_xattr_get(&attrs->xattrs, name, value, size);
|
return simple_xattr_get(&attrs->xattrs, name, value, size);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user