summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/files/1895399
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/gemma3:12b/files/1895399
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloademulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/files/1895399')
-rw-r--r--results/classifier/gemma3:12b/files/189539926
1 files changed, 26 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/files/1895399 b/results/classifier/gemma3:12b/files/1895399
new file mode 100644
index 00000000..5887ef9b
--- /dev/null
+++ b/results/classifier/gemma3:12b/files/1895399
@@ -0,0 +1,26 @@
+
+Docfix: add missing virtiofsd cache default 'auto'
+
+The usage command line for virtiofsd has:
+
+void fuse_cmdline_help(void)
+{
+    printf("    -h   --help                print help\n"
+...
+           "    -o cache=<mode>            cache mode. could be one of \"auto, "
+           "always, none\"\n"
+           "                               default: auto\n"
+
+
+But the default: auto info is missing from the man page.  I suggest this patch:
+
+--- docs/tools/virtiofsd.rst    2020-09-10 18:07:45.380430677 -0500
++++ /tmp/virtiofsd.rst  2020-09-12 11:48:10.440815204 -0500
+@@ -106,6 +106,7 @@
+   forbids the FUSE client from caching to achieve best coherency at the cost of
+   performance.  ``auto`` acts similar to NFS with a 1 second metadata cache
+   timeout.  ``always`` sets a long cache lifetime at the expense of coherency.
++  The default is ``auto``.
+ 
+ Examples
+ --------
\ No newline at end of file