From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roger Pau Monne Subject: [PATCH 1/9] xenstore: don't print an error when gntdev cannot be opened Date: Wed, 11 Jul 2012 11:23:44 +0100 Message-ID: <1342002232-75531-2-git-send-email-roger.pau@citrix.com> References: <1342002232-75531-1-git-send-email-roger.pau@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1342002232-75531-1-git-send-email-roger.pau@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: Roger Pau Monne List-Id: xen-devel@lists.xenproject.org NetBSD doesn't have a gntdev, but we should not print an error when falling back to the previous implementation. Signed-off-by: Roger Pau Monne --- tools/libxc/xc_private.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c index 3ceed3e..3e03a91 100644 --- a/tools/libxc/xc_private.c +++ b/tools/libxc/xc_private.c @@ -174,7 +174,7 @@ static struct xc_interface_core *xc_interface_open_common(xentoollog_logger *log xch->ops = xch->osdep.init(xch, type); if ( xch->ops == NULL ) { - ERROR("OSDEP: interface %d (%s) not supported on this platform", + DPRINTF("OSDEP: interface %d (%s) not supported on this platform", type, xc_osdep_type_name(type)); goto err_put_iface; } -- 1.7.7.5 (Apple Git-26)