From nobody Fri Oct 3 11:22:21 2025 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id E41912F548B for ; Tue, 2 Sep 2025 11:12:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756811556; cv=none; b=iNJS542CRrk+ysN1qkAk7O3BfrYLnrc2H30NkKPL17fI5zSFwzqKFqJY5ov8mcO/jRFJVcp3lIiZIyyN62PAEYoo0LPTVOLXjO/8wr2igxVSFwkaK4MWBKAIIqx8WonaYZZcyWknzzc1ABr71FHnkgulkrtySMlShB8kn0eLtBo= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756811556; c=relaxed/simple; bh=IqZU/iNyrQHy+AfHt0HWf27ogKIE8pVmCP+Bz4YRD0c=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=qAudhSrHau84e7FtUXyOGQEyRRGpkGKG/y/gTBxDk3LI5lQ5g62Y+jo5/PYzErMMX9ARv89PZA4FQkTlQUv6aj8dH8u9mFK8n0o0gOpGvyNVYBdm3BmmbL8EXL1uewsU4KyVlIyyY4bFYGhqncejwcl8nux7xwnHeYO6oEE6+zo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 0A26227B5; Tue, 2 Sep 2025 04:12:25 -0700 (PDT) Received: from e127648.arm.com (unknown [10.57.90.1]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 5C92A3F694; Tue, 2 Sep 2025 04:12:31 -0700 (PDT) From: Christian Loehle To: tj@kernel.org, arighi@nvidia.com, void@manifault.com Cc: linux-kernel@vger.kernel.org, sched-ext@lists.linux.dev, changwoo@igalia.com, hodgesd@meta.com, mingo@redhat.com, peterz@infradead.org, jake@hillion.co.uk, Christian Loehle Subject: [PATCH v6 2/3] sched_ext: Introduce scx_bpf_remote_curr() Date: Tue, 2 Sep 2025 12:11:42 +0100 Message-Id: <20250902111143.2667154-3-christian.loehle@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250902111143.2667154-1-christian.loehle@arm.com> References: <20250902111143.2667154-1-christian.loehle@arm.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Provide scx_bpf_remote_curr() as a way for scx schedulers to check the curr task of a remote rq without assuming its lock is held. Many scx schedulers make use of scx_bpf_cpu_rq() to check a remote curr (e.g. to see if it should be preempted). This is problematic because scx_bpf_cpu_rq() provides access to all fields of struct rq, most of which aren't safe to use without holding the associated rq lock. Signed-off-by: Christian Loehle --- kernel/sched/ext.c | 14 ++++++++++++++ tools/sched_ext/include/scx/common.bpf.h | 1 + 2 files changed, 15 insertions(+) diff --git a/kernel/sched/ext.c b/kernel/sched/ext.c index 9fcc310d85d5..dc141144bfd6 100644 --- a/kernel/sched/ext.c +++ b/kernel/sched/ext.c @@ -7452,6 +7452,19 @@ __bpf_kfunc struct rq *scx_bpf_cpu_rq_locked(void) return rq; } =20 +/** + * scx_bpf_remote_curr - Return remote CPU's curr task + * @cpu: CPU of interest + * + * Callers must hold RCU read lock (KF_RCU). + */ +__bpf_kfunc struct task_struct *scx_bpf_remote_curr(s32 cpu) +{ + if (!kf_cpu_valid(cpu, NULL)) + return NULL; + return rcu_dereference(cpu_rq(cpu)->curr); +} + /** * scx_bpf_task_cgroup - Return the sched cgroup of a task * @p: task of interest @@ -7617,6 +7630,7 @@ BTF_ID_FLAGS(func, scx_bpf_task_running, KF_RCU) BTF_ID_FLAGS(func, scx_bpf_task_cpu, KF_RCU) BTF_ID_FLAGS(func, scx_bpf_cpu_rq) BTF_ID_FLAGS(func, scx_bpf_cpu_rq_locked, KF_RET_NULL) +BTF_ID_FLAGS(func, scx_bpf_remote_curr, KF_RET_NULL | KF_RCU) #ifdef CONFIG_CGROUP_SCHED BTF_ID_FLAGS(func, scx_bpf_task_cgroup, KF_RCU | KF_ACQUIRE) #endif diff --git a/tools/sched_ext/include/scx/common.bpf.h b/tools/sched_ext/inc= lude/scx/common.bpf.h index f5be06c93359..dd3d94256c10 100644 --- a/tools/sched_ext/include/scx/common.bpf.h +++ b/tools/sched_ext/include/scx/common.bpf.h @@ -92,6 +92,7 @@ bool scx_bpf_task_running(const struct task_struct *p) __= ksym; s32 scx_bpf_task_cpu(const struct task_struct *p) __ksym; struct rq *scx_bpf_cpu_rq(s32 cpu) __ksym; struct rq *scx_bpf_cpu_rq_locked(void) __ksym; +struct task_struct *scx_bpf_remote_curr(s32 cpu) __ksym; struct cgroup *scx_bpf_task_cgroup(struct task_struct *p) __ksym __weak; u64 scx_bpf_now(void) __ksym __weak; void scx_bpf_events(struct scx_event_stats *events, size_t events__sz) __k= sym __weak; --=20 2.34.1