Commit 99c58d64 authored by Alexander Aring's avatar Alexander Aring Committed by David Teigland

fs: dlm: remove twice newline

This patch removes a newline which log_print() already adds, also
removes wrapped string that causes a checkpatch warning.
Signed-off-by: default avatarAlexander Aring <aahringo@redhat.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent fdf0eaf1
...@@ -240,8 +240,8 @@ static int dlm_plock_callback(struct plock_op *op) ...@@ -240,8 +240,8 @@ static int dlm_plock_callback(struct plock_op *op)
rv = notify(fl, 0); rv = notify(fl, 0);
if (rv) { if (rv) {
/* XXX: We need to cancel the fs lock here: */ /* XXX: We need to cancel the fs lock here: */
log_print("dlm_plock_callback: lock granted after lock request " log_print("%s: lock granted after lock request failed; dangling lock!",
"failed; dangling lock!\n"); __func__);
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment