summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_aio_linux.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 10:24:12 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:59 +0100
commit9ececaae5c13216ce9e29eebb0fad0d7a0e2ab90 (patch)
tree64d65bb8a47376c7983d87be6f9e0715f2c92ed4 /source3/modules/vfs_aio_linux.c
parentb7a925f56bb03aa80b043bb355203670edd75628 (diff)
downloadsamba-9ececaae5c13216ce9e29eebb0fad0d7a0e2ab90.tar.gz
samba-9ececaae5c13216ce9e29eebb0fad0d7a0e2ab90.tar.bz2
samba-9ececaae5c13216ce9e29eebb0fad0d7a0e2ab90.zip
s3:modules: s/struct fd_event/struct tevent_fd
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/modules/vfs_aio_linux.c')
-rw-r--r--source3/modules/vfs_aio_linux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_aio_linux.c b/source3/modules/vfs_aio_linux.c
index a8bc679703..618897527e 100644
--- a/source3/modules/vfs_aio_linux.c
+++ b/source3/modules/vfs_aio_linux.c
@@ -29,12 +29,12 @@
static int event_fd = -1;
static io_context_t io_ctx;
-static struct fd_event *aio_read_event;
+static struct tevent_fd *aio_read_event;
static bool used;
static unsigned num_busy;
static void aio_linux_done(struct tevent_context *event_ctx,
- struct fd_event *event,
+ struct tevent_fd *event,
uint16 flags, void *private_data);
/************************************************************************
@@ -247,7 +247,7 @@ static struct tevent_req *aio_linux_fsync_send(
}
static void aio_linux_done(struct tevent_context *event_ctx,
- struct fd_event *event,
+ struct tevent_fd *event,
uint16 flags, void *private_data)
{
uint64_t num_events = 0;