Commit 050d2a8b authored by Chen Zhou's avatar Chen Zhou Committed by Steve French
Browse files

cifs: use PTR_ERR_OR_ZERO() to simplify code



PTR_ERR_OR_ZERO contains if(IS_ERR(...)) + PTR_ERR, just use
PTR_ERR_OR_ZERO directly.

Signed-off-by: default avatarChen Zhou <chenzhou10@huawei.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
Reviewed-by: default avatarPaulo Alcantara (SUSE) <pc@cjr.nz>
parent 8bd0d701
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -661,7 +661,7 @@ static int __dfs_cache_find(const unsigned int xid, struct cifs_ses *ses,
	 */
	if (noreq) {
		up_read(&htable_rw_lock);
		return IS_ERR(ce) ? PTR_ERR(ce) : 0;
		return PTR_ERR_OR_ZERO(ce);
	}

	if (!IS_ERR(ce)) {