diff options
author | Jeremy Allison <jra@samba.org> | 2010-06-10 14:28:55 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-06-10 14:28:55 -0700 |
commit | aeb25ad0b87af2a2af7735f49744a677ebf4fe06 (patch) | |
tree | de4667a2c84772687320a408b7573401294ef208 /source3/smbd | |
parent | a8c051b2f91852b5228d6a903d6a7fd50d22de28 (diff) | |
download | samba-aeb25ad0b87af2a2af7735f49744a677ebf4fe06.tar.gz samba-aeb25ad0b87af2a2af7735f49744a677ebf4fe06.tar.bz2 samba-aeb25ad0b87af2a2af7735f49744a677ebf4fe06.zip |
Fix the build in the non WITH_AIO case (sorry).
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/aio.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/source3/smbd/aio.c b/source3/smbd/aio.c index c1f82ef0aa..a5a0e44738 100644 --- a/source3/smbd/aio.c +++ b/source3/smbd/aio.c @@ -1010,6 +1010,26 @@ NTSTATUS schedule_aio_write_and_X(connection_struct *conn, return NT_STATUS_RETRY; } +NTSTATUS schedule_smb2_aio_read(connection_struct *conn, + struct smb_request *smbreq, + files_struct *fsp, + char *inbuf, + SMB_OFF_T startpos, + size_t smb_maxcnt) +{ + return NT_STATUS_RETRY; +} + +NTSTATUS schedule_aio_smb2_write(connection_struct *conn, + struct smb_request *smbreq, + files_struct *fsp, + uint64_t in_offset, + DATA_BLOB in_data, + bool write_through) +{ + return NT_STATUS_RETRY; +} + void cancel_aio_by_fsp(files_struct *fsp) { } |