Commit 7f2ec240 authored by Pavel Shilovsky's avatar Pavel Shilovsky

Add mmap for nobrl direct shares for legacy

parent 55983738
...@@ -842,7 +842,7 @@ const struct file_operations cifs_file_nobrl_ops = { ...@@ -842,7 +842,7 @@ const struct file_operations cifs_file_nobrl_ops = {
}; };
const struct file_operations cifs_file_direct_nobrl_ops = { const struct file_operations cifs_file_direct_nobrl_ops = {
/* no mmap, no aio, no readv - /* no aio, no readv -
BB reevaluate whether they can be done with directio, no cache */ BB reevaluate whether they can be done with directio, no cache */
.read = cifs_user_read, .read = cifs_user_read,
.write = cifs_user_write, .write = cifs_user_write,
...@@ -850,6 +850,7 @@ const struct file_operations cifs_file_direct_nobrl_ops = { ...@@ -850,6 +850,7 @@ const struct file_operations cifs_file_direct_nobrl_ops = {
.release = cifs_close, .release = cifs_close,
.fsync = cifs_fsync, .fsync = cifs_fsync,
.flush = cifs_flush, .flush = cifs_flush,
.mmap = cifs_file_mmap,
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22) #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
.sendfile = generic_file_sendfile, /* BB removeme BB */ .sendfile = generic_file_sendfile, /* BB removeme BB */
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment