diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-08-12 14:49:34 +0400 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-13 01:37:57 +0400 |
commit | 7bb85ef3608bf740e285b4436776526b7afd4903 (patch) | |
tree | 7374d99ce57d694acd0d9c5380a9649866e948a5 /fs/xfs/xfs_log_format.h | |
parent | 5c4d97d01a3a7a4a84fb05bfc439145ea25ba989 (diff) | |
download | linux-7bb85ef3608bf740e285b4436776526b7afd4903.tar.xz |
xfs: move unrelated definitions out of xfs_inode.h
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_log_format.h')
-rw-r--r-- | fs/xfs/xfs_log_format.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/xfs/xfs_log_format.h b/fs/xfs/xfs_log_format.h index faf3f4349a75..198381eca1f8 100644 --- a/fs/xfs/xfs_log_format.h +++ b/fs/xfs/xfs_log_format.h @@ -393,6 +393,14 @@ struct xfs_log_item_desc { #define XFS_DQUOT_REF 1 /* + * Flags for xfs_trans_ichgtime(). + */ +#define XFS_ICHGTIME_MOD 0x1 /* data fork modification timestamp */ +#define XFS_ICHGTIME_CHG 0x2 /* inode field change timestamp */ +#define XFS_ICHGTIME_CREATE 0x4 /* inode create timestamp */ + + +/* * Inode Log Item Format definitions. * * This is the structure used to lay out an inode log item in the |