aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2003-03-11 12:14:10 +0000
committeriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2003-03-11 12:14:10 +0000
commit92c383e584d199db53ecb8e170ab7f85947644c0 (patch)
treebce71eef5b2a0bbb7757e3dd5edbf0b8014e5566
parent2700fa96e938e3c10d23380c5ab6176471a98872 (diff)
downloadxen-92c383e584d199db53ecb8e170ab7f85947644c0.tar.gz
xen-92c383e584d199db53ecb8e170ab7f85947644c0.tar.bz2
xen-92c383e584d199db53ecb8e170ab7f85947644c0.zip
bitkeeper revision 1.122.1.2 (3e6dd312fGC_rwhJmT6CTXtWNO5Uag)
dprintf change
-rw-r--r--xen/drivers/block/xen_block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/drivers/block/xen_block.c b/xen/drivers/block/xen_block.c
index bf9cfd7431..4f05e4f4e7 100644
--- a/xen/drivers/block/xen_block.c
+++ b/xen/drivers/block/xen_block.c
@@ -212,7 +212,7 @@ static void end_block_io_op(struct buffer_head *bh, int uptodate)
unsigned long *buff = map_domain_mem(virt_to_phys(bh->b_data));
if ( (buff[ 0] == 0xdeadbeef) &&
(buff[127] == 0xdeadbeef) )
- printk("An unmodified buffer at sector %ld\n", bh->b_rsector);
+ printk("An unmodified buffer at sector %ld. b_data = %08x, phys = %08x\n", bh->b_rsector,bh->b_data,virt_to_phys(bh->b_data));
unmap_domain_mem(buff);
}
#endif