diff options
author | David Teigland <teigland@redhat.com> | 2006-01-20 03:47:07 -0500 |
---|---|---|
committer | Steven Whitehouse <steve@chygwyn.com> | 2006-01-20 03:47:07 -0500 |
commit | 901359256b2666f52a3a7d3f31927677e91b3a2a (patch) | |
tree | 24d4ee2c1ad63a0e6c3a303ad67eac3342772c4f /fs/dlm/debug_fs.c | |
parent | ec5800246607183a1d7fd0bae5f087c12439e9e7 (diff) |
[DLM] Update DLM to the latest patch level
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Steve Whitehouse <swhiteho@redhat.com>
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 | } |