aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse_lowlevel.h
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2025-09-15 17:41:47 -0700
committerBernd Schubert <bernd@bsbernd.com>2025-09-16 18:54:02 +0200
commit6e4557c57c4ce63de4042f77dcbf58627d13a59b (patch)
tree6f83884af230f11e23d3311fef39e76fdb249169 /include/fuse_lowlevel.h
parent939fc0dd3ed525c0be780537cfa41ffcbf98648c (diff)
downloadlibfuse-6e4557c57c4ce63de4042f77dcbf58627d13a59b.tar.gz
libfuse: don't put HAVE_STATX in a public header
fuse.h and fuse_lowlevel.h are already forward declaring struct statx, there is no need for HAVE_STATX anymore. HAVE_STATX also bears the risk to conflict with an application define. Alternatively it would have been possible to change to HAVE_FUSE_STATX. Get rid of the conditionals in the public header files and also remove HAVE_STATX definition from the public libfuse_config.h. Edit by Bernd: Commit message and removal of HAVE_STATX from public libfuse_config.h. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to 'include/fuse_lowlevel.h')
-rw-r--r--include/fuse_lowlevel.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h
index dc4ec07..a6cce01 100644
--- a/include/fuse_lowlevel.h
+++ b/include/fuse_lowlevel.h
@@ -1327,7 +1327,6 @@ struct fuse_lowlevel_ops {
void (*tmpfile) (fuse_req_t req, fuse_ino_t parent,
mode_t mode, struct fuse_file_info *fi);
-#ifdef HAVE_STATX
/**
* Get extended file attributes.
*
@@ -1343,7 +1342,6 @@ struct fuse_lowlevel_ops {
*/
void (*statx)(fuse_req_t req, fuse_ino_t ino, int flags, int mask,
struct fuse_file_info *fi);
-#endif
};
/**