diff options
author | Pavel Shilovsky <pshilovsky@samba.org> | 2012-09-19 01:20:29 +0200 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2012-09-25 04:46:28 +0200 |
commit | c9de5c80d536e556568ccd45b9599870d4993b7d (patch) | |
tree | 5ae40ff872bc69cf5be996f2e6a75ea746d8ed58 /fs/cifs/smb1ops.c | |
parent | CIFS: Add SMB2 support for cifs_iovec_read (diff) | |
download | linux-c9de5c80d536e556568ccd45b9599870d4993b7d.tar.xz linux-c9de5c80d536e556568ccd45b9599870d4993b7d.zip |
CIFS: Move async write to ops struct
Signed-off-by: Pavel Shilovsky <pshilovsky@samba.org>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | fs/cifs/smb1ops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/smb1ops.c b/fs/cifs/smb1ops.c index e2dbd22cb136..50c3697af5aa 100644 --- a/fs/cifs/smb1ops.c +++ b/fs/cifs/smb1ops.c @@ -786,6 +786,7 @@ struct smb_version_operations smb1_operations = { .close = cifs_close_file, .flush = cifs_flush_file, .async_readv = cifs_async_readv, + .async_writev = cifs_async_writev, }; struct smb_version_values smb1_values = { |