From: Darrick J. Wong <djwong@xxxxxxxxxx> Create a new xfs_fs_staging.h header where we can land experimental ioctls without committing them to any stable interfaces anywhere. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- include/libxfs.h | 1 + include/xfs.h | 1 + libxfs/Makefile | 1 + libxfs/libxfs_priv.h | 1 + libxfs/xfs_fs_staging.h | 18 ++++++++++++++++++ 5 files changed, 22 insertions(+) create mode 100644 libxfs/xfs_fs_staging.h diff --git a/include/libxfs.h b/include/libxfs.h index cc57e8887..3340e2af3 100644 --- a/include/libxfs.h +++ b/include/libxfs.h @@ -23,6 +23,7 @@ #include "xfs_types.h" #include "xfs_fs.h" +#include "xfs_fs_staging.h" #include "xfs_arch.h" #include "xfs_shared.h" diff --git a/include/xfs.h b/include/xfs.h index e97158c8d..c4a95bec9 100644 --- a/include/xfs.h +++ b/include/xfs.h @@ -44,5 +44,6 @@ extern int xfs_assert_largefile[sizeof(off_t)-8]; /* Include deprecated/compat pre-vfs xfs-specific symbols */ #include <xfs/xfs_fs_compat.h> #include <xfs/xfs_fs.h> +#include <xfs/xfs_fs_staging.h> #endif /* __XFS_H__ */ diff --git a/libxfs/Makefile b/libxfs/Makefile index 89d29dc97..951df6231 100644 --- a/libxfs/Makefile +++ b/libxfs/Makefile @@ -14,6 +14,7 @@ LTLDFLAGS += -static # headers to install in include/xfs PKGHFILES = xfs_fs.h \ + xfs_fs_staging.h \ xfs_types.h \ xfs_da_format.h \ xfs_format.h \ diff --git a/libxfs/libxfs_priv.h b/libxfs/libxfs_priv.h index ff027dbe3..411cafb26 100644 --- a/libxfs/libxfs_priv.h +++ b/libxfs/libxfs_priv.h @@ -56,6 +56,7 @@ #include "xfs_arch.h" #include "xfs_fs.h" +#include "xfs_fs_staging.h" #include "libfrog/crc32c.h" #include <sys/xattr.h> diff --git a/libxfs/xfs_fs_staging.h b/libxfs/xfs_fs_staging.h new file mode 100644 index 000000000..bc97193dd --- /dev/null +++ b/libxfs/xfs_fs_staging.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: LGPL-2.1 */ +/* + * Copyright (C) 2020-2023 Oracle. All Rights Reserved. + * Author: Darrick J. Wong <djwong@xxxxxxxxxx> + */ +#ifndef __XFS_FS_STAGING_H__ +#define __XFS_FS_STAGING_H__ + +/* + * Experimental system calls, ioctls and data structures supporting them. + * Nothing in here should be considered part of a stable interface of any kind. + * + * If you add an ioctl here, please leave a comment in xfs_fs.h marking it + * reserved. If you promote anything out of this file, please leave a comment + * explaining where it went. + */ + +#endif /* __XFS_FS_STAGING_H__ */