From 640ab28d78dac5c2bcee8b641c8971fcbcd87dfa Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 6 Mar 2007 21:59:51 +0000 Subject: r21724: Optimization pointed out by Volker. If we don't have any outstanding locks or blocking locks then we don't need to read the lock db. on close. Jeremy. (This used to be commit 1b063496f93f78347a6e67549bde54c845499a7d) --- source3/include/smb.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/include/smb.h') diff --git a/source3/include/smb.h b/source3/include/smb.h index 1e31d8545d..a54cebac10 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -501,6 +501,7 @@ typedef struct files_struct { int sent_oplock_break; struct timed_event *oplock_timeout; struct lock_struct last_lock_failure; + int current_lock_count; /* Count the number of outstanding locks and pending locks. */ struct share_mode_entry *pending_break_messages; int num_pending_break_messages; -- cgit