diff options
author | Steve French <sfrench@us.ibm.com> | 2005-09-20 20:49:16 -0700 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-09-20 20:49:16 -0700 |
commit | e30dcf3a1905b4d2154f95db5fdfdf69691b4f0e (patch) | |
tree | 13fb11eff9f5bbbfae6eeefaf8f6a56c76885347 /fs/cifs/cifsfs.c | |
parent | 3e87d80391c84eefceb4bda94a6363661dba4f71 (diff) |
[CIFS] Add support for legacy servers part eight. Write fixes for Windows
ME, and do not set ctime unless explicitly requested with atime and/or
mtime (it gets thrown away by most servers anyway as there is no way to set
this via posix).
Signed-off-by: Steve French (sfrench@us.ibm.com)
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 43fb2aafa52..f738c8b19e3 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -256,7 +256,7 @@ cifs_alloc_inode(struct super_block *sb) cifs_inode->clientCanCacheAll = FALSE; cifs_inode->vfs_inode.i_blksize = CIFS_MAX_MSGSIZE; cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */ - + cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME; INIT_LIST_HEAD(&cifs_inode->openFileList); return &cifs_inode->vfs_inode; } |