Bug 2011723

Summary: Backport fix to ps man page documentation
Product: [Retired] Fedora Documentation Reporter: mallika.bachan
Component: docs-requestsAssignee: Petr Bokoc <pbokoc>
Status: CLOSED CURRENTRELEASE QA Contact: Fedora Docs QA <docs-qa>
Severity: medium Docs Contact:
Priority: unspecified    
Version: develCC: nobody, sparks, zach
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2024-05-21 09:40:14 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description mallika.bachan 2021-10-07 08:06:47 UTC
Document URL: https://gitlab.com/procps-ng/procps/-/commit/fdab991bb22ce1d222027d7f2e48a7698e2048b2

Section Number and Name: ?

Describe the issue: 

Currently, man ps has
pri         PRI       priority of the process.  Higher number means lower priority.

Here, I up the niceness, so priority should decrease, which means PRI should show a higher number, then?
But in fact, it goes *down*

$ ps -o pri,nice -p 330709
PRI  NI
19   0
$ renice 10 -p 330709
330709 (process ID) old priority 0, new priority 10
$ ps -o pri,nice -p 330709
PRI  NI
9  10

Suggestions for improvement: Documentation appears to have been fixed at procps-ng three weeks ago. Please backport the change.

Additional information:

Comment 1 Petr Bokoc 2024-05-21 09:40:14 UTC
Appears to be done.