diff options
author | Sławek Rudnicki <slawek.rudnicki@editshare.com> | 2017-08-07 12:41:33 +0200 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2017-08-24 14:20:37 +0200 |
commit | 89f2bae00c1b87580f432f9a719ba8998493e6df (patch) | |
tree | 896d41f64caeef13a4c35f5a6333348067f5dfae /example/Makefile.am | |
parent | 4eed36910fa73cfe3fe62530850d427e6841e14f (diff) | |
download | libfuse-89f2bae00c1b87580f432f9a719ba8998493e6df.tar.gz |
Allow inode cache invalidation in high-level API
We re-introduce the functionality of invalidating the caches for an
inode specified by path by adding a new routine
fuse_invalidate_path. This is useful for network-based file systems
which use the high-level API, enabling them to notify the kernel about
external changes.
This is a revival of Miklos Szeredi's original code for the
fuse_invalidate routine.
Diffstat (limited to 'example/Makefile.am')
-rw-r--r-- | example/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index db87ade..e9a315e 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -3,8 +3,8 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -D_REENTRANT noinst_HEADERS = ioctl.h noinst_PROGRAMS = passthrough passthrough_fh null hello hello_ll \ - ioctl ioctl_client poll poll_client \ - passthrough_ll notify_inval_inode \ + ioctl ioctl_client poll poll_client passthrough_ll \ + notify_inval_inode notify_inval_inode_fh \ notify_store_retrieve notify_inval_entry \ cuse cuse_client printcap |