diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-22 11:08:25 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-22 11:08:25 -0400 |
| commit | 75d3bce2fc0a80f435fe12f2c9ed2632c8ac29e4 (patch) | |
| tree | b9080999d2fbe38aa1242ac4b838e17ebf1ed656 | |
| parent | a0abb93bf9dc590b031a1123f3e6c6c225c1cdd1 (diff) | |
| parent | 0a891adccc867c28b022128bc342a779e476c816 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6:
[CIFS] Fix reversed memset arguments
Adds username in the upcall key for unattended mounts with keytab
[CIFS] Remove redundant NULL check
| -rw-r--r-- | fs/cifs/cifs_spnego.c | 3 | ||||
| -rw-r--r-- | fs/cifs/cifssmb.c | 18 | ||||
| -rw-r--r-- | fs/cifs/inode.c | 4 |
3 files changed, 11 insertions, 14 deletions
diff --git a/fs/cifs/cifs_spnego.c b/fs/cifs/cifs_spnego.c index 6653e29637a7..7013aaff6aed 100644 --- a/fs/cifs/cifs_spnego.c +++ b/fs/cifs/cifs_spnego.c | |||
| @@ -119,6 +119,9 @@ cifs_get_spnego_key(struct cifsSesInfo *sesInfo) | |||
| 119 | dp = description + strlen(description); | 119 | dp = description + strlen(description); |
| 120 | sprintf(dp, ";uid=0x%x", sesInfo->linux_uid); | 120 | sprintf(dp, ";uid=0x%x", sesInfo->linux_uid); |
| 121 | 121 | ||
| 122 | dp = description + strlen(description); | ||
| 123 | sprintf(dp, ";user=%s", sesInfo->userName); | ||
| 124 | |||
| 122 | cFYI(1, ("key description = %s", description)); | 125 | cFYI(1, ("key description = %s", description)); |
| 123 | spnego_key = request_key(&cifs_spnego_key_type, description, ""); | 126 | spnego_key = request_key(&cifs_spnego_key_type, description, ""); |
| 124 | 127 | ||
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 7b9938445b07..9b8b4cfdf993 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c | |||
| @@ -2159,8 +2159,7 @@ copyRetry: | |||
| 2159 | cFYI(1, ("Send error in copy = %d with %d files copied", | 2159 | cFYI(1, ("Send error in copy = %d with %d files copied", |
| 2160 | rc, le16_to_cpu(pSMBr->CopyCount))); | 2160 | rc, le16_to_cpu(pSMBr->CopyCount))); |
| 2161 | } | 2161 | } |
| 2162 | if (pSMB) | 2162 | cifs_buf_release(pSMB); |
| 2163 | cifs_buf_release(pSMB); | ||
| 2164 | 2163 | ||
| 2165 | if (rc == -EAGAIN) | 2164 | if (rc == -EAGAIN) |
| 2166 | goto copyRetry; | 2165 | goto copyRetry; |
| @@ -2249,8 +2248,7 @@ createSymLinkRetry: | |||
| 2249 | if (rc) | 2248 | if (rc) |
| 2250 | cFYI(1, ("Send error in SetPathInfo create symlink = %d", rc)); | 2249 | cFYI(1, ("Send error in SetPathInfo create symlink = %d", rc)); |
| 2251 | 2250 | ||
| 2252 | if (pSMB) | 2251 | cifs_buf_release(pSMB); |
| 2253 | cifs_buf_release(pSMB); | ||
| 2254 | 2252 | ||
| 2255 | if (rc == -EAGAIN) | 2253 | if (rc == -EAGAIN) |
| 2256 | goto createSymLinkRetry; | 2254 | goto createSymLinkRetry; |
| @@ -4095,8 +4093,7 @@ getDFSRetry: | |||
| 4095 | target_nodes, nls_codepage); | 4093 | target_nodes, nls_codepage); |
| 4096 | 4094 | ||
| 4097 | GetDFSRefExit: | 4095 | GetDFSRefExit: |
| 4098 | if (pSMB) | 4096 | cifs_buf_release(pSMB); |
| 4099 | cifs_buf_release(pSMB); | ||
| 4100 | 4097 | ||
| 4101 | if (rc == -EAGAIN) | 4098 | if (rc == -EAGAIN) |
| 4102 | goto getDFSRetry; | 4099 | goto getDFSRetry; |
| @@ -5117,8 +5114,7 @@ setPermsRetry: | |||
| 5117 | if (rc) | 5114 | if (rc) |
| 5118 | cFYI(1, ("SetPathInfo (perms) returned %d", rc)); | 5115 | cFYI(1, ("SetPathInfo (perms) returned %d", rc)); |
| 5119 | 5116 | ||
| 5120 | if (pSMB) | 5117 | cifs_buf_release(pSMB); |
| 5121 | cifs_buf_release(pSMB); | ||
| 5122 | if (rc == -EAGAIN) | 5118 | if (rc == -EAGAIN) |
| 5123 | goto setPermsRetry; | 5119 | goto setPermsRetry; |
| 5124 | return rc; | 5120 | return rc; |
| @@ -5340,8 +5336,7 @@ QAllEAsRetry: | |||
| 5340 | } | 5336 | } |
| 5341 | } | 5337 | } |
| 5342 | } | 5338 | } |
| 5343 | if (pSMB) | 5339 | cifs_buf_release(pSMB); |
| 5344 | cifs_buf_release(pSMB); | ||
| 5345 | if (rc == -EAGAIN) | 5340 | if (rc == -EAGAIN) |
| 5346 | goto QAllEAsRetry; | 5341 | goto QAllEAsRetry; |
| 5347 | 5342 | ||
| @@ -5490,8 +5485,7 @@ QEARetry: | |||
| 5490 | } | 5485 | } |
| 5491 | } | 5486 | } |
| 5492 | } | 5487 | } |
| 5493 | if (pSMB) | 5488 | cifs_buf_release(pSMB); |
| 5494 | cifs_buf_release(pSMB); | ||
| 5495 | if (rc == -EAGAIN) | 5489 | if (rc == -EAGAIN) |
| 5496 | goto QEARetry; | 5490 | goto QEARetry; |
| 5497 | 5491 | ||
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 00ced97bd53a..129dbfe4dca7 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
| @@ -172,7 +172,7 @@ static void fill_fake_finddataunix(FILE_UNIX_BASIC_INFO *pfnd_dat, | |||
| 172 | { | 172 | { |
| 173 | struct inode *pinode = NULL; | 173 | struct inode *pinode = NULL; |
| 174 | 174 | ||
| 175 | memset(pfnd_dat, sizeof(FILE_UNIX_BASIC_INFO), 0); | 175 | memset(pfnd_dat, 0, sizeof(FILE_UNIX_BASIC_INFO)); |
| 176 | 176 | ||
| 177 | /* __le64 pfnd_dat->EndOfFile = cpu_to_le64(0); | 177 | /* __le64 pfnd_dat->EndOfFile = cpu_to_le64(0); |
| 178 | __le64 pfnd_dat->NumOfBytes = cpu_to_le64(0); | 178 | __le64 pfnd_dat->NumOfBytes = cpu_to_le64(0); |
| @@ -384,7 +384,7 @@ static int get_sfu_mode(struct inode *inode, | |||
| 384 | static void fill_fake_finddata(FILE_ALL_INFO *pfnd_dat, | 384 | static void fill_fake_finddata(FILE_ALL_INFO *pfnd_dat, |
| 385 | struct super_block *sb) | 385 | struct super_block *sb) |
| 386 | { | 386 | { |
| 387 | memset(pfnd_dat, sizeof(FILE_ALL_INFO), 0); | 387 | memset(pfnd_dat, 0, sizeof(FILE_ALL_INFO)); |
| 388 | 388 | ||
| 389 | /* __le64 pfnd_dat->AllocationSize = cpu_to_le64(0); | 389 | /* __le64 pfnd_dat->AllocationSize = cpu_to_le64(0); |
| 390 | __le64 pfnd_dat->EndOfFile = cpu_to_le64(0); | 390 | __le64 pfnd_dat->EndOfFile = cpu_to_le64(0); |
