diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-08-12 20:49:23 +1000 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-12 16:05:19 -0500 |
commit | 69432832fd7466c20c7c92cbd92c561ac78988c2 (patch) | |
tree | e88e0d4698eab40c93248c7be3b7d8d2ffd52c19 /fs/xfs/xfs_filestream.c | |
parent | fc06c6d064dd50f7aa157065ef79216190d75c91 (diff) | |
download | blackbird-obmc-linux-69432832fd7466c20c7c92cbd92c561ac78988c2.tar.gz blackbird-obmc-linux-69432832fd7466c20c7c92cbd92c561ac78988c2.zip |
xfs: split out inode log item format definition
The log item format definitions are shared with userspace. Split
them out of header files that contain kernel only defintions to make
it simple to shared them.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_filestream.c')
-rw-r--r-- | fs/xfs/xfs_filestream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_filestream.c b/fs/xfs/xfs_filestream.c index 5170306a1009..9eae097ca223 100644 --- a/fs/xfs/xfs_filestream.c +++ b/fs/xfs/xfs_filestream.c @@ -16,12 +16,12 @@ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "xfs.h" +#include "xfs_log.h" #include "xfs_bmap_btree.h" #include "xfs_inum.h" #include "xfs_dinode.h" #include "xfs_inode.h" #include "xfs_ag.h" -#include "xfs_log.h" #include "xfs_trans.h" #include "xfs_sb.h" #include "xfs_mount.h" |