staging: lustre: modified comparisons against NULL
The explicit comparisons against NULL has been modified to be shorter. Signed-off-by: Mario Bambagini <mario.bambagini@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6b0e2d6232
commit
911677393b
1 changed files with 2 additions and 2 deletions
|
@ -236,7 +236,7 @@ static int capa_thread_main(void *unused)
|
|||
|
||||
/* NB iput() is in ll_update_capa() */
|
||||
inode = igrab(ocapa->u.cli.inode);
|
||||
if (inode == NULL) {
|
||||
if (!inode) {
|
||||
DEBUG_CAPA(D_ERROR, &ocapa->c_capa,
|
||||
"igrab failed for");
|
||||
continue;
|
||||
|
@ -380,7 +380,7 @@ struct obd_capa *ll_mdscapa_get(struct inode *inode)
|
|||
struct ll_inode_info *lli = ll_i2info(inode);
|
||||
struct obd_capa *ocapa;
|
||||
|
||||
LASSERT(inode != NULL);
|
||||
LASSERT(inode);
|
||||
|
||||
if ((ll_i2sbi(inode)->ll_flags & LL_SBI_MDS_CAPA) == 0)
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue