aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/libxl_noblktap2.c
diff options
context:
space:
mode:
authorChristoph Egger <Christoph.Egger@amd.com>2010-08-16 17:04:31 +0100
committerChristoph Egger <Christoph.Egger@amd.com>2010-08-16 17:04:31 +0100
commit6b9f18cdce05d81336a3dac2b66e090b029170c8 (patch)
treeef91ca9be5acd1093abc8f0def579557ceff11d2 /tools/libxl/libxl_noblktap2.c
parent8eb8ac72924e430b89497995be61ccb2a2402919 (diff)
downloadxen-6b9f18cdce05d81336a3dac2b66e090b029170c8.tar.gz
xen-6b9f18cdce05d81336a3dac2b66e090b029170c8.tar.bz2
xen-6b9f18cdce05d81336a3dac2b66e090b029170c8.zip
Make blktap support optional.
Enable it by default on Linux, disable it on non-Linux. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> committer: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Diffstat (limited to 'tools/libxl/libxl_noblktap2.c')
-rw-r--r--tools/libxl/libxl_noblktap2.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/libxl/libxl_noblktap2.c b/tools/libxl/libxl_noblktap2.c
new file mode 100644
index 0000000000..afefd4a2fe
--- /dev/null
+++ b/tools/libxl/libxl_noblktap2.c
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2010 Advanced Micro Devices
+ * Author Christoph Egger <Christoph.Egger@amd.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation; version 2.1 only.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ */
+
+#include "libxl.h"
+#include "libxl_osdeps.h"
+#include "libxl_internal.h"
+
+int libxl_blktap_enabled(libxl_gc *gc)
+{
+ return 0;
+}
+
+const char *libxl_blktap_devpath(libxl_gc *gc,
+ const char *disk,
+ libxl_disk_phystype phystype)
+{
+ return NULL;
+}