Summary: | sched_setscheduler returns EPERM instead of EINVAL when sched_priority is out of range | ||||||
---|---|---|---|---|---|---|---|
Product: | Base System | Reporter: | Ali Abdallah <ali.abdallah> | ||||
Component: | kern | Assignee: | Mitchell Horne <mhorne> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Many People | CC: | 0mp, kpraveen.lkml, mhorne | ||||
Priority: | --- | Keywords: | easy, needs-qa | ||||
Version: | 11.1-STABLE | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Ali Abdallah
2018-04-24 06:03:04 UTC
Created attachment 236134 [details]
Proposed patch to fix the return value
Any change to get this minor issu fixed?
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=ba4782022ac840bd20f4e10cb95ca27d2742333a commit ba4782022ac840bd20f4e10cb95ca27d2742333a Author: Ali Abdallah <ali.abdallah@suse.com> AuthorDate: 2022-10-17 18:11:48 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2022-10-17 18:12:13 +0000 ksched: correct return code for invalid priority By convention, EINVAL is returned when validating arguments, not EPERM. This matches the documented behaviour of sched_setscheduler(3), and that of SCHED_OTHER. PR: 227735 MFC after: 1 week Reviewed by: kib, markj Differential Revision: https://reviews.freebsd.org/D37021 sys/kern/ksched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) A commit in branch stable/13 references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=3097c0500581151732e5d7a20bdd4e3997cab2d5 commit 3097c0500581151732e5d7a20bdd4e3997cab2d5 Author: Ali Abdallah <ali.abdallah@suse.com> AuthorDate: 2022-10-17 18:11:48 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2022-10-24 15:53:11 +0000 ksched: correct return code for invalid priority By convention, EINVAL is returned when validating arguments, not EPERM. This matches the documented behaviour of sched_setscheduler(3), and that of SCHED_OTHER. PR: 227735 MFC after: 1 week Reviewed by: kib, markj Differential Revision: https://reviews.freebsd.org/D37021 (cherry picked from commit ba4782022ac840bd20f4e10cb95ca27d2742333a) sys/kern/ksched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) A commit in branch stable/12 references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=a55b3c12a88476e5cfb65ac3c88aebc17015a82f commit a55b3c12a88476e5cfb65ac3c88aebc17015a82f Author: Ali Abdallah <ali.abdallah@suse.com> AuthorDate: 2022-10-17 18:11:48 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2022-10-24 15:56:13 +0000 ksched: correct return code for invalid priority By convention, EINVAL is returned when validating arguments, not EPERM. This matches the documented behaviour of sched_setscheduler(3), and that of SCHED_OTHER. PR: 227735 MFC after: 1 week Reviewed by: kib, markj Differential Revision: https://reviews.freebsd.org/D37021 (cherry picked from commit ba4782022ac840bd20f4e10cb95ca27d2742333a) sys/kern/ksched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) |