diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-12-31 10:16:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:49 -0500 |
commit | 165f5f3f40317c1e75d60a977270f903f7475f69 (patch) | |
tree | 150798e7f68903db1201c2465f77c863dcd03c30 /source3/smbd/notify_hash.c | |
parent | ab7fc62edfb32422bf95dbf358f6ee5d94e27a34 (diff) | |
download | samba-165f5f3f40317c1e75d60a977270f903f7475f69.tar.gz samba-165f5f3f40317c1e75d60a977270f903f7475f69.tar.bz2 samba-165f5f3f40317c1e75d60a977270f903f7475f69.zip |
r20433: Work in progress: Survive more of RAW-NOTIFY.
call_nt_transact_notify_change() is now sync if there are changes around.
A notify_message does a direct reply from within the message, so
process_pending_change_notify_queue is not needed anymore for samba-generated
events. Next step is to restructure the kernel-mechanisms to generate
messages.
Volker
(This used to be commit c813f71d0036ec52c99a97e60fe33ee47d0635fa)
Diffstat (limited to 'source3/smbd/notify_hash.c')
-rw-r--r-- | source3/smbd/notify_hash.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/smbd/notify_hash.c b/source3/smbd/notify_hash.c index 0787a3eec5..5d211ada01 100644 --- a/source3/smbd/notify_hash.c +++ b/source3/smbd/notify_hash.c @@ -186,6 +186,9 @@ static BOOL hash_check_notify(connection_struct *conn, uint16 vuid, char *path, struct change_data data2; int cnto = lp_change_notify_timeout(SNUM(conn)); + DEBUG(10, ("hash_change_notify called for path %s\n", path)); + return False; + if (t && cnto <= 0) { /* Change notify turned off on this share. * Only scan when (t==0) - we think something changed. */ |