diff options
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 d0e43a3da88..46ffd3eeaaf 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); +	}  }  /*  |