Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8b031eb authored by Tobias Klauser's avatar Tobias Klauser Committed by Trond Myklebust
Browse files

NFS: Remove redundant unlikely()



IS_ERR() already implies unlikely(), so it can be omitted here.

Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 79691836
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -246,7 +246,7 @@ void nfs_umount(const struct nfs_mount_request *info)
		args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
		args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;


	clnt = rpc_create(&args);
	clnt = rpc_create(&args);
	if (unlikely(IS_ERR(clnt)))
	if (IS_ERR(clnt))
		goto out_clnt_err;
		goto out_clnt_err;


	dprintk("NFS: sending UMNT request for %s:%s\n",
	dprintk("NFS: sending UMNT request for %s:%s\n",