diff options
author | Mark Tinguely <tinguely@sgi.com> | 2012-12-04 17:18:03 -0600 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-01-16 16:07:37 -0600 |
commit | 0f22f9d0cd8a630b40a9ccc07a8844345b185aae (patch) | |
tree | b64f892c6ced3c55c85640a0d88921b9e7686cc4 /fs/xfs/xfs_buf_item.h | |
parent | d44d9bc68e32ad5881b105f82bd259d261d1ef74 (diff) | |
download | blackbird-op-linux-0f22f9d0cd8a630b40a9ccc07a8844345b185aae.tar.gz blackbird-op-linux-0f22f9d0cd8a630b40a9ccc07a8844345b185aae.zip |
xfs: rename bli_format to avoid confusion with bli_formats
Rename the bli_format structure to __bli_format to avoid
accidently confusing them with the bli_formats pointer.
Signed-off-by: Mark Tinguely <tinguely@sgi.com>
Reviewed-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_buf_item.h')
-rw-r--r-- | fs/xfs/xfs_buf_item.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_buf_item.h b/fs/xfs/xfs_buf_item.h index 6850f49f4af3..16def435944a 100644 --- a/fs/xfs/xfs_buf_item.h +++ b/fs/xfs/xfs_buf_item.h @@ -104,7 +104,7 @@ typedef struct xfs_buf_log_item { #endif int bli_format_count; /* count of headers */ struct xfs_buf_log_format *bli_formats; /* array of in-log header ptrs */ - struct xfs_buf_log_format bli_format; /* embedded in-log header */ + struct xfs_buf_log_format __bli_format; /* embedded in-log header */ } xfs_buf_log_item_t; void xfs_buf_item_init(struct xfs_buf *, struct xfs_mount *); |