diff options
author | Volker Lendecke <vl@samba.org> | 2012-03-26 12:46:11 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-03-26 17:45:43 +0200 |
commit | fa6f61e83565f49fb4e75248cffaa1ef31567d20 (patch) | |
tree | 0caed7c2a103a24db7e6d2e0578071beefbb69f2 /examples | |
parent | c3a506b64e248152212ab647048a47bd63039452 (diff) | |
download | samba-fa6f61e83565f49fb4e75248cffaa1ef31567d20.tar.gz |
s3: Pass filters explicitly through vfs notify watch
This removes a dependency on "struct notify_entry" and makes the nature of the
API more explicit. We depend upon the VFS module to mask out elements from
e->filter and e->subdir_filter that it took over to handle.
Autobuild-User: Volker Lendecke <vl@samba.org>
Autobuild-Date: Mon Mar 26 17:45:44 CEST 2012 on sn-devel-104
Diffstat (limited to 'examples')
-rw-r--r-- | examples/VFS/skel_opaque.c | 5 | ||||
-rw-r--r-- | examples/VFS/skel_transparent.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 7b67e563522..5c97e2304e4 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -383,7 +383,10 @@ static char *skel_realpath(vfs_handle_struct *handle, const char *path) } static NTSTATUS skel_notify_watch(struct vfs_handle_struct *handle, - struct sys_notify_context *ctx, struct notify_entry *e, + struct sys_notify_context *ctx, + const char *path, + uint32_t *filter, + uint32_t *subdir_filter, void (*callback)(struct sys_notify_context *ctx, void *private_data, struct notify_event *ev), void *private_data, void *handle_p) { diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index 964ba6dc9ca..c57545c2e54 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -360,13 +360,15 @@ static char *skel_realpath(vfs_handle_struct *handle, const char *path) static NTSTATUS skel_notify_watch( struct vfs_handle_struct *handle, struct sys_notify_context *ctx, - struct notify_entry *e, const char *path, + uint32_t *filter, + uint32_t *subdir_filter, void (*callback)(struct sys_notify_context *ctx, void *private_data, struct notify_event *ev), void *private_data, void *handle_p) { - return SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, path, callback, + return SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, path, + filter, subdir_filter, callback, private_data, handle_p); } |