vfs_aio_pthread: store conn instead of sconn in aio_open_private_data
authorRalph Boehme <slow@samba.org>
Tue, 8 Jan 2019 09:34:11 +0000 (10:34 +0100)
committerStefan Metzmacher <metze@samba.org>
Fri, 11 Jan 2019 22:11:19 +0000 (23:11 +0100)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
source3/modules/vfs_aio_pthread.c

index be74e77b43357e81af821055aaa09d09a976d81d..44cbb476c6d47ac88db053794f4f6e5cd215b093 100644 (file)
@@ -50,7 +50,7 @@ struct aio_open_private_data {
        bool in_progress;
        const char *fname;
        char *dname;
-       struct smbd_server_connection *sconn;
+       connection_struct *conn;
        const struct security_unix_token *ux_tok;
        uint64_t initial_allocation_size;
        /* Returns. */
@@ -111,7 +111,7 @@ static void aio_open_handle_completion(struct tevent_req *subreq)
         * to find the correct connection for a fsp.
         * For now we only have one connection, so this is correct...
         */
-       xconn = opd->sconn->client->connections;
+       xconn = opd->conn->sconn->client->connections;
 
        /* Find outstanding event and reschedule. */
        if (!schedule_deferred_open_message_smb(xconn, opd->mid)) {
@@ -217,7 +217,7 @@ static struct aio_open_private_data *create_private_open_data(const files_struct
                .mode = mode,
                .mid = fsp->mid,
                .in_progress = true,
-               .sconn = fsp->conn->sconn,
+               .conn = fsp->conn,
                .initial_allocation_size = fsp->initial_allocation_size,
        };