The current EINVAL description has a complex boolean expression, and I'm planning to add one more condition to it. Let's separate it into different EINVAL descriptions to make it easier to read. Tweak the punctuation a bit too while I'm at it. Signed-off-by: Brian Norris <briannorris@xxxxxxxxxxxx> --- v2: * split out from patch 2 and reworked man/man2/sched_setattr.2 | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/man/man2/sched_setattr.2 b/man/man2/sched_setattr.2 index 5d7061bd6e3a..0c866a786748 100644 --- a/man/man2/sched_setattr.2 +++ b/man/man2/sched_setattr.2 @@ -349,16 +349,21 @@ .SH ERRORS .TP .B EINVAL .I attr.sched_policy -is not one of the recognized policies; +is not one of the recognized policies. +.TP +.B EINVAL .I attr.sched_flags contains a flag other than -.BR SCHED_FLAG_RESET_ON_FORK ; -or +.BR SCHED_FLAG_RESET_ON_FORK . +.TP +.B EINVAL .I attr.sched_priority -is invalid; or +is invalid. +.TP +.B EINVAL .I attr.sched_policy is -.B SCHED_DEADLINE +.BR SCHED_DEADLINE , and the deadline scheduling parameters in .I attr are invalid. -- 2.45.2.505.gda0bf45e8d-goog