]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
smbd: Fix an ancient oplock bug
authorVolker Lendecke <vl@samba.org>
Wed, 4 Sep 2013 11:57:00 +0000 (13:57 +0200)
committerKarolin Seeger <kseeger@samba.org>
Fri, 14 Feb 2014 19:13:42 +0000 (20:13 +0100)
If we get an oplock break response, we forgot to remove the oplock break
timeout.

Found by stopping raw.oplock.exclusive5 after the 2nd open and watching a debug
level 10 log. This amends 08a9de89 from 2007.

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
(cherry picked from commit 0670975261c5f29394f9e9d25f899a7de948dad1)

Fix bug #10436 - cancel fsp->oplock_timeout in downgrade_file_oplock().

source3/smbd/oplock.c

index 406ffd1e3d4666140cd47476978aa901835d55f2..95d88ef3813fb19dae14e3e27f52e99b4c180bc5 100644 (file)
@@ -150,6 +150,8 @@ static void downgrade_file_oplock(files_struct *fsp)
        sconn->oplocks.exclusive_open--;
        sconn->oplocks.level_II_open++;
        fsp->sent_oplock_break = NO_BREAK_SENT;
+
+       TALLOC_FREE(fsp->oplock_timeout);
 }
 
 /****************************************************************************