Update to D25266, bin/ps: Make the rtprio option actually show

realtime priorities

The current `ps -axO rtprio' show threads running at interrupt
priority such as the [intr] thread as '1:48' and threads running
at kernel priority such as [pagedaemon] as normal:4294967260.

This change shows [intr] as intr:48 and [pagedaemon] as kernel:4.

Reviewed by:    kib
MFC after:	1 week (together with -r362369)
Differential Revision: https://reviews.freebsd.org/D25660
This commit is contained in:
Kirk McKusick 2020-07-14 18:57:31 +00:00
parent a7f1b0cac9
commit 4a022f0e06
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363192
2 changed files with 9 additions and 1 deletions

View File

@ -723,12 +723,19 @@ priorityr(KINFO *k, VARENT *ve __unused)
break;
case RTP_PRIO_NORMAL:
/* alias for PRI_TIMESHARE */
asprintf(&str, "normal:%u", level - PRI_MIN_TIMESHARE);
if (level >= PRI_MIN_TIMESHARE)
asprintf(&str, "normal:%u", level - PRI_MIN_TIMESHARE);
else
asprintf(&str, "kernel:%u", level - PRI_MIN_KERN);
break;
case RTP_PRIO_IDLE:
/* alias for PRI_IDLE */
asprintf(&str, "idle:%u", level - PRI_MIN_IDLE);
break;
case RTP_PRIO_ITHD:
/* alias for PRI_ITHD */
asprintf(&str, "intr:%u", level - PRI_MIN_ITHD);
break;
default:
asprintf(&str, "%u:%u", class, level);
break;

View File

@ -44,6 +44,7 @@
/* priority types. Start at 1 to catch uninitialized fields. */
#define RTP_PRIO_ITHD PRI_ITHD /* Interrupt thread. */
#define RTP_PRIO_REALTIME PRI_REALTIME /* real time process */
#define RTP_PRIO_NORMAL PRI_TIMESHARE /* time sharing process */
#define RTP_PRIO_IDLE PRI_IDLE /* idle process */