From aeb25ad0b87af2a2af7735f49744a677ebf4fe06 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 10 Jun 2010 14:28:55 -0700 Subject: Fix the build in the non WITH_AIO case (sorry). --- source3/smbd/aio.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'source3') 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) { } -- cgit