Lines Matching refs:kobj
332 static ssize_t enabled_store(struct kobject *kobj, struct kobj_attribute *attr, in enabled_store() argument
343 patch = container_of(kobj, struct klp_patch, kobj); in enabled_store()
375 static ssize_t enabled_show(struct kobject *kobj, in enabled_show() argument
380 patch = container_of(kobj, struct klp_patch, kobj); in enabled_show()
384 static ssize_t transition_show(struct kobject *kobj, in transition_show() argument
389 patch = container_of(kobj, struct klp_patch, kobj); in transition_show()
394 static ssize_t force_store(struct kobject *kobj, struct kobj_attribute *attr, in force_store() argument
410 patch = container_of(kobj, struct klp_patch, kobj); in force_store()
552 static void klp_kobj_release_patch(struct kobject *kobj) in klp_kobj_release_patch() argument
556 patch = container_of(kobj, struct klp_patch, kobj); in klp_kobj_release_patch()
566 static void klp_kobj_release_object(struct kobject *kobj) in klp_kobj_release_object() argument
570 obj = container_of(kobj, struct klp_object, kobj); in klp_kobj_release_object()
581 static void klp_kobj_release_func(struct kobject *kobj) in klp_kobj_release_func() argument
585 func = container_of(kobj, struct klp_func, kobj); in klp_kobj_release_func()
605 kobject_put(&func->kobj); in __klp_free_funcs()
635 kobject_put(&obj->kobj); in __klp_free_objects()
680 kobject_put(&patch->kobj); in klp_free_patch_finish()
742 return kobject_add(&func->kobj, &obj->kobj, "%s,%lu", in klp_init_func()
834 ret = kobject_add(&obj->kobj, &patch->kobj, "%s", name); in klp_init_object()
853 kobject_init(&func->kobj, &klp_ktype_func); in klp_init_func_early()
861 kobject_init(&obj->kobj, &klp_ktype_object); in klp_init_object_early()
875 kobject_init(&patch->kobj, &klp_ktype_patch); in klp_init_patch_early()
903 ret = kobject_add(&patch->kobj, klp_root_kobj, "%s", patch->mod->name); in klp_init_patch()