lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1514386305-7402-3-git-send-email-Julia.Lawall@lip6.fr> Date: Wed, 27 Dec 2017 15:51:35 +0100 From: Julia Lawall <Julia.Lawall@...6.fr> To: Christine Caulfield <ccaulfie@...hat.com> Cc: kernel-janitors@...r.kernel.org, David Teigland <teigland@...hat.com>, cluster-devel@...hat.com, linux-kernel@...r.kernel.org Subject: [PATCH 02/12] dlm: drop unneeded newline log_print prints a newline at the end of the message string, so the message string does not need to include a newline explicitly. Done using Coccinelle. The two strings were additionally merged into one, for easier grepping. Signed-off-by: Julia Lawall <Julia.Lawall@...6.fr> --- fs/dlm/plock.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/dlm/plock.c b/fs/dlm/plock.c index a4c63e9..ee84584 100644 --- a/fs/dlm/plock.c +++ b/fs/dlm/plock.c @@ -231,8 +231,7 @@ static int dlm_plock_callback(struct plock_op *op) rv = notify(fl, 0); if (rv) { /* XXX: We need to cancel the fs lock here: */ - log_print("dlm_plock_callback: lock granted after lock request " - "failed; dangling lock!\n"); + log_print("dlm_plock_callback: lock granted after lock request failed; dangling lock!"); goto out; }
Powered by blists - more mailing lists