summaryrefslogtreecommitdiff
path: root/source3/smbd/blocking.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-01-30 20:49:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:31 -0500
commitdeaf4131b99951cfcc599b96e35af680202ce609 (patch)
tree2110a0e3f7140600bafa002c3946466dbf11d9f4 /source3/smbd/blocking.c
parente5be27a30851c910dedf42f252bcc20476e6c3f6 (diff)
downloadsamba-deaf4131b99951cfcc599b96e35af680202ce609.tar.gz
samba-deaf4131b99951cfcc599b96e35af680202ce609.tar.bz2
samba-deaf4131b99951cfcc599b96e35af680202ce609.zip
r21062: Should fix the build plus make all refactored
functions return NTSTATUS. Jeremy. (This used to be commit 1f3c2b2abca6f1b3b59b73df038832e14106ff76)
Diffstat (limited to 'source3/smbd/blocking.c')
-rw-r--r--source3/smbd/blocking.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/smbd/blocking.c b/source3/smbd/blocking.c
index 7a71fc67e5..e0478fa762 100644
--- a/source3/smbd/blocking.c
+++ b/source3/smbd/blocking.c
@@ -560,6 +560,23 @@ file %s fnum = %d\n", blr->com_type, fsp->fsp_name, fsp->fnum ));
}
/****************************************************************************
+ Is this mid a blocking lock request on the queue ?
+*****************************************************************************/
+
+BOOL blocking_lock_was_deferred(int mid)
+{
+ blocking_lock_record *blr, *next = NULL;
+
+ for(blr = blocking_lock_queue; blr; blr = next) {
+ next = blr->next;
+ if(SVAL(blr->inbuf,smb_mid) == mid) {
+ return True;
+ }
+ }
+ return False;
+}
+
+/****************************************************************************
Set a flag as an unlock request affects one of our pending locks.
*****************************************************************************/