diff options
author | David Teigland <teigland@redhat.com> | 2010-02-25 12:20:57 -0600 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2010-02-26 12:15:54 -0600 |
commit | b6fa8796b2da0390e9f4115e8789a01004fc1c9b (patch) | |
tree | 5bc3d1cea581b04d837c6cdb0fb5cd015f53f6fc /fs/dlm/lock.c | |
parent | b4a5d4bc377e49239374f266f0a0e2772c29749c (diff) | |
download | linux-b6fa8796b2da0390e9f4115e8789a01004fc1c9b.tar.bz2 |
dlm: use bastmode in debugfs output
The bast mode that appears in the debugfs output should be
useful on both master and process nodes. lkb_highbast is
currently printed, and is only useful on the master node.
lkb_bastmode is only useful on the process node. This
patch sets lkb_bastmode on the master node as well, and
uses that value in the debugfs print.
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/lock.c')
-rw-r--r-- | fs/dlm/lock.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index d0e43a3da887..46ffd3eeaaf7 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c @@ -320,10 +320,12 @@ static void queue_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rqmode) { lkb->lkb_time_bast = ktime_get(); - if (is_master_copy(lkb)) + if (is_master_copy(lkb)) { + lkb->lkb_bastmode = rqmode; /* printed by debugfs */ send_bast(r, lkb, rqmode); - else + } else { dlm_add_ast(lkb, AST_BAST, rqmode); + } } /* |