Przeglądaj źródła

Staging: lustre: lmv_obd: Remove redundant test.

filp != NULL is already checked, so no need to check it again.

Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Sandhya Bankar 9 lat temu
rodzic
commit
0249316947
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      drivers/staging/lustre/lustre/lmv/lmv_obd.c

+ 1 - 1
drivers/staging/lustre/lustre/lmv/lmv_obd.c

@@ -865,7 +865,7 @@ static int lmv_hsm_ct_register(struct lmv_obd *lmv, unsigned int cmd, int len,
 
 	rc = libcfs_kkuc_group_add(filp, lk->lk_uid, lk->lk_group,
 				   &kcd, sizeof(kcd));
-	if (rc && filp)
+	if (rc)
 		fput(filp);
 
 	return rc;