diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-04-16 00:54:09 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-04-16 00:54:09 +0300 |
commit | 00acb28d96746f78389f23a7b5309a917b45c12f (patch) | |
tree | ae9acaf7ea7a3a74c46c3b904ad15552de5167fd /fs/xfs/xfs_iops.c | |
parent | 3fc4844585c761e69654a237df41ffc5e51262e9 (diff) | |
download | linux-00acb28d96746f78389f23a7b5309a917b45c12f.tar.xz |
xfs: declare xfs_file.c symbols in xfs_file.h
Move the two public symbols in xfs_file.c to xfs_file.h. We're about to
add more public symbols in that source file, so let's finally create the
header file.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_iops.c')
-rw-r--r-- | fs/xfs/xfs_iops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index 66f8c47642e8..55ed2d1023d6 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -25,6 +25,7 @@ #include "xfs_error.h" #include "xfs_ioctl.h" #include "xfs_xattr.h" +#include "xfs_file.h" #include <linux/posix_acl.h> #include <linux/security.h> |