diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-05-21 21:21:26 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-05-21 21:21:26 +0200 |
| commit | 4b927bc37359dec23f67d3427fc982945f24f404 (patch) | |
| tree | 245449ef9146942dc7fffd0235b48b7e70a00bf2 /gitlab/issues/target_missing/host_missing/accel_missing/944.toml | |
| parent | aa8bd79cec7bf6790ddb01d156c2ef2201abbaab (diff) | |
| download | emulator-bug-study-4b927bc37359dec23f67d3427fc982945f24f404.tar.gz emulator-bug-study-4b927bc37359dec23f67d3427fc982945f24f404.zip | |
add gitlab issues in toml format
Diffstat (limited to 'gitlab/issues/target_missing/host_missing/accel_missing/944.toml')
| -rw-r--r-- | gitlab/issues/target_missing/host_missing/accel_missing/944.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gitlab/issues/target_missing/host_missing/accel_missing/944.toml b/gitlab/issues/target_missing/host_missing/accel_missing/944.toml new file mode 100644 index 00000000..69daa615 --- /dev/null +++ b/gitlab/issues/target_missing/host_missing/accel_missing/944.toml @@ -0,0 +1,36 @@ +id = 944 +title = "9p virtfs issue under MacOS in 7.0.0-rc1" +state = "closed" +created_at = "2022-03-28T12:38:05.775Z" +closed_at = "2024-09-10T08:55:57.606Z" +labels = ["block:9p"] +url = "https://gitlab.com/qemu-project/qemu/-/issues/944" +host-os = "MacOS 12.3" +host-arch = "x86_64" +qemu-version = "7.0.0-rc1" +guest-os = "n/a" +guest-arch = "n/a" +description = """9p virtfs under MacOS has an issue with sed inline replacements (sed -i). +The issue somewhere in xattr I believe""" +reproduce = """1. /Users/sid/ is mounted via 9p virtfs from MacOS host +2. +``` +[core@localhost ~]$ sed -i 's/aaa/zzz/g' /Users/sid/q/123 +sed: preserving permissions for ‘/Users/sid/q/sed3MLMjp’: Protocol not supported +```""" +additional = """strace part with error +``` +openat(AT_FDCWD, "/proc/thread-self/attr/fscreate", O_RDWR|O_CLOEXEC) = 5 +write(5, NULL, 0) = 0 +close(5) = 0 +newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=12, ...}, AT_EMPTY_PATH) = 0 +read(3, "qqq\\nzzz\\nsss\\n", 8192) = 12 +newfstatat(4, "", {st_mode=S_IFREG|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +read(3, "", 8192) = 0 +fchown(4, 501, 1000) = 0 +fgetxattr(3, "system.posix_acl_access", 0x7ffd6dbd18b0, 132) = -1 ENODATA (No data available) +newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=12, ...}, AT_EMPTY_PATH) = 0 +fsetxattr(4, "system.posix_acl_access", "\\2\\0\\0\\0\\1\\0\\6\\0\\377\\377\\377\\377\\4\\0\\4\\0\\377\\377\\377\\377 \\0\\4\\0\\377\\377\\377\\377", 28, 0) = -1 EPROTONOSUPPORT (Protocol not supported) +fsetxattr(4, "system.posix_acl_access", "\\2\\0\\0\\0\\1\\0\\6\\0\\377\\377\\377\\377\\4\\0\\4\\0\\377\\377\\377\\377 \\0\\4\\0\\377\\377\\377\\377", 28, 0) = -1 EPROTONOSUPPORT (Protocol not supported) +fchmod(4, 0100644) = 0 +```""" |