NFS: Clean up nfs41_same_server_scope()
The function is cleaner this way, since we can use the result of memcmp() directly Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
This commit is contained in:
parent
81b68de493
commit
49ad0145c3
|
@ -7120,11 +7120,9 @@ static bool
|
||||||
nfs41_same_server_scope(struct nfs41_server_scope *a,
|
nfs41_same_server_scope(struct nfs41_server_scope *a,
|
||||||
struct nfs41_server_scope *b)
|
struct nfs41_server_scope *b)
|
||||||
{
|
{
|
||||||
if (a->server_scope_sz == b->server_scope_sz &&
|
if (a->server_scope_sz != b->server_scope_sz)
|
||||||
memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0)
|
return false;
|
||||||
return true;
|
return memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0;
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in New Issue