diff options
author | NeilBrown <neilb@suse.com> | 2018-03-29 07:26:48 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-04-23 16:16:58 +0300 |
commit | 05e6557b8ed833546ee2b66ce6b58fecf09f439e (patch) | |
tree | a2cd87c97111677ec5a30d5f82260482c1d64f9f /drivers/staging/vt6655 | |
parent | 93aa2c2a5091bd47819a3ead4af70fb57fda5065 (diff) | |
download | linux-05e6557b8ed833546ee2b66ce6b58fecf09f439e.tar.xz |
staging: lustre: add container_of_safe()
Luster has a container_of0() function which is similar to
container_of() but passes an IS_ERR_OR_NULL() pointer through
unchanged.
This could be generally useful: bcache at last has a similar function.
Naming is hard, but the precedent set by hlist_entry_safe() suggests
a _safe suffix might be most consistent.
So add container_of_safe() to kernel.h, and replace all occurrences of
container_of0() with one of
- list_first_entry, list_next_entry, when that is a better fit,
- container_of(), when the pointer is used as a validpointer in
surrounding code,
- container_of_safe() when there is no obviously better alternative.
Signed-off-by: NeilBrown <neilb@suse.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655')
0 files changed, 0 insertions, 0 deletions