The branch stable/14 has been updated by olce:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=dcf352d69d912823b7eb2fb0ed5a33ac4ce9b5c9

commit dcf352d69d912823b7eb2fb0ed5a33ac4ce9b5c9
Author:     Olivier Certner <o...@freebsd.org>
AuthorDate: 2024-05-21 13:00:23 +0000
Commit:     Olivier Certner <o...@freebsd.org>
CommitDate: 2025-07-28 13:28:26 +0000

    runq: Remove userland references to RQ_PPQ in rtprio contexts
    
    Concerns only a single test (ptrace_test.c).
    
    MFC after:      1 month
    Event:          Kitchener-Waterloo Hackathon 202506
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D45390
    
    (cherry picked from commit b2a9ee2a72eabcfe7942cfbc2a576b5603ef218c)
---
 tests/sys/kern/ptrace_test.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/tests/sys/kern/ptrace_test.c b/tests/sys/kern/ptrace_test.c
index 8831d298d554..b96e7d126b03 100644
--- a/tests/sys/kern/ptrace_test.c
+++ b/tests/sys/kern/ptrace_test.c
@@ -36,7 +36,6 @@
 #include <sys/ptrace.h>
 #include <sys/procfs.h>
 #include <sys/queue.h>
-#include <sys/runq.h>
 #include <sys/syscall.h>
 #include <sys/sysctl.h>
 #include <sys/user.h>
@@ -2029,7 +2028,7 @@ ATF_TC_BODY(ptrace__PT_KILL_competing_signal, tc)
                    sched_get_priority_min(SCHED_FIFO)) / 2;
                CHILD_REQUIRE(pthread_setschedparam(pthread_self(),
                    SCHED_FIFO, &sched_param) == 0);
-               sched_param.sched_priority -= RQ_PPQ;
+               sched_param.sched_priority -= 1;
                CHILD_REQUIRE(pthread_setschedparam(t, SCHED_FIFO,
                    &sched_param) == 0);
 
@@ -2132,7 +2131,7 @@ ATF_TC_BODY(ptrace__PT_KILL_competing_stop, tc)
                    sched_get_priority_min(SCHED_FIFO)) / 2;
                CHILD_REQUIRE(pthread_setschedparam(pthread_self(),
                    SCHED_FIFO, &sched_param) == 0);
-               sched_param.sched_priority -= RQ_PPQ;
+               sched_param.sched_priority -= 1;
                CHILD_REQUIRE(pthread_setschedparam(t, SCHED_FIFO,
                    &sched_param) == 0);
 

Reply via email to