diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-07-20 03:54:45 -0400 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-07-26 14:16:51 -0400 |
commit | 73523a2ecf03f0bfe7c36c244aff8a2ef2208a4a (patch) | |
tree | b6b1f2be9a4b276a41381a51fc7278bf7e365471 /fs/xfs/xfs_log.c | |
parent | 0f1a932f5d4d6ee71afb141914e2d5f11f27eee1 (diff) |
xfs: fix gcc 4.6 set but not read and unused statement warnings
[hch: dropped a few hunks that need structural changes instead]
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index f309e1404fd6..925d572bf0f4 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
@@ -1042,7 +1042,6 @@ xlog_alloc_log(xfs_mount_t *mp, | |||
1042 | xlog_in_core_t *iclog, *prev_iclog=NULL; | 1042 | xlog_in_core_t *iclog, *prev_iclog=NULL; |
1043 | xfs_buf_t *bp; | 1043 | xfs_buf_t *bp; |
1044 | int i; | 1044 | int i; |
1045 | int iclogsize; | ||
1046 | int error = ENOMEM; | 1045 | int error = ENOMEM; |
1047 | uint log2_size = 0; | 1046 | uint log2_size = 0; |
1048 | 1047 | ||
@@ -1122,7 +1121,6 @@ xlog_alloc_log(xfs_mount_t *mp, | |||
1122 | * with different amounts of memory. See the definition of | 1121 | * with different amounts of memory. See the definition of |
1123 | * xlog_in_core_t in xfs_log_priv.h for details. | 1122 | * xlog_in_core_t in xfs_log_priv.h for details. |
1124 | */ | 1123 | */ |
1125 | iclogsize = log->l_iclog_size; | ||
1126 | ASSERT(log->l_iclog_size >= 4096); | 1124 | ASSERT(log->l_iclog_size >= 4096); |
1127 | for (i=0; i < log->l_iclog_bufs; i++) { | 1125 | for (i=0; i < log->l_iclog_bufs; i++) { |
1128 | *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL); | 1126 | *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL); |