Commit 6c005389 authored by Stephen Lord's avatar Stephen Lord Committed by Christoph Hellwig

XFS: remove debug print statements

Modid: 2.5.x-xfs:slinx:129722a
parent 37183a5f
......@@ -1900,8 +1900,6 @@ __xfs_bmbt_get_all(
b = (((xfs_dfsbno_t)l0 & XFS_MASK64LO(9)) << 43) |
(((xfs_dfsbno_t)l1) >> 21);
if (!((b >> 32) == 0 || ISNULLDSTARTBLOCK(b)))
printk("b == 0x%llx NULL %d\n", b, ISNULLDSTARTBLOCK(b));
ASSERT((b >> 32) == 0 || ISNULLDSTARTBLOCK(b));
s->br_startblock = (xfs_fsblock_t)b;
}
......@@ -2803,8 +2801,6 @@ xfs_check_nostate_extents(
for (; num > 0; num--, ep++) {
if ((ep->l0 >>
(64 - BMBT_EXNTFLAG_BITLEN)) != 0) {
printk("Extent at 0x%p value 0x%llx\n", ep,
(ep->l0 >> (64 - BMBT_EXNTFLAG_BITLEN)));
ASSERT(0);
return 1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment