summary refs log tree commit diff stats
path: root/gitlab/issues/target_missing/host_missing/accel_missing/2389.toml
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-05-30 16:52:07 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-05-30 16:52:17 +0200
commit9260319e7411ff8281700a532caa436f40120ec4 (patch)
tree2f6bfe5f3458dd49d328d3a9eb508595450adec0 /gitlab/issues/target_missing/host_missing/accel_missing/2389.toml
parent225caa38269323af1bfc2daadff5ec8bd930747f (diff)
downloadqemu-analysis-9260319e7411ff8281700a532caa436f40120ec4.tar.gz
qemu-analysis-9260319e7411ff8281700a532caa436f40120ec4.zip
gitlab scraper: download in toml and text format
Diffstat (limited to 'gitlab/issues/target_missing/host_missing/accel_missing/2389.toml')
-rw-r--r--gitlab/issues/target_missing/host_missing/accel_missing/2389.toml42
1 files changed, 0 insertions, 42 deletions
diff --git a/gitlab/issues/target_missing/host_missing/accel_missing/2389.toml b/gitlab/issues/target_missing/host_missing/accel_missing/2389.toml
deleted file mode 100644
index 1d28a6130..000000000
--- a/gitlab/issues/target_missing/host_missing/accel_missing/2389.toml
+++ /dev/null
@@ -1,42 +0,0 @@
-id = 2389
-title = "Mutex initialization assertion failure due to incompatibility with macOS setrlimit() syscall"
-state = "closed"
-created_at = "2024-06-13T07:32:04.897Z"
-closed_at = "2024-06-13T07:39:55.559Z"
-labels = []
-url = "https://gitlab.com/qemu-project/qemu/-/issues/2389"
-host-os = "macOS 10.15.7"
-host-arch = "x86_64"
-qemu-version = "9.0.50"
-guest-os = "n/a"
-guest-arch = "n/a"
-description = """Running the command with with any set of arguments instantly crashes with the following error message:
-
-```
-Assertion failed: (mutex->initialized), function qemu_mutex_lock_impl, file ../util/qemu-thread-posix.c, line 92.
-zsh: abort      ./qemu-system-x86_64
-```"""
-reproduce = """As per instructions for building from scratch:
-
-1. `mkdir build && cd build`
-2. `../configure --prefix=$PWD/.. --audio-drv-list=sdl --disable-cocoa --enable-sdl --enable-sdl-image`
-3. `make && make install`
-4. `cd ../bin`
-5. `./qemu-system-x86_64`"""
-additional = """The issue is coming from the `os_setup_limits()` function in `os-posix.c`. As it turns out, the `setrlimit()` syscall behaves subtly different on macOS than on Linux systems, and the macOS man pages explicitly forbade the code on line 273.
-
-Line 273 from `os-posix.c`:
-
-```
-nofile.rlim_cur = nofile.rlim_max;
-```
-
-macOS `setrlimit()` man page:
-
-```
-COMPATIBILITY
-     setrlimit() now returns with errno set to EINVAL in places that historically succeeded.  It no longer accepts "rlim_cur = RLIM_INFINITY" for
-     RLIM_NOFILE.  Use "rlim_cur = min(OPEN_MAX, rlim_max)".
-```
-
-The man page thankfully gives us the [patch](/uploads/e7c8c6e3b5620c3b1ee34e89661097f3/qemu.patch)"""