diff options
author | Volker Lendecke <vl@samba.org> | 2009-04-14 20:39:14 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-04-16 15:07:06 +0200 |
commit | 32a36e470333abae2745e27074a24ab54777b41e (patch) | |
tree | 48c56c9ea94b63dd69b19d0ce348dda4a0bb679c /source3/librpc/idl | |
parent | ea3a022ca3ed97f0ac3f16536832e8ec43683f8c (diff) | |
download | samba-32a36e470333abae2745e27074a24ab54777b41e.tar.gz samba-32a36e470333abae2745e27074a24ab54777b41e.tar.bz2 samba-32a36e470333abae2745e27074a24ab54777b41e.zip |
Add notify_onelevel.tdb
This optimizes non-recursive notifys. For non-recursive notifies we can use a
per-directory file-id indexed notify record. This matters for the Windows
Explorer and IIS cases which do not use recursive notifies. In these cases, we
do not have to shuffle around the whole notify record on every change.
For the cluster case, this improves correctness of the notifies, ctdb only
distributes the tdb seqnum once a second, so we can lose notifies.
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/notify.idl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/librpc/idl/notify.idl b/source3/librpc/idl/notify.idl index 550783b5cd..0e80679074 100644 --- a/source3/librpc/idl/notify.idl +++ b/source3/librpc/idl/notify.idl @@ -25,6 +25,11 @@ interface notify pointer private_data; } notify_entry; + typedef [public] struct { + uint32 num_entries; + notify_entry entries[num_entries]; + } notify_entry_array; + /* to allow for efficient search for matching entries, we divide them by the directory depth, with a separate array |