@@ -181,6 +181,8 @@ kset_type_create_and_add(const char *name, const struct kset_uevent_ops *u,
struct kset * __must_check
kset_create_and_add(const char *name, const struct kset_uevent_ops *u,
struct kobject *parent_kobj);
+void kset_release(struct kobject *kobj);
+void kset_get_ownership(const struct kobject *kobj, kuid_t *uid, kgid_t *gid);
static inline struct kset *to_kset(struct kobject *kobj)
{
@@ -920,19 +920,21 @@ struct kobject *kset_find_obj(struct kset *kset, const char *name)
}
EXPORT_SYMBOL_GPL(kset_find_obj);
-static void kset_release(struct kobject *kobj)
+void kset_release(struct kobject *kobj)
{
struct kset *kset = container_of(kobj, struct kset, kobj);
pr_debug("'%s' (%p): %s\n",
kobject_name(kobj), kobj, __func__);
kfree(kset);
}
+EXPORT_SYMBOL_GPL(kset_release);
-static void kset_get_ownership(const struct kobject *kobj, kuid_t *uid, kgid_t *gid)
+void kset_get_ownership(const struct kobject *kobj, kuid_t *uid, kgid_t *gid)
{
if (kobj->parent)
kobject_get_ownership(kobj->parent, uid, gid);
}
+EXPORT_SYMBOL_GPL(kset_get_ownership);
static const struct kobj_type kset_ktype = {
.sysfs_ops = &kobj_sysfs_ops,