summaryrefslogtreecommitdiffstats
path: root/fsdev/qemu-fsdev-dummy.c
diff options
context:
space:
mode:
authorAnthony Liguori2011-06-08 19:15:43 +0200
committerAnthony Liguori2011-06-08 19:15:43 +0200
commit93e0597ef9fa266756c30e61fafe4b70fc7ce6a6 (patch)
treeb1dcd7925329853ac5284bc2c12ebecdfa44fa34 /fsdev/qemu-fsdev-dummy.c
parentMerge remote-tracking branch 'spice/spice.v37' into staging (diff)
parenthw/9pfs: Don't crash when we get a request with not supported 9p operation (diff)
downloadqemu-93e0597ef9fa266756c30e61fafe4b70fc7ce6a6.tar.gz
qemu-93e0597ef9fa266756c30e61fafe4b70fc7ce6a6.tar.xz
qemu-93e0597ef9fa266756c30e61fafe4b70fc7ce6a6.zip
Merge remote-tracking branch 'jvrao/for-anthony' into staging
Diffstat (limited to 'fsdev/qemu-fsdev-dummy.c')
-rw-r--r--fsdev/qemu-fsdev-dummy.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/fsdev/qemu-fsdev-dummy.c b/fsdev/qemu-fsdev-dummy.c
new file mode 100644
index 0000000000..619e163a46
--- /dev/null
+++ b/fsdev/qemu-fsdev-dummy.c
@@ -0,0 +1,20 @@
+/*
+ * Virtio 9p
+ *
+ * Copyright IBM, Corp. 2010
+ *
+ * Authors:
+ * Gautham R Shenoy <ego@in.ibm.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2. See
+ * the COPYING file in the top-level directory.
+ *
+ */
+#include <stdio.h>
+#include <string.h>
+#include "qemu-fsdev.h"
+
+int qemu_fsdev_add(QemuOpts *opts)
+{
+ return 0;
+}