Lines Matching refs:kset
68 struct kset *kset; member
168 struct kset { struct
175 void kset_init(struct kset *kset); argument
176 int __must_check kset_register(struct kset *kset);
177 void kset_unregister(struct kset *kset);
178 struct kset * __must_check kset_create_and_add(const char *name, const struct kset_uevent_ops *u,
181 static inline struct kset *to_kset(struct kobject *kobj) in to_kset()
183 return kobj ? container_of(kobj, struct kset, kobj) : NULL; in to_kset()
186 static inline struct kset *kset_get(struct kset *k) in kset_get()
191 static inline void kset_put(struct kset *k) in kset_put()
201 struct kobject *kset_find_obj(struct kset *, const char *);