diff options
author | Jan Kara <jack@suse.cz> | 2017-03-22 20:37:01 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-03-22 22:11:35 -0400 |
commit | c70c176ff8c3ff0ac6ef9a831cd591ea9a66bd1a (patch) | |
tree | fbeffaadd5bf1aed0daab320f797adabe8b3916a /lib/kobject.c | |
parent | f759741d9d913eb57784a94b9bca78b376fc26a9 (diff) |
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>
Diffstat (limited to 'lib/kobject.c')
-rw-r--r-- | lib/kobject.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/kobject.c b/lib/kobject.c index 445dcaeb0f56..763d70a18941 100644 --- a/lib/kobject.c +++ b/lib/kobject.c | |||
@@ -601,12 +601,15 @@ struct kobject *kobject_get(struct kobject *kobj) | |||
601 | } | 601 | } |
602 | EXPORT_SYMBOL(kobject_get); | 602 | EXPORT_SYMBOL(kobject_get); |
603 | 603 | ||
604 | static struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj) | 604 | struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj) |
605 | { | 605 | { |
606 | if (!kobj) | ||
607 | return NULL; | ||
606 | if (!kref_get_unless_zero(&kobj->kref)) | 608 | if (!kref_get_unless_zero(&kobj->kref)) |
607 | kobj = NULL; | 609 | kobj = NULL; |
608 | return kobj; | 610 | return kobj; |
609 | } | 611 | } |
612 | EXPORT_SYMBOL(kobject_get_unless_zero); | ||
610 | 613 | ||
611 | /* | 614 | /* |
612 | * kobject_cleanup - free kobject resources. | 615 | * kobject_cleanup - free kobject resources. |