From nobody Mon Jun 15 00:22:52 2026 Received: from mailgw.kylinos.cn (mailgw.kylinos.cn [124.126.103.232]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 906482F12A5; Tue, 7 Apr 2026 09:34:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=124.126.103.232 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775554459; cv=none; b=bXWW5wLw9QI8PFRoAsK3vadLd6GA3rjEKWgUG1aDB9IJPnfhpng4oU/hOKIyNTs2/O9DL3cl530JgWAf2MVNgmSvIfKl7ad/PeSFD5TBkGpUj2gghljDOlKCB61M9Xc2DhKMX6N84I47uZkt+f6AoyLbj7MeoxLudT1V/YCvTiM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775554459; c=relaxed/simple; bh=mMVW9GDF7kXuWd71wyeuLVPf9C6h7JbhLB63rFVbHt0=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=Y+zz6NqNzwDiS/XlbivUvnUXQVjBdr8RwZt8aHHP1FGHvlhKa1R+vmH/CG9QpzhtuMaAZelIawtpkYJFOzSd8/BWHkEGY8QkOR46JHSm+MA5VFKDlqhiCXjXhmNV4RE/8MRGCm1RskQWfInRsSKjdDKWi5+0LRbw16u4a0MWv/c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=kylinos.cn; spf=pass smtp.mailfrom=kylinos.cn; arc=none smtp.client-ip=124.126.103.232 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=kylinos.cn Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=kylinos.cn X-UUID: edf31f7a326411f1aa26b74ffac11d73-20260407 X-CID-P-RULE: Release_Ham X-CID-O-INFO: VERSION:1.3.12,REQID:2ffba04e-a9dd-41cc-bf31-708e77f1157d,IP:0,U RL:0,TC:0,Content:-5,EDM:25,RT:0,SF:0,FILE:0,BULK:0,RULE:Release_Ham,ACTIO N:release,TS:20 X-CID-META: VersionHash:e7bac3a,CLOUDID:c8f167c91b069a1979d943a63c2a7a95,BulkI D:nil,BulkQuantity:0,Recheck:0,SF:102|123|850|898,TC:nil,Content:0|15|50,E DM:5,IP:nil,URL:0,File:nil,RT:nil,Bulk:nil,QS:nil,BEC:nil,COL:0,OSI:0,OSA: 0,AV:0,LES:1,SPR:NO,DKR:0,DKP:0,BRR:0,BRE:0,ARC:0 X-CID-BVR: 2,SSN|SDN X-CID-BAS: 2,SSN|SDN,0,_ X-CID-FACTOR: TF_CID_SPAM_SNR X-CID-RHF: D41D8CD98F00B204E9800998ECF8427E X-UUID: edf31f7a326411f1aa26b74ffac11d73-20260407 X-User: fangqiurong@kylinos.cn Received: from localhost.localdomain [(10.44.16.150)] by mailgw.kylinos.cn (envelope-from ) (Generic MTA with TLSv1.3 TLS_AES_256_GCM_SHA384 256/256) with ESMTP id 1877109688; Tue, 07 Apr 2026 17:34:09 +0800 From: fangqiurong@kylinos.cn To: linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org Cc: tj@kernel.org, corbet@lwn.net Subject: [PATCH] sched_ext: Documentation: Fix scx_bpf_move_to_local kfunc name Date: Tue, 7 Apr 2026 17:34:05 +0800 Message-Id: <20260407093405.2573184-1-fangqiurong@kylinos.cn> X-Mailer: git-send-email 2.25.1 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" From: fangqiurong The correct kfunc name is scx_bpf_dsq_move_to_local(), not scx_bpf_move_to_local(). Fix the two references in the Scheduling Cycle section. Signed-off-by: fangqiurong --- Documentation/scheduler/sched-ext.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/scheduler/sched-ext.rst b/Documentation/schedule= r/sched-ext.rst index d74c2c2b9ef3..b106ccf7a0b8 100644 --- a/Documentation/scheduler/sched-ext.rst +++ b/Documentation/scheduler/sched-ext.rst @@ -264,9 +264,9 @@ The following briefly shows how a waking task is schedu= led and executed. rather than performing them immediately. There can be up to ``ops.dispatch_max_batch`` pending tasks. =20 - * ``scx_bpf_move_to_local()`` moves a task from the specified non-local + * ``scx_bpf_dsq_move_to_local()`` moves a task from the specified non-l= ocal DSQ to the dispatching DSQ. This function cannot be called with any B= PF - locks held. ``scx_bpf_move_to_local()`` flushes the pending insertions + locks held. ``scx_bpf_dsq_move_to_local()`` flushes the pending inser= tions tasks before trying to move from the specified DSQ. =20 4. After ``ops.dispatch()`` returns, if there are tasks in the local DSQ, --=20 2.25.1