cifs endianness fixes

__le16 fields used as host-endian.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Steve French <smfrench@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Al Viro 2008-06-02 10:59:02 +01:00 committed by Linus Torvalds
parent 6399e7acbf
commit 1d92cfd54a
1 changed files with 3 additions and 3 deletions

View File

@ -3927,9 +3927,9 @@ parse_DFS_referrals(TRANSACTION2_GET_DFS_REFER_RSP *pSMBr,
} }
ref = (struct dfs_referral_level_3 *) &(pSMBr->referrals); ref = (struct dfs_referral_level_3 *) &(pSMBr->referrals);
if (ref->VersionNumber != 3) { if (ref->VersionNumber != cpu_to_le16(3)) {
cERROR(1, ("Referrals of V%d version are not supported," cERROR(1, ("Referrals of V%d version are not supported,"
"should be V3", ref->VersionNumber)); "should be V3", le16_to_cpu(ref->VersionNumber)));
rc = -EINVAL; rc = -EINVAL;
goto parse_DFS_referrals_exit; goto parse_DFS_referrals_exit;
} }
@ -3977,7 +3977,7 @@ parse_DFS_referrals(TRANSACTION2_GET_DFS_REFER_RSP *pSMBr,
if (rc) if (rc)
goto parse_DFS_referrals_exit; goto parse_DFS_referrals_exit;
ref += ref->Size; ref += le16_to_cpu(ref->Size);
} }
parse_DFS_referrals_exit: parse_DFS_referrals_exit: