diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-12-06 21:58:09 +0000 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2011-12-08 13:53:30 -0600 |
commit | b39342134a6ec72778ffc2ddbd3c0faa10c64676 (patch) | |
tree | fc95ebf3b6ef32c80b907d7ea9af6112b4e520ff /fs/xfs/xfs_trans.h | |
parent | 0244b9603df38bf19155b761689e1a816fc50b0a (diff) | |
download | talos-obmc-linux-b39342134a6ec72778ffc2ddbd3c0faa10c64676.tar.gz talos-obmc-linux-b39342134a6ec72778ffc2ddbd3c0faa10c64676.zip |
xfs: remove the lid_size field in struct log_item_desc
Outside the now removed nodelaylog code this field is only used for
asserts and can be safely removed now.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_trans.h')
-rw-r--r-- | fs/xfs/xfs_trans.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h index 3ae713c0abd9..f6118703f20d 100644 --- a/fs/xfs/xfs_trans.h +++ b/fs/xfs/xfs_trans.h @@ -163,9 +163,8 @@ typedef struct xfs_trans_header { */ struct xfs_log_item_desc { struct xfs_log_item *lid_item; - ushort lid_size; - unsigned char lid_flags; struct list_head lid_trans; + unsigned char lid_flags; }; #define XFS_LID_DIRTY 0x1 |