From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C4F68C6379F for ; Thu, 19 Nov 2020 16:57:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 78E92241A6 for ; Thu, 19 Nov 2020 16:57:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729154AbgKSQ5a (ORCPT ); Thu, 19 Nov 2020 11:57:30 -0500 Received: from foss.arm.com ([217.140.110.172]:35034 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727935AbgKSQ5a (ORCPT ); Thu, 19 Nov 2020 11:57:30 -0500 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 D5C441396; Thu, 19 Nov 2020 08:57:29 -0800 (PST) Received: from e113632-lin (e113632-lin.cambridge.arm.com [10.1.194.46]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 868F53F718; Thu, 19 Nov 2020 08:57:27 -0800 (PST) References: <20201113093720.21106-1-will@kernel.org> <20201113093720.21106-8-will@kernel.org> <20201119131319.GE4331@willie-the-truck> <20201119160944.GP3121392@hirez.programming.kicks-ass.net> User-agent: mu4e 0.9.17; emacs 26.3 From: Valentin Schneider To: Peter Zijlstra Cc: Will Deacon , linux-arm-kernel@lists.infradead.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Catalin Marinas , Marc Zyngier , Greg Kroah-Hartman , Morten Rasmussen , Qais Yousef , Suren Baghdasaryan , Quentin Perret , Tejun Heo , Li Zefan , Johannes Weiner , Ingo Molnar , Juri Lelli , Vincent Guittot , kernel-team@android.com Subject: Re: [PATCH v3 07/14] sched: Introduce restrict_cpus_allowed_ptr() to limit task CPU affinity Message-ID: In-reply-to: <20201119160944.GP3121392@hirez.programming.kicks-ass.net> Date: Thu, 19 Nov 2020 16:57:22 +0000 MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-arch@vger.kernel.org On 19/11/20 16:09, Peter Zijlstra wrote: > On Thu, Nov 19, 2020 at 01:13:20PM +0000, Will Deacon wrote: > >> Sure, but I was talking about what userspace sees, and I don't think it ever >> sees CPUs that have been hotplugged off, right? That is, sched_getaffinity() >> masks its result with the active_mask. > > # for i in /sys/devices/system/cpu/cpu*/online; do echo -n $i ":"; cat $i; done > /sys/devices/system/cpu/cpu1/online :0 > /sys/devices/system/cpu/cpu2/online :1 > /sys/devices/system/cpu/cpu3/online :1 > /sys/devices/system/cpu/cpu4/online :1 > /sys/devices/system/cpu/cpu5/online :1 > /sys/devices/system/cpu/cpu6/online :1 > /sys/devices/system/cpu/cpu7/online :1 > > # grep Cpus_allowed /proc/self/status > Cpus_allowed: ff > Cpus_allowed_list: 0-7 > > > :-) Harumph, so there is that... $ while true; do continue; done & $ PID=$! $ taskset -pc 0-1 $PID pid 849's current affinity list: 0-5 pid 849's new affinity list: 0,1 $ echo 0 > /sys/devices/system/cpu/cpu1/online [12578.545726] CPU1: shutdown [12578.548454] psci: CPU1 killed (polled 0 ms) $ taskset -pc $PID pid 849's current affinity list: 0 $ cat /proc/$PID/status | grep Cpus Cpus_allowed: 03 Cpus_allowed_list: 0-1