dlm: change error message to debug
The invalid lockspace messages are normal and can appear relatively often. They should be suppressed without debugging enabled. Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
ce5246b972
commit
594199ebaa
|
@ -3857,8 +3857,9 @@ void dlm_receive_buffer(struct dlm_header *hd, int nodeid)
|
||||||
|
|
||||||
ls = dlm_find_lockspace_global(hd->h_lockspace);
|
ls = dlm_find_lockspace_global(hd->h_lockspace);
|
||||||
if (!ls) {
|
if (!ls) {
|
||||||
log_print("invalid h_lockspace %x from %d cmd %d type %d",
|
if (dlm_config.ci_log_debug)
|
||||||
hd->h_lockspace, nodeid, hd->h_cmd, type);
|
log_print("invalid lockspace %x from %d cmd %d type %d",
|
||||||
|
hd->h_lockspace, nodeid, hd->h_cmd, type);
|
||||||
|
|
||||||
if (hd->h_cmd == DLM_RCOM && type == DLM_RCOM_STATUS)
|
if (hd->h_cmd == DLM_RCOM && type == DLM_RCOM_STATUS)
|
||||||
dlm_send_ls_not_ready(nodeid, rc);
|
dlm_send_ls_not_ready(nodeid, rc);
|
||||||
|
|
Loading…
Reference in New Issue