mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
livepatch: core: Return EOPNOTSUPP instead of ENOSYS
As a result of an unsupported operation is better to use EOPNOTSUPP as error code. ENOSYS is only used for 'invalid syscall nr' and nothing else. Signed-off-by: Alice Ferrazzi <alice.ferrazzi@miraclelinux.com> Acked-by: Miroslav Benes <mbenes@suse.cz> Acked-by: Josh Poimboeuf <jpoimboe@redhat.com> Signed-off-by: Petr Mladek <pmladek@suse.com>
This commit is contained in:
parent
bae054372a
commit
375bfca345
@ -1036,7 +1036,7 @@ int klp_enable_patch(struct klp_patch *patch)
|
|||||||
|
|
||||||
if (!klp_have_reliable_stack()) {
|
if (!klp_have_reliable_stack()) {
|
||||||
pr_err("This architecture doesn't have support for the livepatch consistency model.\n");
|
pr_err("This architecture doesn't have support for the livepatch consistency model.\n");
|
||||||
return -ENOSYS;
|
return -EOPNOTSUPP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user