public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] endianness bitrot in cifs
@ 2006-08-15  9:16 Al Viro
  2006-08-15 13:39 ` Steve French
  0 siblings, 1 reply; 2+ messages in thread
From: Al Viro @ 2006-08-15  9:16 UTC (permalink / raw)
  To: Steve French; +Cc: linux-kernel

	le16 compared to host-endian constant
	u8 fed to le32_to_cpu()
	le16 compared to host-endian constant

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
----

diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
index 19678c5..6a76ae5 100644
--- a/fs/cifs/cifssmb.c
+++ b/fs/cifs/cifssmb.c
@@ -477,7 +477,7 @@ #ifdef CONFIG_CIFS_WEAK_PW_HASH 
 		/* BB get server time for time conversions and add
 		code to use it and timezone since this is not UTC */	
 
-		if (rsp->EncryptionKeyLength == CIFS_CRYPTO_KEY_SIZE) {
+		if (rsp->EncryptionKeyLength == cpu_to_le16(CIFS_CRYPTO_KEY_SIZE)) {
 			memcpy(server->cryptKey, rsp->EncryptionKey,
 				CIFS_CRYPTO_KEY_SIZE);
 		} else if (server->secMode & SECMODE_PW_ENCRYPT) {
diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c
index 03bbcb3..105761e 100644
--- a/fs/cifs/readdir.c
+++ b/fs/cifs/readdir.c
@@ -556,7 +556,7 @@ static int cifs_entry_is_dot(char *curre
 		FIND_FILE_STANDARD_INFO * pFindData =
 			(FIND_FILE_STANDARD_INFO *)current_entry;
 		filename = &pFindData->FileName[0];
-		len = le32_to_cpu(pFindData->FileNameLength);
+		len = pFindData->FileNameLength;
 	} else {
 		cFYI(1,("Unknown findfirst level %d",cfile->srch_inf.info_level));
 	}
diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c
index 7202d53..d1705ab 100644
--- a/fs/cifs/sess.c
+++ b/fs/cifs/sess.c
@@ -372,7 +372,7 @@ #ifdef CONFIG_CIFS_WEAK_PW_HASH
 
 		/* no capabilities flags in old lanman negotiation */
 
-		pSMB->old_req.PasswordLength = CIFS_SESS_KEY_SIZE; 
+		pSMB->old_req.PasswordLength = cpu_to_le16(CIFS_SESS_KEY_SIZE); 
 		/* BB calculate hash with password */
 		/* and copy into bcc */
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] endianness bitrot in cifs
  2006-08-15  9:16 [PATCH] endianness bitrot in cifs Al Viro
@ 2006-08-15 13:39 ` Steve French
  0 siblings, 0 replies; 2+ messages in thread
From: Steve French @ 2006-08-15 13:39 UTC (permalink / raw)
  To: Al Viro; +Cc: linux-kernel

Al Viro wrote:
> 	le16 compared to host-endian constant
> 	u8 fed to le32_to_cpu()
> 	le16 compared to host-endian constant
>   

Thanks - I have applied this to the cifs git tree so should be in mm soon.
Fortunately this only hit the relatively new lanman support (e.g. Win9x 
and OS/2 server support not as common anymore - but was needed before 
smbfs deprecation).

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-08-15 13:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-15  9:16 [PATCH] endianness bitrot in cifs Al Viro
2006-08-15 13:39 ` Steve French

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox