All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 00/21] Add support for 32-bit tasks on asymmetric AArch32 systems
@ 2021-05-18  9:47 ` Will Deacon
  0 siblings, 0 replies; 166+ messages in thread
From: Will Deacon @ 2021-05-18  9:47 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: linux-arch, linux-kernel, Will Deacon, Catalin Marinas,
	Marc Zyngier, Greg Kroah-Hartman, Peter Zijlstra,
	Morten Rasmussen, Qais Yousef, Suren Baghdasaryan,
	Quentin Perret, Tejun Heo, Li Zefan, Johannes Weiner,
	Ingo Molnar, Juri Lelli, Vincent Guittot, Rafael J. Wysocki,
	kernel-team

Hi folks,

This is the long-awaited v6 of these patches which I last posted at the
end of last year:

  v1: https://lore.kernel.org/r/20201027215118.27003-1-will@kernel.org
  v2: https://lore.kernel.org/r/20201109213023.15092-1-will@kernel.org
  v3: https://lore.kernel.org/r/20201113093720.21106-1-will@kernel.org
  v4: https://lore.kernel.org/r/20201124155039.13804-1-will@kernel.org
  v5: https://lore.kernel.org/r/20201208132835.6151-1-will@kernel.org

There was also a nice LWN writeup in case you've forgotten what this is
about:

	https://lwn.net/Articles/838339/

It's taken me a while to get a v6 of this together, partly due to
addressing the review feedback on v5, but also because this has now seen
testing on real hardware which threw up some surprises in suspend/resume,
SCHED_DEADLINE and compat hwcap reporting. Thanks to Quentin for helping
me to debug those issues.

The aim of this series is to allow 32-bit ARM applications to run on
arm64 SoCs where not all of the CPUs support the 32-bit instruction set.
Unfortunately, such SoCs are real and will continue to be productised
over the next few years at least. I can assure you that I'm not just
doing this for fun.

Changes in v6 include:

  * Save/restore the affinity mask across execve() to 32-bit and back to
    64-bit again.

  * Allow 32-bit deadline tasks, but skip straight to fallback path when
    determining new affinity mask on execve().

  * Fixed resume-from-suspend path when the resuming CPU is 64-bit-only
    by deferring wake-ups for 32-bit tasks until the secondary CPUs are
    back online.

  * Bug fixes (compat hwcaps, memory leak, cpuset fallback path).

  * Documentation for arm64. It's in the divisive .rst format, but please
    take a look anyway!

I'm pretty happy with this now and it seems to do the right thing,
although the new patches in this revision would certainly benefit from
review. Series based on v5.13-rc1.

Cheers,

Will

Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Marc Zyngier <maz@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Morten Rasmussen <morten.rasmussen@arm.com>
Cc: Qais Yousef <qais.yousef@arm.com>
Cc: Suren Baghdasaryan <surenb@google.com>
Cc: Quentin Perret <qperret@google.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: Li Zefan <lizefan@huawei.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Juri Lelli <juri.lelli@redhat.com>
Cc: Vincent Guittot <vincent.guittot@linaro.org>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: kernel-team@android.com

--->8

Will Deacon (21):
  arm64: cpuinfo: Split AArch32 registers out into a separate struct
  arm64: Allow mismatched 32-bit EL0 support
  KVM: arm64: Kill 32-bit vCPUs on systems with mismatched EL0 support
  arm64: Kill 32-bit applications scheduled on 64-bit-only CPUs
  arm64: Advertise CPUs capable of running 32-bit applications in sysfs
  sched: Introduce task_cpu_possible_mask() to limit fallback rq
    selection
  cpuset: Don't use the cpu_possible_mask as a last resort for cgroup v1
  cpuset: Honour task_cpu_possible_mask() in guarantee_online_cpus()
  sched: Reject CPU affinity changes based on task_cpu_possible_mask()
  sched: Introduce task_struct::user_cpus_ptr to track requested
    affinity
  sched: Split the guts of sched_setaffinity() into a helper function
  sched: Allow task CPU affinity to be restricted on asymmetric systems
  sched: Admit forcefully-affined tasks into SCHED_DEADLINE
  freezer: Add frozen_or_skipped() helper function
  sched: Defer wakeup in ttwu() for unschedulable frozen tasks
  arm64: Implement task_cpu_possible_mask()
  arm64: exec: Adjust affinity for compat tasks with mismatched 32-bit
    EL0
  arm64: Prevent offlining first CPU with 32-bit EL0 on mismatched
    system
  arm64: Hook up cmdline parameter to allow mismatched 32-bit EL0
  arm64: Remove logic to kill 32-bit tasks on 64-bit-only cores
  Documentation: arm64: describe asymmetric 32-bit support

 .../ABI/testing/sysfs-devices-system-cpu      |   9 +
 .../admin-guide/kernel-parameters.txt         |  11 +
 Documentation/arm64/asymmetric-32bit.rst      | 149 ++++++++
 Documentation/arm64/index.rst                 |   1 +
 arch/arm64/include/asm/cpu.h                  |  44 +--
 arch/arm64/include/asm/cpucaps.h              |   3 +-
 arch/arm64/include/asm/cpufeature.h           |   8 +-
 arch/arm64/include/asm/mmu_context.h          |  13 +
 arch/arm64/kernel/cpufeature.c                | 227 +++++++++---
 arch/arm64/kernel/cpuinfo.c                   |  53 +--
 arch/arm64/kernel/process.c                   |  21 +-
 arch/arm64/kvm/arm.c                          |  11 +-
 include/linux/cpuset.h                        |   3 +-
 include/linux/freezer.h                       |   6 +
 include/linux/mmu_context.h                   |   8 +
 include/linux/sched.h                         |  15 +
 init/init_task.c                              |   1 +
 kernel/cgroup/cpuset.c                        |  45 ++-
 kernel/fork.c                                 |   2 +
 kernel/freezer.c                              |  10 +-
 kernel/hung_task.c                            |   4 +-
 kernel/sched/core.c                           | 323 ++++++++++++++----
 kernel/sched/sched.h                          |   1 +
 23 files changed, 781 insertions(+), 187 deletions(-)
 create mode 100644 Documentation/arm64/asymmetric-32bit.rst

-- 
2.31.1.751.gd2f1c929bd-goog


^ permalink raw reply	[flat|nested] 166+ messages in thread

end of thread, other threads:[~2021-05-25  9:45 UTC | newest]

Thread overview: 166+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-18  9:47 [PATCH v6 00/21] Add support for 32-bit tasks on asymmetric AArch32 systems Will Deacon
2021-05-18  9:47 ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 01/21] arm64: cpuinfo: Split AArch32 registers out into a separate struct Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 10:47   ` Catalin Marinas
2021-05-21 10:47     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 02/21] arm64: Allow mismatched 32-bit EL0 support Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 10:25   ` Catalin Marinas
2021-05-21 10:25     ` Catalin Marinas
2021-05-24 12:05     ` Will Deacon
2021-05-24 12:05       ` Will Deacon
2021-05-24 13:49       ` Catalin Marinas
2021-05-24 13:49         ` Catalin Marinas
2021-05-21 10:41   ` Catalin Marinas
2021-05-21 10:41     ` Catalin Marinas
2021-05-24 12:09     ` Will Deacon
2021-05-24 12:09       ` Will Deacon
2021-05-24 13:46       ` Catalin Marinas
2021-05-24 13:46         ` Catalin Marinas
2021-05-21 15:22   ` Qais Yousef
2021-05-21 15:22     ` Qais Yousef
2021-05-24 20:21     ` Will Deacon
2021-05-24 20:21       ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 03/21] KVM: arm64: Kill 32-bit vCPUs on systems with mismatched " Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 10:47   ` Catalin Marinas
2021-05-21 10:47     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 04/21] arm64: Kill 32-bit applications scheduled on 64-bit-only CPUs Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 10:55   ` Catalin Marinas
2021-05-21 10:55     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 05/21] arm64: Advertise CPUs capable of running 32-bit applications in sysfs Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 11:00   ` Catalin Marinas
2021-05-21 11:00     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 06/21] sched: Introduce task_cpu_possible_mask() to limit fallback rq selection Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 16:03   ` Peter Zijlstra
2021-05-21 16:03     ` Peter Zijlstra
2021-05-24 12:17     ` Will Deacon
2021-05-24 12:17       ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 07/21] cpuset: Don't use the cpu_possible_mask as a last resort for cgroup v1 Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 17:39   ` Qais Yousef
2021-05-21 17:39     ` Qais Yousef
2021-05-24 20:21     ` Will Deacon
2021-05-24 20:21       ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 08/21] cpuset: Honour task_cpu_possible_mask() in guarantee_online_cpus() Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 16:25   ` Qais Yousef
2021-05-21 16:25     ` Qais Yousef
2021-05-24 21:09     ` Will Deacon
2021-05-24 21:09       ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 09/21] sched: Reject CPU affinity changes based on task_cpu_possible_mask() Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 10/21] sched: Introduce task_struct::user_cpus_ptr to track requested affinity Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 11/21] sched: Split the guts of sched_setaffinity() into a helper function Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 16:41   ` Qais Yousef
2021-05-21 16:41     ` Qais Yousef
2021-05-24 21:16     ` Will Deacon
2021-05-24 21:16       ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 12/21] sched: Allow task CPU affinity to be restricted on asymmetric systems Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 17:11   ` Qais Yousef
2021-05-21 17:11     ` Qais Yousef
2021-05-24 21:43     ` Will Deacon
2021-05-24 21:43       ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 13/21] sched: Admit forcefully-affined tasks into SCHED_DEADLINE Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-18 10:20   ` Quentin Perret
2021-05-18 10:20     ` Quentin Perret
2021-05-18 10:28     ` Will Deacon
2021-05-18 10:28       ` Will Deacon
2021-05-18 10:48       ` Quentin Perret
2021-05-18 10:48         ` Quentin Perret
2021-05-18 10:59         ` Will Deacon
2021-05-18 10:59           ` Will Deacon
2021-05-18 13:19           ` Quentin Perret
2021-05-18 13:19             ` Quentin Perret
2021-05-20  9:13             ` Juri Lelli
2021-05-20  9:13               ` Juri Lelli
2021-05-20 10:16               ` Will Deacon
2021-05-20 10:16                 ` Will Deacon
2021-05-20 10:33                 ` Quentin Perret
2021-05-20 10:33                   ` Quentin Perret
2021-05-20 12:38                   ` Juri Lelli
2021-05-20 12:38                     ` Juri Lelli
2021-05-20 12:38                   ` Daniel Bristot de Oliveira
2021-05-20 12:38                     ` Daniel Bristot de Oliveira
2021-05-20 15:06                     ` Dietmar Eggemann
2021-05-20 15:06                       ` Dietmar Eggemann
2021-05-20 16:00                       ` Daniel Bristot de Oliveira
2021-05-20 16:00                         ` Daniel Bristot de Oliveira
2021-05-20 17:55                         ` Dietmar Eggemann
2021-05-20 17:55                           ` Dietmar Eggemann
2021-05-20 18:03                           ` Will Deacon
2021-05-20 18:03                             ` Will Deacon
2021-05-21 11:26                             ` Dietmar Eggemann
2021-05-21 11:26                               ` Dietmar Eggemann
2021-05-20 18:01                     ` Will Deacon
2021-05-20 18:01                       ` Will Deacon
2021-05-21  5:25                       ` Juri Lelli
2021-05-21  5:25                         ` Juri Lelli
2021-05-21  8:15                         ` Quentin Perret
2021-05-21  8:15                           ` Quentin Perret
2021-05-21  8:39                           ` Juri Lelli
2021-05-21  8:39                             ` Juri Lelli
2021-05-21 10:37                             ` Will Deacon
2021-05-21 10:37                               ` Will Deacon
2021-05-21 11:23                               ` Dietmar Eggemann
2021-05-21 11:23                                 ` Dietmar Eggemann
2021-05-21 13:02                                 ` Quentin Perret
2021-05-21 13:02                                   ` Quentin Perret
2021-05-21 14:04                                   ` Juri Lelli
2021-05-21 14:04                                     ` Juri Lelli
2021-05-21 17:47                                     ` Dietmar Eggemann
2021-05-21 17:47                                       ` Dietmar Eggemann
2021-05-21 13:00                               ` Daniel Bristot de Oliveira
2021-05-21 13:00                                 ` Daniel Bristot de Oliveira
2021-05-21 13:12                                 ` Quentin Perret
2021-05-21 13:12                                   ` Quentin Perret
2021-05-24 20:47                                 ` Will Deacon
2021-05-24 20:47                                   ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 14/21] freezer: Add frozen_or_skipped() helper function Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 15/21] sched: Defer wakeup in ttwu() for unschedulable frozen tasks Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-18  9:47 ` [PATCH v6 16/21] arm64: Implement task_cpu_possible_mask() Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-24 14:57   ` Catalin Marinas
2021-05-24 14:57     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 17/21] arm64: exec: Adjust affinity for compat tasks with mismatched 32-bit EL0 Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-24 15:02   ` Catalin Marinas
2021-05-24 15:02     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 18/21] arm64: Prevent offlining first CPU with 32-bit EL0 on mismatched system Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-24 15:46   ` Catalin Marinas
2021-05-24 15:46     ` Catalin Marinas
2021-05-24 20:32     ` Will Deacon
2021-05-24 20:32       ` Will Deacon
2021-05-25  9:43       ` Catalin Marinas
2021-05-25  9:43         ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 19/21] arm64: Hook up cmdline parameter to allow mismatched 32-bit EL0 Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-24 15:47   ` Catalin Marinas
2021-05-24 15:47     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 20/21] arm64: Remove logic to kill 32-bit tasks on 64-bit-only cores Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-24 15:47   ` Catalin Marinas
2021-05-24 15:47     ` Catalin Marinas
2021-05-18  9:47 ` [PATCH v6 21/21] Documentation: arm64: describe asymmetric 32-bit support Will Deacon
2021-05-18  9:47   ` Will Deacon
2021-05-21 17:37   ` Qais Yousef
2021-05-21 17:37     ` Qais Yousef
2021-05-24 21:46     ` Will Deacon
2021-05-24 21:46       ` Will Deacon
2021-05-24 16:22   ` Catalin Marinas
2021-05-24 16:22     ` Catalin Marinas
2021-05-21 17:45 ` [PATCH v6 00/21] Add support for 32-bit tasks on asymmetric AArch32 systems Qais Yousef
2021-05-21 17:45   ` Qais Yousef
2021-05-24 22:08   ` Will Deacon
2021-05-24 22:08     ` Will Deacon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.