mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
kobject: Export kobject_get_unless_zero()
Make the function available for outside use and fortify it against NULL kobject. CC: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com> Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
@@ -601,12 +601,15 @@ struct kobject *kobject_get(struct kobject *kobj)
|
||||
}
|
||||
EXPORT_SYMBOL(kobject_get);
|
||||
|
||||
static struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj)
|
||||
struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj)
|
||||
{
|
||||
if (!kobj)
|
||||
return NULL;
|
||||
if (!kref_get_unless_zero(&kobj->kref))
|
||||
kobj = NULL;
|
||||
return kobj;
|
||||
}
|
||||
EXPORT_SYMBOL(kobject_get_unless_zero);
|
||||
|
||||
/*
|
||||
* kobject_cleanup - free kobject resources.
|
||||
|
Reference in New Issue
Block a user