From: Tobias Klauser Date: Tue, 26 Sep 2017 09:22:58 +0000 (+0200) Subject: kcm: Remove redundant unlikely() X-Git-Tag: microblaze-4.16-rc1~330^2~631 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=d9db5e3680c87fdbdf86fcb1c42caea4bf98680c;p=linux-2.6-microblaze.git kcm: Remove redundant unlikely() IS_ERR() already implies unlikely(), so it can be omitted. Signed-off-by: Tobias Klauser Signed-off-by: David S. Miller --- diff --git a/net/kcm/kcmsock.c b/net/kcm/kcmsock.c index af4e76ac88ff..0b750a22c4b9 100644 --- a/net/kcm/kcmsock.c +++ b/net/kcm/kcmsock.c @@ -1650,7 +1650,7 @@ static int kcm_clone(struct socket *osock, struct kcm_clone *info, } newfile = sock_alloc_file(newsock, 0, osock->sk->sk_prot_creator->name); - if (unlikely(IS_ERR(newfile))) { + if (IS_ERR(newfile)) { err = PTR_ERR(newfile); goto out_sock_alloc_fail; }