diff options
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/incore.h | 4 | ||||
-rw-r--r-- | fs/gfs2/trans.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index cf0e34400f71..645655cccdc8 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h | |||
@@ -462,11 +462,11 @@ struct gfs2_trans { | |||
462 | unsigned int tr_blocks; | 462 | unsigned int tr_blocks; |
463 | unsigned int tr_revokes; | 463 | unsigned int tr_revokes; |
464 | unsigned int tr_reserved; | 464 | unsigned int tr_reserved; |
465 | unsigned int tr_touched:1; | ||
466 | unsigned int tr_attached:1; | ||
465 | 467 | ||
466 | struct gfs2_holder tr_t_gh; | 468 | struct gfs2_holder tr_t_gh; |
467 | 469 | ||
468 | int tr_touched; | ||
469 | int tr_attached; | ||
470 | 470 | ||
471 | unsigned int tr_num_buf_new; | 471 | unsigned int tr_num_buf_new; |
472 | unsigned int tr_num_databuf_new; | 472 | unsigned int tr_num_databuf_new; |
diff --git a/fs/gfs2/trans.c b/fs/gfs2/trans.c index 2b20d7046bf3..963b28c50fd4 100644 --- a/fs/gfs2/trans.c +++ b/fs/gfs2/trans.c | |||
@@ -98,7 +98,7 @@ static void gfs2_print_trans(const struct gfs2_trans *tr) | |||
98 | { | 98 | { |
99 | printk(KERN_WARNING "GFS2: Transaction created at: %pSR\n", | 99 | printk(KERN_WARNING "GFS2: Transaction created at: %pSR\n", |
100 | (void *)tr->tr_ip); | 100 | (void *)tr->tr_ip); |
101 | printk(KERN_WARNING "GFS2: blocks=%u revokes=%u reserved=%u touched=%d\n", | 101 | printk(KERN_WARNING "GFS2: blocks=%u revokes=%u reserved=%u touched=%u\n", |
102 | tr->tr_blocks, tr->tr_revokes, tr->tr_reserved, tr->tr_touched); | 102 | tr->tr_blocks, tr->tr_revokes, tr->tr_reserved, tr->tr_touched); |
103 | printk(KERN_WARNING "GFS2: Buf %u/%u Databuf %u/%u Revoke %u/%u\n", | 103 | printk(KERN_WARNING "GFS2: Buf %u/%u Databuf %u/%u Revoke %u/%u\n", |
104 | tr->tr_num_buf_new, tr->tr_num_buf_rm, | 104 | tr->tr_num_buf_new, tr->tr_num_buf_rm, |