diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-13 14:13:51 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-10-15 01:52:29 +0200 |
commit | 47f65d5829167f061756621e50b480a8c16e4fbc (patch) | |
tree | 937181849c0cbae11347490c46e6758df6b45fa5 /source3/smbd | |
parent | c92ac4c8eebf4ddaaab4e8b640650406b259b05d (diff) | |
download | samba-47f65d5829167f061756621e50b480a8c16e4fbc.tar.gz samba-47f65d5829167f061756621e50b480a8c16e4fbc.tar.xz samba-47f65d5829167f061756621e50b480a8c16e4fbc.zip |
smbd: Add debugs to brlock.c
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/oplock.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/smbd/oplock.c b/source3/smbd/oplock.c index f18ac657b8..fc6b0efdda 100644 --- a/source3/smbd/oplock.c +++ b/source3/smbd/oplock.c @@ -157,6 +157,9 @@ bool remove_oplock(files_struct *fsp) bool ret; struct share_mode_lock *lck; + DEBUG(10, ("remove_oplock called for %s\n", + fsp_str_dbg(fsp))); + /* Remove the oplock flag from the sharemode. */ lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id); if (lck == NULL) { @@ -224,6 +227,9 @@ bool downgrade_oplock(files_struct *fsp) struct share_mode_lock *lck; struct byte_range_lock *brl; + DEBUG(10, ("downgrade_oplock called for %s\n", + fsp_str_dbg(fsp))); + lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id); if (lck == NULL) { DEBUG(0,("downgrade_oplock: failed to lock share entry for " |