From: Christoph Egger <Christoph.Egger@amd.com>
To: Ian Jackson <Ian.Jackson@eu.citrix.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
Stefano Stabellini <Stefano.Stabellini@eu.citrix.com>
Subject: Re: [PATCH 4/6] libxl: portiblity fixes
Date: Wed, 28 Jul 2010 13:50:44 +0200 [thread overview]
Message-ID: <201007281350.44601.Christoph.Egger@amd.com> (raw)
In-Reply-To: <19535.4146.981024.743455@mariner.uk.xensource.com>
[-- Attachment #1: Type: text/plain, Size: 930 bytes --]
On Tuesday 27 July 2010 18:58:26 Ian Jackson wrote:
> Christoph Egger writes ("[Xen-devel] [PATCH 4/6] libxl: portiblity fixes"):
> > +ifeq ($(CONFIG_Linux),y)
> > CFLAGS_libblktapctl = -I$(XEN_BLKTAP2)/control -I$(XEN_BLKTAP2)/include
> > $(CFLAGS_include) LDFLAGS_libblktapctl = -L$(XEN_BLKTAP2)/control
> > -lblktapctl
> > +else
> > +CFLAGS_libblktapctl =
> > +LDFLAGS_libblktapctl =
> > +endif
>
> I think this should be in the same patch as provides the stub
> implementation of the blktap functions for non-blktap systems.
Done.
Attached patch adds the stub implementations for
non-blktap systems.
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
--
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632
[-- Attachment #2: xen_tools_libxl4.diff --]
[-- Type: text/x-diff, Size: 2328 bytes --]
diff -r 9ea1cf03ef55 tools/Rules.mk
--- a/tools/Rules.mk Wed Jul 28 13:35:25 2010 +0200
+++ b/tools/Rules.mk Wed Jul 28 13:48:07 2010 +0200
@@ -26,10 +26,19 @@ LDFLAGS_libxenguest = -L$(XEN_LIBXC) -lx
CFLAGS_libxenstore = -I$(XEN_XENSTORE) $(CFLAGS_include)
LDFLAGS_libxenstore = -L$(XEN_XENSTORE) -lxenstore
+ifeq ($(CONFIG_Linux),y)
LIBXL_BLKTAP = y
+else
+LIBXL_BLKTAP = n
+endif
+ifeq ($(LIBXL_BLKTAP),y)
CFLAGS_libblktapctl = -I$(XEN_BLKTAP2)/control -I$(XEN_BLKTAP2)/include $(CFLAGS_include)
LDFLAGS_libblktapctl = -L$(XEN_BLKTAP2)/control -lblktapctl
+else
+CFLAGS_libblktapctl =
+LDFLAGS_libblktapctl =
+endif
X11_LDPATH = -L/usr/X11R6/$(LIBLEAFDIR)
diff -r 9ea1cf03ef55 tools/libxl/Makefile
--- a/tools/libxl/Makefile Wed Jul 28 13:35:25 2010 +0200
+++ b/tools/libxl/Makefile Wed Jul 28 13:48:07 2010 +0200
@@ -20,6 +20,8 @@ LIBS = $(LDFLAGS_libxenctrl) $(LDFLAGS_l
LIBXL_OBJS-y = osdeps.o libxl_paths.o libxl_bootloader.o
ifeq ($(LIBXL_BLKTAP),y)
LIBXL_OBJS-y += libxl_blktap2.c
+else
+LIBXL_OBJS-y += libxl_noblktap2.c
endif
LIBXL_OBJS = flexarray.o libxl.o libxl_pci.o libxl_dom.o libxl_exec.o libxl_xshelp.o libxl_device.o libxl_internal.o xenguest.o libxl_utils.o $(LIBXL_OBJS-y)
diff -r 9ea1cf03ef55 tools/libxl/libxl_noblktap2.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/libxl/libxl_noblktap2.c Wed Jul 28 13:48:07 2010 +0200
@@ -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(struct libxl_ctx *ctx)
+{
+ return 0;
+}
+
+const char *libxl_blktap_devpath(struct libxl_ctx *ctx,
+ const char *disk,
+ libxl_disk_phystype phystype)
+{
+ return NULL;
+}
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
next prev parent reply other threads:[~2010-07-28 11:50 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-20 16:31 [PATCH] libxl: blktap2 portiblity fixes Christoph Egger
2010-07-20 16:46 ` Stefano Stabellini
2010-07-21 8:32 ` Christoph Egger
2010-07-23 12:30 ` Stefano Stabellini
2010-07-23 18:05 ` Ian Jackson
2010-07-26 10:56 ` Christoph Egger
2010-07-26 14:53 ` Ian Jackson
2010-07-26 15:00 ` Ian Campbell
2010-07-26 15:12 ` Ian Jackson
2010-07-26 16:01 ` Christoph Egger
2010-07-26 16:05 ` Christoph Egger
2010-07-26 16:36 ` Ian Jackson
2010-07-27 12:07 ` Christoph Egger
2010-07-27 12:15 ` [PATCH 1/6] libxl: " Christoph Egger
2010-07-27 12:16 ` [PATCH 2/6] " Christoph Egger
2010-07-27 12:17 ` [PATCH 3/6] " Christoph Egger
2010-07-27 12:18 ` [PATCH 4/6] " Christoph Egger
2010-07-27 12:20 ` [PATCH 5/6] " Christoph Egger
2010-07-27 12:21 ` [PATCH 6/6] " Christoph Egger
2010-07-27 17:00 ` [PATCH 5/6] " Ian Jackson
2010-07-28 9:17 ` Christoph Egger
2010-07-27 16:58 ` [PATCH 4/6] " Ian Jackson
2010-07-28 11:50 ` Christoph Egger [this message]
[not found] ` <19535.3166.214153.676101@mariner.uk.xensource.com>
2010-07-28 11:42 ` [PATCH] libxl: compile fix Christoph Egger
2010-07-28 12:22 ` Ian Campbell
2010-07-28 13:03 ` Christoph Egger
2010-07-27 16:34 ` [PATCH 2/6] libxl: portiblity fixes Ian Jackson
2010-07-28 9:06 ` Christoph Egger
2010-07-28 9:21 ` Keir Fraser
2010-07-28 9:30 ` Christoph Egger
2010-07-28 11:39 ` [PATCH] libxl: move blktap specific code into libxl_blktap.c Christoph Egger
2010-07-29 15:02 ` Ian Jackson
2010-07-29 15:08 ` Stefano Stabellini
2010-07-29 15:41 ` Christoph Egger
2010-07-29 15:46 ` Ian Jackson
2010-07-29 15:48 ` Ian Jackson
2010-07-29 16:46 ` [PATCH] libxl: move blktap-specific " Christoph Egger
2010-07-29 18:02 ` Ian Jackson
2010-07-30 8:40 ` Christoph Egger
2010-07-30 8:45 ` Christoph Egger
2010-07-27 16:31 ` [PATCH 1/6] libxl: portiblity fixes Ian Jackson
2010-07-28 9:49 ` Christoph Egger
2010-07-27 12:17 ` [PATCH 0/6] " Christoph Egger
2010-07-27 16:30 ` Ian Jackson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201007281350.44601.Christoph.Egger@amd.com \
--to=christoph.egger@amd.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=Stefano.Stabellini@eu.citrix.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.