mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
fs: cifs: Drop unlikely before IS_ERR(_OR_NULL)
IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag, so no need to do that again from its callers. Drop it. Cc: linux-cifs@vger.kernel.org Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Signed-off-by: Steve French <stfrench@microsoft.com> Reviewed-by: Paulo Alcantara <palcantara@suse.de>
This commit is contained in:
parent
d81f09748d
commit
06f2fca7ff
@ -492,7 +492,7 @@ static struct dfs_cache_entry *__find_cache_entry(unsigned int hash,
|
|||||||
#ifdef CONFIG_CIFS_DEBUG2
|
#ifdef CONFIG_CIFS_DEBUG2
|
||||||
char *name = get_tgt_name(ce);
|
char *name = get_tgt_name(ce);
|
||||||
|
|
||||||
if (unlikely(IS_ERR(name))) {
|
if (IS_ERR(name)) {
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
return ERR_CAST(name);
|
return ERR_CAST(name);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user