summaryrefslogtreecommitdiff
path: root/source3/modules/onefs_cbrl.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-06-12 14:31:04 +0200
committerVolker Lendecke <vl@samba.org>2010-06-12 15:42:56 +0200
commit330a64c72b1eb9f2fd87a74df82d54249c5f2b36 (patch)
tree016a82d39cbce5556b5fdcb4687bfdfb06e1dc8e /source3/modules/onefs_cbrl.c
parentcb03710c76b120c5aa3e8a5df2001ffca015b80b (diff)
downloadsamba-330a64c72b1eb9f2fd87a74df82d54249c5f2b36.tar.gz
samba-330a64c72b1eb9f2fd87a74df82d54249c5f2b36.tar.bz2
samba-330a64c72b1eb9f2fd87a74df82d54249c5f2b36.zip
s3: Explicitly pass sconn to process_blocking_lock_queue
Diffstat (limited to 'source3/modules/onefs_cbrl.c')
-rw-r--r--source3/modules/onefs_cbrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/onefs_cbrl.c b/source3/modules/onefs_cbrl.c
index 4b0600b35c..33f35a7f34 100644
--- a/source3/modules/onefs_cbrl.c
+++ b/source3/modules/onefs_cbrl.c
@@ -184,7 +184,7 @@ static void onefs_cbrl_async_success(uint64_t id)
LEVEL2_CONTEND_WINDOWS_BRL);
/* Process the queue, to try the next lock or finish up. */
- process_blocking_lock_queue();
+ process_blocking_lock_queue(smbd_server_conn);
}
static void onefs_cbrl_async_failure(uint64_t id)
@@ -207,7 +207,7 @@ static void onefs_cbrl_async_failure(uint64_t id)
/* Process the queue. It will end up trying to retake the same lock,
* see the error in onefs_cbrl_lock_windows() and fail. */
- process_blocking_lock_queue();
+ process_blocking_lock_queue(smbd_server_conn);
}
static struct cbrl_event_ops cbrl_ops =