linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Alice Ferrazzi <alicef@alicef.me>
To: jpoimboe@redhat.com, jeyu@kernel.org, jikos@kernel.org,
	mbenes@suse.cz, pmladek@suse.com, live-patching@vger.kernel.org,
	linux-kernel@vger.kernel.org
Cc: Alice Ferrazzi <alicef@alicef.me>,
	Alice Ferrazzi <alice.ferrazzi@miraclelinux.com>
Subject: [PATCH] livepatch: core: Return ENOTSUPP instead of ENOSYS
Date: Sun, 27 Jan 2019 04:26:30 +0900	[thread overview]
Message-ID: <20190126192630.6163-1-alicef@alicef.me> (raw)

This patch fixes a checkpatch warning:
    WARNING: ENOSYS means 'invalid syscall nr' and nothing else

Signed-off-by: Alice Ferrazzi <alice.ferrazzi@miraclelinux.com>
---
 kernel/livepatch/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c
index 5b77a7314e01..eea6b94fef89 100644
--- a/kernel/livepatch/core.c
+++ b/kernel/livepatch/core.c
@@ -897,7 +897,7 @@ int klp_register_patch(struct klp_patch *patch)
 
 	if (!klp_have_reliable_stack()) {
 		pr_err("This architecture doesn't have support for the livepatch consistency model.\n");
-		return -ENOSYS;
+		return -ENOTSUPP;
 	}
 
 	return klp_init_patch(patch);
-- 
2.19.2


             reply	other threads:[~2019-01-26 19:36 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-26 19:26 Alice Ferrazzi [this message]
2019-01-28 19:49 ` [PATCH] livepatch: core: Return ENOTSUPP instead of ENOSYS Joe Lawrence
2019-01-29 16:50   ` Josh Poimboeuf
2019-01-30 12:41     ` Petr Mladek
2019-01-30 13:00       ` alicef
2019-01-30 13:10       ` Josh Poimboeuf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190126192630.6163-1-alicef@alicef.me \
    --to=alicef@alicef.me \
    --cc=alice.ferrazzi@miraclelinux.com \
    --cc=jeyu@kernel.org \
    --cc=jikos@kernel.org \
    --cc=jpoimboe@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=live-patching@vger.kernel.org \
    --cc=mbenes@suse.cz \
    --cc=pmladek@suse.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).