From: David Teigland Date: Wed, 23 Aug 2006 17:50:54 +0000 (-0500) Subject: [DLM] sequence number missing in not_ready reply X-Git-Tag: v2.6.19-rc1~32^2~92 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f5888750aad219bec42f3f28354eb230d1a47b89;p=karo-tx-linux.git [DLM] sequence number missing in not_ready reply When a status reply is sent for a lockspace that doesn't yet exist, the message sequence number from the sender was not being copied into the reply causing the sender to ignore the reply. Signed-off-by: David Teigland Signed-off-by: Steven Whitehouse --- diff --git a/fs/dlm/rcom.c b/fs/dlm/rcom.c index 64ba4929f90b..518239a8b1e9 100644 --- a/fs/dlm/rcom.c +++ b/fs/dlm/rcom.c @@ -388,6 +388,7 @@ static int send_ls_not_ready(int nodeid, struct dlm_rcom *rc_in) rc->rc_header.h_cmd = DLM_RCOM; rc->rc_type = DLM_RCOM_STATUS_REPLY; + rc->rc_id = rc_in->rc_id; rc->rc_result = -ESRCH; dlm_rcom_out(rc);