Skip to content

Commit

Permalink
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Linus Torvalds committed May 22, 2008
2 parents a0abb93 + 0a891ad commit 75d3bce
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
3 changes: 3 additions & 0 deletions fs/cifs/cifs_spnego.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ cifs_get_spnego_key(struct cifsSesInfo *sesInfo)
dp = description + strlen(description);
sprintf(dp, ";uid=0x%x", sesInfo->linux_uid);

dp = description + strlen(description);
sprintf(dp, ";user=%s", sesInfo->userName);

cFYI(1, ("key description = %s", description));
spnego_key = request_key(&cifs_spnego_key_type, description, "");

Expand Down
18 changes: 6 additions & 12 deletions fs/cifs/cifssmb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2159,8 +2159,7 @@ CIFSSMBCopy(const int xid, struct cifsTconInfo *tcon, const char *fromName,
cFYI(1, ("Send error in copy = %d with %d files copied",
rc, le16_to_cpu(pSMBr->CopyCount)));
}
if (pSMB)
cifs_buf_release(pSMB);
cifs_buf_release(pSMB);

if (rc == -EAGAIN)
goto copyRetry;
Expand Down Expand Up @@ -2249,8 +2248,7 @@ CIFSUnixCreateSymLink(const int xid, struct cifsTconInfo *tcon,
if (rc)
cFYI(1, ("Send error in SetPathInfo create symlink = %d", rc));

if (pSMB)
cifs_buf_release(pSMB);
cifs_buf_release(pSMB);

if (rc == -EAGAIN)
goto createSymLinkRetry;
Expand Down Expand Up @@ -4095,8 +4093,7 @@ CIFSGetDFSRefer(const int xid, struct cifsSesInfo *ses,
target_nodes, nls_codepage);

GetDFSRefExit:
if (pSMB)
cifs_buf_release(pSMB);
cifs_buf_release(pSMB);

if (rc == -EAGAIN)
goto getDFSRetry;
Expand Down Expand Up @@ -5117,8 +5114,7 @@ CIFSSMBUnixSetPerms(const int xid, struct cifsTconInfo *tcon,
if (rc)
cFYI(1, ("SetPathInfo (perms) returned %d", rc));

if (pSMB)
cifs_buf_release(pSMB);
cifs_buf_release(pSMB);
if (rc == -EAGAIN)
goto setPermsRetry;
return rc;
Expand Down Expand Up @@ -5340,8 +5336,7 @@ CIFSSMBQAllEAs(const int xid, struct cifsTconInfo *tcon,
}
}
}
if (pSMB)
cifs_buf_release(pSMB);
cifs_buf_release(pSMB);
if (rc == -EAGAIN)
goto QAllEAsRetry;

Expand Down Expand Up @@ -5490,8 +5485,7 @@ ssize_t CIFSSMBQueryEA(const int xid, struct cifsTconInfo *tcon,
}
}
}
if (pSMB)
cifs_buf_release(pSMB);
cifs_buf_release(pSMB);
if (rc == -EAGAIN)
goto QEARetry;

Expand Down
4 changes: 2 additions & 2 deletions fs/cifs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ static void fill_fake_finddataunix(FILE_UNIX_BASIC_INFO *pfnd_dat,
{
struct inode *pinode = NULL;

memset(pfnd_dat, sizeof(FILE_UNIX_BASIC_INFO), 0);
memset(pfnd_dat, 0, sizeof(FILE_UNIX_BASIC_INFO));

/* __le64 pfnd_dat->EndOfFile = cpu_to_le64(0);
__le64 pfnd_dat->NumOfBytes = cpu_to_le64(0);
Expand Down Expand Up @@ -384,7 +384,7 @@ static int get_sfu_mode(struct inode *inode,
static void fill_fake_finddata(FILE_ALL_INFO *pfnd_dat,
struct super_block *sb)
{
memset(pfnd_dat, sizeof(FILE_ALL_INFO), 0);
memset(pfnd_dat, 0, sizeof(FILE_ALL_INFO));

/* __le64 pfnd_dat->AllocationSize = cpu_to_le64(0);
__le64 pfnd_dat->EndOfFile = cpu_to_le64(0);
Expand Down

0 comments on commit 75d3bce

Please sign in to comment.