diff options
author | David Teigland <teigland@redhat.com> | 2007-01-09 10:38:39 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-02-05 13:36:34 -0500 |
commit | 8ec6886748443bec53ce9b9bf50cec92bc417a1b (patch) | |
tree | f51bdd8cc92931c5f50d1a15181444651ceeeacb /fs/dlm/rcom.c | |
parent | 87d21e07f3880b8d489f0b4a639deb1362101838 (diff) |
[DLM] change some log_error to log_debug
Some common, non-error messages should use log_debug instead of log_error
so they can be turned off.
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/dlm/rcom.c')
-rw-r--r-- | fs/dlm/rcom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dlm/rcom.c b/fs/dlm/rcom.c index 54fba9bd6740..2e246af4a62c 100644 --- a/fs/dlm/rcom.c +++ b/fs/dlm/rcom.c | |||
@@ -435,7 +435,7 @@ static int is_old_reply(struct dlm_ls *ls, struct dlm_rcom *rc) | |||
435 | seq = ls->ls_recover_seq; | 435 | seq = ls->ls_recover_seq; |
436 | spin_unlock(&ls->ls_recover_lock); | 436 | spin_unlock(&ls->ls_recover_lock); |
437 | if (rc->rc_seq_reply != seq) { | 437 | if (rc->rc_seq_reply != seq) { |
438 | log_error(ls, "ignoring old reply %x from %d " | 438 | log_debug(ls, "ignoring old reply %x from %d " |
439 | "seq_reply %llx expect %llx", | 439 | "seq_reply %llx expect %llx", |
440 | rc->rc_type, rc->rc_header.h_nodeid, | 440 | rc->rc_type, rc->rc_header.h_nodeid, |
441 | (unsigned long long)rc->rc_seq_reply, | 441 | (unsigned long long)rc->rc_seq_reply, |
@@ -469,7 +469,7 @@ void dlm_receive_rcom(struct dlm_header *hd, int nodeid) | |||
469 | } | 469 | } |
470 | 470 | ||
471 | if (dlm_recovery_stopped(ls) && (rc->rc_type != DLM_RCOM_STATUS)) { | 471 | if (dlm_recovery_stopped(ls) && (rc->rc_type != DLM_RCOM_STATUS)) { |
472 | log_error(ls, "ignoring recovery message %x from %d", | 472 | log_debug(ls, "ignoring recovery message %x from %d", |
473 | rc->rc_type, nodeid); | 473 | rc->rc_type, nodeid); |
474 | goto out; | 474 | goto out; |
475 | } | 475 | } |