s3-brlock: add a minimim retry time for pending blocking locks
authorAndrew Tridgell <tridge@samba.org>
Sat, 6 Feb 2010 04:59:43 +0000 (20:59 -0800)
committerKarolin Seeger <kseeger@samba.org>
Wed, 31 Mar 2010 15:53:13 +0000 (17:53 +0200)
commitaa9ab3ea57808b8e227c960b442911219405f1bf
tree70e4e92e0d6f97a31d7059d6cc84a43c6eda2663
parent380e86e0f9c9314f4f69528227668dbbb222b144
s3-brlock: add a minimim retry time for pending blocking locks

When we are waiting on a pending byte range lock, another smbd might
exit uncleanly, and therefore not notify us of the removal of the
lock, and thus not trigger the lock to be retried.

We coped with this up to now by adding a message_send_all() in the
SIGCHLD and cluster reconfigure handlers to send a MSG_SMB_UNLOCK to
all smbd processes. That would generate O(N^2) work when a large
number of clients disconnected at once (such as on a network outage),
which could leave the whole system unusable for a very long time (many
minutes, or even longer).

By adding a minimum re-check time for pending byte range locks we
avoid this problem by ensuring that pending locks are retried at a
more regular interval.
(cherry picked from commit 5b398edbee672392f2cea260ab17445ecca927d7)
source3/smbd/blocking.c