diff options
Diffstat (limited to 'fs/dlm/rcom.c')
-rw-r--r-- | fs/dlm/rcom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/dlm/rcom.c b/fs/dlm/rcom.c index c42f2db6c4b4..4cc31be9cd9d 100644 --- a/fs/dlm/rcom.c +++ b/fs/dlm/rcom.c | |||
@@ -172,7 +172,8 @@ static void receive_sync_reply(struct dlm_ls *ls, struct dlm_rcom *rc_in) | |||
172 | rc_in->rc_id != ls->ls_rcom_seq) { | 172 | rc_in->rc_id != ls->ls_rcom_seq) { |
173 | log_debug(ls, "reject reply %d from %d seq %llx expect %llx", | 173 | log_debug(ls, "reject reply %d from %d seq %llx expect %llx", |
174 | rc_in->rc_type, rc_in->rc_header.h_nodeid, | 174 | rc_in->rc_type, rc_in->rc_header.h_nodeid, |
175 | rc_in->rc_id, ls->ls_rcom_seq); | 175 | (unsigned long long)rc_in->rc_id, |
176 | (unsigned long long)ls->ls_rcom_seq); | ||
176 | goto out; | 177 | goto out; |
177 | } | 178 | } |
178 | memcpy(ls->ls_recover_buf, rc_in, rc_in->rc_header.h_length); | 179 | memcpy(ls->ls_recover_buf, rc_in, rc_in->rc_header.h_length); |