Commit 03a7fc24 authored by Ryan Van Quinlan's avatar Ryan Van Quinlan Committed by Greg Kroah-Hartman

staging: lustre: lclient: NULL comparison style

Fixes checkpatch.pl checks:
CHECK: Comparison to NULL could be written ...
Signed-off-by: default avatarRyan Van Quinlan <ryan.van.quinlan@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2e33ffb6
...@@ -73,7 +73,7 @@ blkcnt_t dirty_cnt(struct inode *inode) ...@@ -73,7 +73,7 @@ blkcnt_t dirty_cnt(struct inode *inode)
struct ccc_object *vob = cl_inode2ccc(inode); struct ccc_object *vob = cl_inode2ccc(inode);
void *results[1]; void *results[1];
if (inode->i_mapping != NULL) if (inode->i_mapping)
cnt += radix_tree_gang_lookup_tag(&inode->i_mapping->page_tree, cnt += radix_tree_gang_lookup_tag(&inode->i_mapping->page_tree,
results, 0, 1, results, 0, 1,
PAGECACHE_TAG_DIRTY); PAGECACHE_TAG_DIRTY);
...@@ -129,7 +129,7 @@ int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io, ...@@ -129,7 +129,7 @@ int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
current); current);
cio->cui_glimpse = 0; cio->cui_glimpse = 0;
if (lock == NULL) if (!lock)
return 0; return 0;
if (IS_ERR(lock)) if (IS_ERR(lock))
...@@ -255,7 +255,7 @@ int cl_local_size(struct inode *inode) ...@@ -255,7 +255,7 @@ int cl_local_size(struct inode *inode)
*descr = whole_file; *descr = whole_file;
descr->cld_obj = clob; descr->cld_obj = clob;
lock = cl_lock_peek(env, io, descr, "localsize", current); lock = cl_lock_peek(env, io, descr, "localsize", current);
if (lock != NULL) { if (lock) {
cl_merge_lvb(env, inode); cl_merge_lvb(env, inode);
cl_unuse(env, lock); cl_unuse(env, lock);
cl_lock_release(env, lock, "localsize", current); cl_lock_release(env, lock, "localsize", current);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment