blob: ce24c35bc796a85fe04de0e233112c5762bdedf1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
device: 0.900
semantic: 0.875
instruction: 0.858
graphic: 0.850
vnc: 0.639
other: 0.541
network: 0.457
boot: 0.453
socket: 0.448
mistranslation: 0.383
assembly: 0.203
KVM: 0.088
regression: 7.0.0 breaks registering process subreaper on Apple silicon
Description of problem:
When running any container on the QEMU virtual guest that is using a utility like `tini` which is trying to register itself as a process subreaper I get an error message like this:
```
[FATAL tini (1)] PR_SET_CHILD_SUBREAPER is unavailable on this platform. Are you using Linux >= 3.4?
```
The issue has been observed by multiple people on Apple silicon Macs, e.g. in these issues:
https://github.com/docker/for-mac/issues/6620#issuecomment-1694380189
https://github.com/GoogleCloudPlatform/spark-on-k8s-operator/issues/1735
Steps to reproduce:
1. Install QEMU 7.0.0+ on an Apple silicon MAC
2. Run a virtual guest
3. Try to register a process subreaper, e.g. like `tini -s` does
Additional information:
the issue was introduced in QEMU 7.0.0 with this commit:
https://gitlab.com/qemu-project/qemu/-/commit/220717a6f46a99031a5b1af964bbf4dec1310440
tini readme talking about process subreaping:
https://github.com/krallin/tini#subreaping
|