forked from Minki/linux
kobject: kset_create_and_add() - fetch ownership info from parent
This change implements get_ownership() for ksets created with kset_create_and_add() call by fetching ownership data from parent kobject. This is done mostly for benefit of "queues" attribute of net devices so that corresponding directory belongs to container's root instead of global root for network devices in a container. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Reviewed-by: Tyler Hicks <tyhicks@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5f81880d52
commit
d028b6f703
@ -887,9 +887,16 @@ static void kset_release(struct kobject *kobj)
|
||||
kfree(kset);
|
||||
}
|
||||
|
||||
void kset_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
|
||||
{
|
||||
if (kobj->parent)
|
||||
kobject_get_ownership(kobj->parent, uid, gid);
|
||||
}
|
||||
|
||||
static struct kobj_type kset_ktype = {
|
||||
.sysfs_ops = &kobj_sysfs_ops,
|
||||
.release = kset_release,
|
||||
.release = kset_release,
|
||||
.get_ownership = kset_get_ownership,
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user