aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_mount.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2011-04-13 22:03:28 +0000
committerAlex Elder <aelder@sgi.com>2011-04-28 13:25:29 -0500
commit45c51b99943c4c74165b19dc2f96e8ba93bdecb9 (patch)
tree4f0beaf22aaa7e931540f3a40a722ab4cfaefafe /fs/xfs/xfs_mount.c
parent8a072a4d4c6a5b6ec32836c467d2996393c76c6f (diff)
downloadkernel_samsung_smdk4412-45c51b99943c4c74165b19dc2f96e8ba93bdecb9.zip
kernel_samsung_smdk4412-45c51b99943c4c74165b19dc2f96e8ba93bdecb9.tar.gz
kernel_samsung_smdk4412-45c51b99943c4c74165b19dc2f96e8ba93bdecb9.tar.bz2
xfs: cleanup duplicate initializations
follow these guidelines: - leave initialization in the declaration block if it fits the line - move to the code where it's more suitable ('for' init block) The last chunk was modified from David's original to be a correct fix for what appeared to be a duplicate initialization. Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Alex Elder <aelder@sgi.com> Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r--fs/xfs/xfs_mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c
index bb3f9a7..b49b823 100644
--- a/fs/xfs/xfs_mount.c
+++ b/fs/xfs/xfs_mount.c
@@ -1900,7 +1900,7 @@ xfs_mod_incore_sb_batch(
uint nmsb,
int rsvd)
{
- xfs_mod_sb_t *msbp = &msb[0];
+ xfs_mod_sb_t *msbp;
int error = 0;
/*
@@ -1910,7 +1910,7 @@ xfs_mod_incore_sb_batch(
* changes will be atomic.
*/
spin_lock(&mp->m_sb_lock);
- for (msbp = &msbp[0]; msbp < (msb + nmsb); msbp++) {
+ for (msbp = msb; msbp < (msb + nmsb); msbp++) {
ASSERT(msbp->msb_field < XFS_SBS_ICOUNT ||
msbp->msb_field > XFS_SBS_FDBLOCKS);