summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/files/944
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:34:26 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:35:44 +0000
commit25f8033d556aa17afaea4a5196ea7a69fe248320 (patch)
tree0f056db167683be54ea1e5e72d29d6069af55e7d /results/classifier/deepseek-2-tmp/output/files/944
parent8e6da29e4ee5fc14bc1cc816a24f21271f14090d (diff)
downloademulator-bug-study-25f8033d556aa17afaea4a5196ea7a69fe248320.tar.gz
emulator-bug-study-25f8033d556aa17afaea4a5196ea7a69fe248320.zip
add new temporary deepseek-r1:14b results
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/files/944')
-rw-r--r--results/classifier/deepseek-2-tmp/output/files/94429
1 files changed, 29 insertions, 0 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/files/944 b/results/classifier/deepseek-2-tmp/output/files/944
new file mode 100644
index 00000000..42ec2ca2
--- /dev/null
+++ b/results/classifier/deepseek-2-tmp/output/files/944
@@ -0,0 +1,29 @@
+
+9p virtfs issue under MacOS in 7.0.0-rc1
+Description of problem:
+9p virtfs under MacOS has an issue with sed inline replacements (sed -i).
+The issue somewhere in xattr I believe
+Steps to 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 information:
+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
+```