diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-08 10:51:27 -0800 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-08 10:54:48 -0800 |
commit | c368ebcd4cc3bbc08602adce083ad3cc76a15258 (patch) | |
tree | 259b569320c43fdf84ef1bd6924dba7fa49b719c /fs/xfs/xfs_ioctl32.c | |
parent | b872af2c8700e9d64af8e13811b7679ede26ca00 (diff) | |
download | blackbird-op-linux-c368ebcd4cc3bbc08602adce083ad3cc76a15258.tar.gz blackbird-op-linux-c368ebcd4cc3bbc08602adce083ad3cc76a15258.zip |
xfs: hoist xfs_fs_geometry to libxfs
Move xfs_fs_geometry to libxfs so that we can clean up the fs geometry
reporting in xfsprogs.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_ioctl32.c')
-rw-r--r-- | fs/xfs/xfs_ioctl32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_ioctl32.c b/fs/xfs/xfs_ioctl32.c index 35c79e246fde..66cc3cd70268 100644 --- a/fs/xfs/xfs_ioctl32.c +++ b/fs/xfs/xfs_ioctl32.c @@ -37,6 +37,7 @@ #include "xfs_ioctl.h" #include "xfs_ioctl32.h" #include "xfs_trace.h" +#include "xfs_sb.h" #define _NATIVE_IOC(cmd, type) \ _IOC(_IOC_DIR(cmd), _IOC_TYPE(cmd), _IOC_NR(cmd), sizeof(type)) |