diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-11-13 05:40:00 +0100 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-11-14 03:22:41 +0100 |
commit | f368b29ba917ac202c3901019b78f15f4d773085 (patch) | |
tree | 1e431cc784402909df26a59ad8ddcf37402346f9 /fs/xfs/xfs_filestream.c | |
parent | xfs: remove XFS_IOC_FSSETDM and XFS_IOC_FSSETDM_BY_HANDLE (diff) | |
download | linux-f368b29ba917ac202c3901019b78f15f4d773085.tar.xz linux-f368b29ba917ac202c3901019b78f15f4d773085.zip |
xfs: fix another missing include
Fix missing include of xfs_filestream.h in xfs_filestream.c so that we
actually check the function declarations against the definitions.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_filestream.c')
-rw-r--r-- | fs/xfs/xfs_filestream.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_filestream.c b/fs/xfs/xfs_filestream.c index 2ae356775f63..5f12b5d8527a 100644 --- a/fs/xfs/xfs_filestream.c +++ b/fs/xfs/xfs_filestream.c @@ -18,6 +18,7 @@ #include "xfs_trace.h" #include "xfs_ag_resv.h" #include "xfs_trans.h" +#include "xfs_filestream.h" struct xfs_fstrm_item { struct xfs_mru_cache_elem mru; |