Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 594199eb authored by David Teigland's avatar David Teigland
Browse files

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: default avatarDavid Teigland <teigland@redhat.com>
parent ce5246b9
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3857,7 +3857,8 @@ void dlm_receive_buffer(struct dlm_header *hd, int nodeid)

	ls = dlm_find_lockspace_global(hd->h_lockspace);
	if (!ls) {
		log_print("invalid h_lockspace %x from %d cmd %d type %d",
		if (dlm_config.ci_log_debug)
			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)