summaryrefslogtreecommitdiffstats
path: root/source3/smbd/close.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-02-03 15:40:23 -0800
committerTim Prouty <tprouty@samba.org>2009-02-09 23:47:45 -0800
commit17eba16bad9b20518a5d336bc751e749a587ec68 (patch)
tree6c49a7586bb5efc58f418b0d45b0177e72ff7f13 /source3/smbd/close.c
parentc6f1f055fdeee29ad7c5b2ae9909e8f1b1a7daec (diff)
downloadsamba-17eba16bad9b20518a5d336bc751e749a587ec68.tar.gz
samba-17eba16bad9b20518a5d336bc751e749a587ec68.tar.xz
samba-17eba16bad9b20518a5d336bc751e749a587ec68.zip
s3 oplocks: Add capabilites flags field to the kernel_oplocks struct
Here is a short description for each of the new capability flags: KOPLOCKS_LEVEL2_SUPPORTED: Level 2 oplocks are supported natively in the kernel. KOPLOCKS_DEFERRED_OPEN_NOTIFICATION: The kernel notifies deferred openers when they can retry the open. KOPLOCKS_TIMEOUT_NOTIFICATION: The kernel notifies smbds when an oplock break times out. KOPLOCKS_OPLOCK_BROKEN_NOTIFICATION: The kernel notifies smbds when an oplock is broken.
Diffstat (limited to 'source3/smbd/close.c')
-rw-r--r--source3/smbd/close.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/close.c b/source3/smbd/close.c
index 2fb8ec2bb55..e484fa8e011 100644
--- a/source3/smbd/close.c
+++ b/source3/smbd/close.c
@@ -134,6 +134,10 @@ static NTSTATUS close_filestruct(files_struct *fsp)
static void notify_deferred_opens(struct share_mode_lock *lck)
{
int i;
+
+ if (!should_notify_deferred_opens()) {
+ return;
+ }
for (i=0; i<lck->num_share_modes; i++) {
struct share_mode_entry *e = &lck->share_modes[i];