1
0
Fork 0

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

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Al Viro 2007-02-01 13:52:43 +00:00 committed by Linus Torvalds
parent eb79722717
commit fc2dd2e51a
1 changed files with 1 additions and 1 deletions

View File

@ -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))