lkml.org 
[lkml]   [2018]   [Jul]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] staging: erofs: use the wrapped PTR_ERR_OR_ZERO instead of open code
Date
Just clean up and logic doesn't change.

Link: https://lists.01.org/pipermail/kbuild-all/2018-July/050766.html
Fixes: d72d1ce60174 ("staging: erofs: add namei functions")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Gao Xiang <gaoxiang25@huawei.com>
---
drivers/staging/erofs/namei.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/erofs/namei.c b/drivers/staging/erofs/namei.c
index d2a0da3..546a471 100644
--- a/drivers/staging/erofs/namei.c
+++ b/drivers/staging/erofs/namei.c
@@ -195,7 +195,7 @@ int erofs_namei(struct inode *dir,
kunmap_atomic(data);
put_page(page);

- return IS_ERR(de) ? PTR_ERR(de) : 0;
+ return PTR_ERR_OR_ZERO(de);
}

/* NOTE: i_mutex is already held by vfs */
--
1.9.1
\
 
 \ /
  Last update: 2018-07-30 03:51    [W:0.113 / U:0.212 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site