[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <a1ef34a30fa69b35db003f2e68445c4eb0a03a93.1254193019.git.joe@perches.com>
Date: Mon, 28 Sep 2009 22:01:11 -0700
From: Joe Perches <joe@...ches.com>
To: linux-kernel@...r.kernel.org
Cc: Adrian Hunter <adrian.hunter@...ia.com>,
Alex Elder <aelder@....com>,
Artem Bityutskiy <dedekind@...radead.org>,
Christoph Hellwig <hch@....de>,
Harvey Harrison <harvey.harrison@...il.com>,
Huang Ying <ying.huang@...el.com>, Ingo Molnar <mingo@...e.hu>,
Jeff Garzik <jgarzik@...hat.com>,
Laurent Pinchart <laurent.pinchart@...net.be>,
Matt Mackall <mpm@...enic.com>,
Mauro Carvalho Chehab <mchehab@...radead.org>,
Neil Brown <neilb@...e.de>,
Steven Whitehouse <swhiteho@...hat.com>,
xfs-masters@....sgi.com, Dave Chinner <david@...morbit.com>,
xfs@....sgi.com
Subject: [PATCH 9/9] fs/xfs/xfs_log_recover.c: Use %pU to print UUIDs
Signed-off-by: Joe Perches <joe@...ches.com>
---
fs/xfs/xfs_log_recover.c | 14 ++++----------
1 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c
index 1099395..3b8e3df 100644
--- a/fs/xfs/xfs_log_recover.c
+++ b/fs/xfs/xfs_log_recover.c
@@ -225,16 +225,10 @@ xlog_header_check_dump(
xfs_mount_t *mp,
xlog_rec_header_t *head)
{
- int b;
-
- cmn_err(CE_DEBUG, "%s: SB : uuid = ", __func__);
- for (b = 0; b < 16; b++)
- cmn_err(CE_DEBUG, "%02x", ((__uint8_t *)&mp->m_sb.sb_uuid)[b]);
- cmn_err(CE_DEBUG, ", fmt = %d\n", XLOG_FMT);
- cmn_err(CE_DEBUG, " log : uuid = ");
- for (b = 0; b < 16; b++)
- cmn_err(CE_DEBUG, "%02x", ((__uint8_t *)&head->h_fs_uuid)[b]);
- cmn_err(CE_DEBUG, ", fmt = %d\n", be32_to_cpu(head->h_fmt));
+ cmn_err(CE_DEBUG, "%s: SB : uuid = %pU, fmt = %d\n",
+ __func__, &mp->m_sb.sb_uuid, XLOG_FMT);
+ cmn_err(CE_DEBUG, " log : uuid = %pU, fmt = %d\n",
+ &head->h_fs_uuid, be32_to_cpu(head->h_fmt));
}
#else
#define xlog_header_check_dump(mp, head)
--
1.6.3.1.10.g659a0.dirty
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists