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

Commit 8da0f934 authored by Anna Schumaker's avatar Anna Schumaker Committed by Trond Myklebust
Browse files

NFS: Clean up nfs4_check_server_scope()

parent ddfa0d48
Loading
Loading
Loading
Loading
+3 −12
Original line number Diff line number Diff line
@@ -624,18 +624,9 @@ nfs4_check_server_scope(struct nfs41_server_scope *s1,
			struct nfs41_server_scope *s2)
{
	if (s1->server_scope_sz != s2->server_scope_sz)
		goto out_scope_mismatch;
	if (memcmp(s1->server_scope, s2->server_scope,
		   s1->server_scope_sz) != 0)
		goto out_scope_mismatch;

	dprintk("NFS: --> %s server scopes match\n", __func__);
	return true;

out_scope_mismatch:
	dprintk("NFS: --> %s server scopes do not match\n",
		__func__);
		return false;
	return memcmp(s1->server_scope, s2->server_scope,
					s1->server_scope_sz) == 0;
}

/**