diff options
Diffstat (limited to 'fs/dlm/debug_fs.c')
-rw-r--r-- | fs/dlm/debug_fs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c index 98b49a1ece47..5080bbffd586 100644 --- a/fs/dlm/debug_fs.c +++ b/fs/dlm/debug_fs.c | |||
@@ -63,12 +63,12 @@ static void print_lock(struct seq_file *s, struct dlm_lkb *lkb, | |||
63 | /* FIXME: this warns on Alpha */ | 63 | /* FIXME: this warns on Alpha */ |
64 | if (lkb->lkb_status == DLM_LKSTS_CONVERT | 64 | if (lkb->lkb_status == DLM_LKSTS_CONVERT |
65 | || lkb->lkb_status == DLM_LKSTS_GRANTED) | 65 | || lkb->lkb_status == DLM_LKSTS_GRANTED) |
66 | seq_printf(s, " %" PRIx64 "-%" PRIx64, | 66 | seq_printf(s, " %llx-%llx", |
67 | lkb->lkb_range[GR_RANGE_START], | 67 | lkb->lkb_range[GR_RANGE_START], |
68 | lkb->lkb_range[GR_RANGE_END]); | 68 | lkb->lkb_range[GR_RANGE_END]); |
69 | if (lkb->lkb_status == DLM_LKSTS_CONVERT | 69 | if (lkb->lkb_status == DLM_LKSTS_CONVERT |
70 | || lkb->lkb_status == DLM_LKSTS_WAITING) | 70 | || lkb->lkb_status == DLM_LKSTS_WAITING) |
71 | seq_printf(s, " (%" PRIx64 "-%" PRIx64 ")", | 71 | seq_printf(s, " (%llx-%llx)", |
72 | lkb->lkb_range[RQ_RANGE_START], | 72 | lkb->lkb_range[RQ_RANGE_START], |
73 | lkb->lkb_range[RQ_RANGE_END]); | 73 | lkb->lkb_range[RQ_RANGE_END]); |
74 | } | 74 | } |