[CIFS] Cleanup extra whitespace in dmesg logging. Update cifs change log
This commit is contained in:
@@ -3,7 +3,10 @@ Version 1.43
|
||||
POSIX locking to servers which support CIFS POSIX Extensions
|
||||
(disabled by default controlled by proc/fs/cifs/Experimental).
|
||||
Handle conversion of long share names (especially Asian languages)
|
||||
to Unicode during mount.
|
||||
to Unicode during mount. Fix memory leak in sess struct on reconnect.
|
||||
Fix rare oops after acpi suspend. Fix O_TRUNC opens to overwrite on
|
||||
cifs open which helps rare case when setpathinfo fails or server does
|
||||
not support it.
|
||||
|
||||
Version 1.42
|
||||
------------
|
||||
|
@@ -531,7 +531,7 @@ int cifs_closedir(struct inode *inode, struct file *file)
|
||||
(struct cifsFileInfo *)file->private_data;
|
||||
char *ptmp;
|
||||
|
||||
cFYI(1, ("Closedir inode = 0x%p with ", inode));
|
||||
cFYI(1, ("Closedir inode = 0x%p", inode));
|
||||
|
||||
xid = GetXid();
|
||||
|
||||
|
@@ -430,7 +430,7 @@ int cifs_get_inode_info(struct inode **pinode,
|
||||
will match rather than setting to:
|
||||
(pTcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFE00;*/
|
||||
|
||||
/* Linux can not store file creation time unfortunately so we ignore it */
|
||||
/* Linux can not store file creation time so ignore it */
|
||||
inode->i_atime =
|
||||
cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastAccessTime));
|
||||
inode->i_mtime =
|
||||
@@ -798,7 +798,7 @@ int cifs_rmdir(struct inode *inode, struct dentry *direntry)
|
||||
char *full_path = NULL;
|
||||
struct cifsInodeInfo *cifsInode;
|
||||
|
||||
cFYI(1, ("cifs_rmdir, inode = 0x%p with ", inode));
|
||||
cFYI(1, ("cifs_rmdir, inode = 0x%p", inode));
|
||||
|
||||
xid = GetXid();
|
||||
|
||||
|
@@ -186,8 +186,7 @@ cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
|
||||
inode->i_sb,xid);
|
||||
|
||||
if (rc != 0) {
|
||||
cFYI(1,
|
||||
("Create symlink worked but get_inode_info failed with rc = %d ",
|
||||
cFYI(1, ("Create symlink ok, getinodeinfo fail rc = %d",
|
||||
rc));
|
||||
} else {
|
||||
if (pTcon->nocase)
|
||||
|
@@ -654,8 +654,7 @@ SendReceive(const unsigned int xid, struct cifsSesInfo *ses,
|
||||
|
||||
if (in_buf->smb_buf_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
|
||||
up(&ses->server->tcpSem);
|
||||
cERROR(1,
|
||||
("Illegal length, greater than maximum frame, %d ",
|
||||
cERROR(1, ("Illegal length, greater than maximum frame, %d",
|
||||
in_buf->smb_buf_length));
|
||||
DeleteMidQEntry(midQ);
|
||||
/* If not lock req, update # of requests on wire to server */
|
||||
|
Reference in New Issue
Block a user