From fcc1f5f7f7a5a1f51657c8da90f45142359a01bb Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 13 Dec 2011 14:24:58 +0100 Subject: s3:smbd/oplock_onefs: pass smbd_server_connection to onefs_oplock_wait_record() metze --- source3/smbd/oplock_onefs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/smbd/oplock_onefs.c') diff --git a/source3/smbd/oplock_onefs.c b/source3/smbd/oplock_onefs.c index d7e3608735..9e427a3607 100644 --- a/source3/smbd/oplock_onefs.c +++ b/source3/smbd/oplock_onefs.c @@ -47,6 +47,7 @@ enum onefs_callback_state { struct onefs_callback_record { struct onefs_callback_record *prev, *next; + struct smbd_server_connection *sconn; uint64_t id; enum onefs_callback_state state; union { @@ -198,7 +199,8 @@ void destroy_onefs_callback_record(uint64_t id) * 2. OPEN_FILE: Once ifs_createfile completes, the callback record is * transitioned to this state via onefs_set_oplock_callback. */ -uint64_t onefs_oplock_wait_record(uint64_t mid) +uint64_t onefs_oplock_wait_record(struct smbd_server_connection *sconn, + uint64_t mid) { struct onefs_callback_record *result; static uint64_t id_generator = 0; @@ -216,6 +218,7 @@ uint64_t onefs_oplock_wait_record(uint64_t mid) id_generator += 1; } + result->sconn = sconn; result->id = id_generator; result->state = ONEFS_WAITING_FOR_OPLOCK; -- cgit