Commit fc2dd2e5 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] endianness bug: ntohl() misspelled as >> 24 in fh_verify().

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent eb797227
......@@ -269,7 +269,7 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
"acc=%x, error=%d\n",
dentry->d_parent->d_name.name,
dentry->d_name.name,
access, (error >> 24));
access, ntohl(error));
}
out:
if (exp && !IS_ERR(exp))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment