2017-07-08 07:11:26 -07:00
|
|
|
From 9c2428d179473d7bd8e383132e408edd330f8e80 Mon Sep 17 00:00:00 2001
|
2017-04-08 18:21:23 -07:00
|
|
|
From: Sebastian Lackner <sebastian@fds-team.de>
|
|
|
|
Date: Sun, 9 Apr 2017 03:13:25 +0200
|
|
|
|
Subject: server: Skip async completion when possible.
|
|
|
|
|
|
|
|
---
|
|
|
|
dlls/ntdll/tests/pipe.c | 2 --
|
2017-07-08 07:11:26 -07:00
|
|
|
server/async.c | 10 ++++++++--
|
|
|
|
server/fd.c | 8 ++++----
|
|
|
|
server/file.h | 2 +-
|
|
|
|
4 files changed, 13 insertions(+), 9 deletions(-)
|
2017-04-08 18:21:23 -07:00
|
|
|
|
|
|
|
diff --git a/dlls/ntdll/tests/pipe.c b/dlls/ntdll/tests/pipe.c
|
2017-07-08 07:11:26 -07:00
|
|
|
index bda9a144ade..aa240edea21 100644
|
2017-04-08 18:21:23 -07:00
|
|
|
--- a/dlls/ntdll/tests/pipe.c
|
|
|
|
+++ b/dlls/ntdll/tests/pipe.c
|
|
|
|
@@ -389,9 +389,7 @@ static void test_completion(void)
|
|
|
|
|
|
|
|
pov = (void *)0xdeadbeef;
|
|
|
|
ret = GetQueuedCompletionStatus(port, &num_bytes, &key, &pov, 1000);
|
|
|
|
- todo_wine
|
|
|
|
ok(!ret, "GetQueuedCompletionStatus succeeded\n");
|
|
|
|
- todo_wine
|
|
|
|
ok(pov == NULL, "expected NULL, got %p\n", pov);
|
|
|
|
|
|
|
|
CloseHandle(ov.hEvent);
|
|
|
|
diff --git a/server/async.c b/server/async.c
|
2017-07-08 07:11:26 -07:00
|
|
|
index 3a83a6302bf..770ed493819 100644
|
2017-04-08 18:21:23 -07:00
|
|
|
--- a/server/async.c
|
|
|
|
+++ b/server/async.c
|
2017-07-08 07:11:26 -07:00
|
|
|
@@ -51,6 +51,7 @@ struct async
|
2017-04-08 18:21:23 -07:00
|
|
|
struct iosb *iosb; /* I/O status block */
|
2017-07-08 07:11:26 -07:00
|
|
|
obj_handle_t wait_handle; /* pre-allocated wait handle */
|
|
|
|
int direct_result; /* a flag if we're passing result directly from request instead of APC */
|
|
|
|
+ unsigned int comp_flags; /* completion flags */
|
|
|
|
};
|
2017-04-08 18:21:23 -07:00
|
|
|
|
2017-07-08 07:11:26 -07:00
|
|
|
static void async_dump( struct object *obj, int verbose );
|
|
|
|
@@ -294,6 +295,7 @@ struct async *create_async( struct fd *fd, struct thread *thread, const async_da
|
|
|
|
async->signaled = 0;
|
|
|
|
async->wait_handle = 0;
|
|
|
|
async->direct_result = 0;
|
|
|
|
+ async->comp_flags = 0;
|
2017-04-08 18:21:23 -07:00
|
|
|
|
|
|
|
if (iosb) async->iosb = (struct iosb *)grab_object( iosb );
|
|
|
|
else async->iosb = NULL;
|
2017-07-08 07:11:26 -07:00
|
|
|
@@ -306,7 +308,7 @@ struct async *create_async( struct fd *fd, struct thread *thread, const async_da
|
2017-04-08 18:21:23 -07:00
|
|
|
|
2017-07-08 07:11:26 -07:00
|
|
|
/* create an async associated with iosb for async-based requests
|
|
|
|
* returned async must be passed to async_handoff */
|
|
|
|
-struct async *create_request_async( struct fd *fd, const async_data_t *data )
|
|
|
|
+struct async *create_request_async( struct fd *fd, unsigned int comp_flags, const async_data_t *data )
|
|
|
|
{
|
|
|
|
struct async *async;
|
|
|
|
struct iosb *iosb;
|
|
|
|
@@ -324,6 +326,7 @@ struct async *create_request_async( struct fd *fd, const async_data_t *data )
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
async->direct_result = 1;
|
|
|
|
+ async->comp_flags = comp_flags;
|
|
|
|
}
|
|
|
|
return async;
|
|
|
|
}
|
|
|
|
@@ -438,8 +441,11 @@ void async_set_result( struct object *obj, unsigned int status, apc_param_t tota
|
|
|
|
data.user.args[2] = 0;
|
|
|
|
thread_queue_apc( async->thread, NULL, &data );
|
|
|
|
}
|
|
|
|
- else if (async->data.apc_context)
|
|
|
|
+ else if (async->data.apc_context && (!async->direct_result ||
|
|
|
|
+ !(async->comp_flags & COMPLETION_SKIP_ON_SUCCESS)))
|
|
|
|
+ {
|
|
|
|
add_async_completion( async, async->data.apc_context, status, total );
|
|
|
|
+ }
|
|
|
|
|
|
|
|
if (async->event) set_event( async->event );
|
|
|
|
else if (async->fd) set_fd_signaled( async->fd, 1 );
|
2017-04-08 18:21:23 -07:00
|
|
|
diff --git a/server/fd.c b/server/fd.c
|
2017-07-08 07:11:26 -07:00
|
|
|
index 6747aaabdb4..2a8ecb12b8e 100644
|
2017-04-08 18:21:23 -07:00
|
|
|
--- a/server/fd.c
|
|
|
|
+++ b/server/fd.c
|
2017-07-08 07:11:26 -07:00
|
|
|
@@ -2377,7 +2377,7 @@ DECL_HANDLER(flush)
|
|
|
|
|
|
|
|
if (!fd) return;
|
|
|
|
|
|
|
|
- if ((async = create_request_async( fd, &req->async )))
|
|
|
|
+ if ((async = create_request_async( fd, fd->comp_flags, &req->async )))
|
2017-04-08 18:21:23 -07:00
|
|
|
{
|
2017-07-08 07:11:26 -07:00
|
|
|
reply->event = async_handoff( async, fd->fd_ops->flush( fd, async ), NULL );
|
2017-04-08 18:21:23 -07:00
|
|
|
release_object( async );
|
2017-07-08 07:11:26 -07:00
|
|
|
@@ -2452,7 +2452,7 @@ DECL_HANDLER(read)
|
|
|
|
|
|
|
|
if (!fd) return;
|
|
|
|
|
|
|
|
- if ((async = create_request_async( fd, &req->async )))
|
|
|
|
+ if ((async = create_request_async( fd, fd->comp_flags, &req->async )))
|
2017-06-20 15:26:40 -07:00
|
|
|
{
|
2017-07-08 07:11:26 -07:00
|
|
|
reply->wait = async_handoff( async, fd->fd_ops->read( fd, async, req->pos ), NULL );
|
|
|
|
reply->options = fd->options;
|
|
|
|
@@ -2469,7 +2469,7 @@ DECL_HANDLER(write)
|
|
|
|
|
|
|
|
if (!fd) return;
|
|
|
|
|
|
|
|
- if ((async = create_request_async( fd, &req->async )))
|
|
|
|
+ if ((async = create_request_async( fd, fd->comp_flags, &req->async )))
|
|
|
|
{
|
|
|
|
reply->wait = async_handoff( async, fd->fd_ops->write( fd, async, req->pos ), &reply->size );
|
|
|
|
reply->options = fd->options;
|
|
|
|
@@ -2487,7 +2487,7 @@ DECL_HANDLER(ioctl)
|
|
|
|
|
|
|
|
if (!fd) return;
|
|
|
|
|
|
|
|
- if ((async = create_request_async( fd, &req->async )))
|
|
|
|
+ if ((async = create_request_async( fd, fd->comp_flags, &req->async )))
|
|
|
|
{
|
|
|
|
reply->wait = async_handoff( async, fd->fd_ops->ioctl( fd, req->code, async ), NULL );
|
2017-06-20 15:26:40 -07:00
|
|
|
reply->options = fd->options;
|
2017-04-08 18:21:23 -07:00
|
|
|
diff --git a/server/file.h b/server/file.h
|
2017-07-08 07:11:26 -07:00
|
|
|
index 386f76c4be2..1c9c66fdad1 100644
|
2017-04-08 18:21:23 -07:00
|
|
|
--- a/server/file.h
|
|
|
|
+++ b/server/file.h
|
2017-07-08 07:11:26 -07:00
|
|
|
@@ -176,7 +176,7 @@ extern struct object *create_serial( struct fd *fd );
|
|
|
|
extern struct async_queue *create_async_queue( struct fd *fd );
|
|
|
|
extern void free_async_queue( struct async_queue *queue );
|
|
|
|
extern struct async *create_async( struct fd *fd, struct thread *thread, const async_data_t *data, struct iosb *iosb );
|
|
|
|
-extern struct async *create_request_async( struct fd *fd, const async_data_t *data );
|
|
|
|
+extern struct async *create_request_async( struct fd *fd, unsigned int comp_flags, const async_data_t *data );
|
|
|
|
extern obj_handle_t async_handoff( struct async *async, int success, data_size_t *result );
|
|
|
|
extern void queue_async( struct async_queue *queue, struct async *async );
|
|
|
|
extern void async_set_timeout( struct async *async, timeout_t timeout, unsigned int status );
|
2017-04-08 18:21:23 -07:00
|
|
|
--
|
2017-06-20 15:26:40 -07:00
|
|
|
2.13.1
|
2017-04-08 18:21:23 -07:00
|
|
|
|