diff options
author | Pavel Shilovsky <piastryyy@gmail.com> | 2010-03-27 02:00:49 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2010-03-27 02:00:49 +0000 |
commit | 810627a013163cd294762d57c0ea2ec055ffe4f6 (patch) | |
tree | d192aa00610334dddd0bba83a2ffc78351558164 | |
parent | ae6be51ed01d6c4aaf249a207b4434bc7785853b (diff) | |
download | op-kernel-dev-810627a013163cd294762d57c0ea2ec055ffe4f6.zip op-kernel-dev-810627a013163cd294762d57c0ea2ec055ffe4f6.tar.gz |
[CIFS] Add mmap for direct, nobrl cifs mount types
without mmap functions in file_ops OpenOffice can't save changes in
existing document. The same situation you can see with gedit. Also, a.out
format of files can't be executed without mmap.
Signed-off-by: Pavel Shilovsky <piastryyy@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
-rw-r--r-- | fs/cifs/cifsfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 5183bc2..ded66be 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -808,6 +808,7 @@ const struct file_operations cifs_file_direct_nobrl_ops = { .release = cifs_close, .fsync = cifs_fsync, .flush = cifs_flush, + .mmap = cifs_file_mmap, .splice_read = generic_file_splice_read, #ifdef CONFIG_CIFS_POSIX .unlocked_ioctl = cifs_ioctl, |