diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-01-22 18:04:17 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-01-27 15:28:09 +0100 |
commit | b8c416fe2ac37b3ba0124811cfeddf2015c8d31f (patch) | |
tree | 60aa4fe0665eff115b11cd13ca85610b2781234f /source3/modules | |
parent | d361e332a86075c5c1f76e334b869da8aaa34b01 (diff) | |
download | samba-b8c416fe2ac37b3ba0124811cfeddf2015c8d31f.tar.gz samba-b8c416fe2ac37b3ba0124811cfeddf2015c8d31f.tar.bz2 samba-b8c416fe2ac37b3ba0124811cfeddf2015c8d31f.zip |
s3:smbd: convert aio to use tevent_signal
metze
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_aio_fork.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/modules/vfs_aio_fork.c b/source3/modules/vfs_aio_fork.c index 30b14f280f..e29ce5e7a8 100644 --- a/source3/modules/vfs_aio_fork.c +++ b/source3/modules/vfs_aio_fork.c @@ -406,8 +406,7 @@ static void handle_aio_completion(struct event_context *event_ctx, DEBUG(10, ("mid %d finished\n", (int)mid)); - aio_request_done(mid); - process_aio_queue(); + smbd_aio_complete_mid(mid); } static int aio_child_destructor(struct aio_child *child) |