From nobody Sun Feb 8 05:54:51 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1531747487555717.3012530525505; Mon, 16 Jul 2018 06:24:47 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 18415308A968; Mon, 16 Jul 2018 13:24:46 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D28AC308BDAC; Mon, 16 Jul 2018 13:24:45 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 77B864A469; Mon, 16 Jul 2018 13:24:45 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w6GDOZCN028029 for ; Mon, 16 Jul 2018 09:24:36 -0400 Received: by smtp.corp.redhat.com (Postfix) id DBE602026D76; Mon, 16 Jul 2018 13:24:35 +0000 (UTC) Received: from t460.redhat.com (unknown [10.33.36.75]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1690E2027047; Mon, 16 Jul 2018 13:24:34 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Mon, 16 Jul 2018 14:23:55 +0100 Message-Id: <20180716132423.10354-10-berrange@redhat.com> In-Reply-To: <20180716132423.10354-1-berrange@redhat.com> References: <20180716132423.10354-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 X-loop: libvir-list@redhat.com Subject: [libvirt] [go PATCH 09/37] node device: move wrapper functions out of compat header X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.24 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.41]); Mon, 16 Jul 2018 13:24:46 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Signed-off-by: Daniel P. Berrang=C3=A9 --- node_device_compat.go | 46 ----------------------------------- node_device_compat.h | 3 --- node_device_events_wrapper.go | 10 ++++++++ node_device_events_wrapper.h | 9 ++++--- 4 files changed, 16 insertions(+), 52 deletions(-) delete mode 100644 node_device_compat.go diff --git a/node_device_compat.go b/node_device_compat.go deleted file mode 100644 index f2d32d9..0000000 --- a/node_device_compat.go +++ /dev/null @@ -1,46 +0,0 @@ -/* - * This file is part of the libvirt-go project - * - * Permission is hereby granted, free of charge, to any person obtaining a= copy - * of this software and associated documentation files (the "Software"), t= o deal - * in the Software without restriction, including without limitation the r= ights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or se= ll - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included= in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS= OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL= THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING= FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS = IN - * THE SOFTWARE. - * - * Copyright (c) 2013 Alex Zorin - * Copyright (C) 2016 Red Hat, Inc. - * - */ - -package libvirt - -/* -#cgo pkg-config: libvirt -#include -#include -#include "node_device_compat.h" - -int virConnectNodeDeviceEventDeregisterAnyWrapper(virConnectPtr conn, - int callbackID) -{ -#if LIBVIR_VERSION_NUMBER < 2002000 - assert(0); // Caller should have checked version -#else - return virConnectNodeDeviceEventDeregisterAny(conn, callbackID); -#endif -} - -*/ -import "C" diff --git a/node_device_compat.h b/node_device_compat.h index e214bd6..3202039 100644 --- a/node_device_compat.h +++ b/node_device_compat.h @@ -51,8 +51,5 @@ typedef void (*virConnectNodeDeviceEventGenericCallback)(= virConnectPtr conn, void *opaque); #endif =20 -int virConnectNodeDeviceEventDeregisterAnyWrapper(virConnectPtr conn, - int callbackID); - =20 #endif /* LIBVIRT_GO_NODE_DEVICE_COMPAT_H__ */ diff --git a/node_device_events_wrapper.go b/node_device_events_wrapper.go index ff7b6e4..20441f4 100644 --- a/node_device_events_wrapper.go +++ b/node_device_events_wrapper.go @@ -60,5 +60,15 @@ int virConnectNodeDeviceEventRegisterAnyWrapper(virConne= ctPtr c, virNodeDeviceP #endif } =20 +int virConnectNodeDeviceEventDeregisterAnyWrapper(virConnectPtr conn, + int callbackID) +{ +#if LIBVIR_VERSION_NUMBER < 2002000 + assert(0); // Caller should have checked version +#else + return virConnectNodeDeviceEventDeregisterAny(conn, callbackID); +#endif +} + */ import "C" diff --git a/node_device_events_wrapper.h b/node_device_events_wrapper.h index ae76b3e..a9576e7 100644 --- a/node_device_events_wrapper.h +++ b/node_device_events_wrapper.h @@ -28,13 +28,16 @@ #define LIBVIRT_GO_NODE_DEVICE_EVENTS_WRAPPER_H__ =20 void nodeDeviceEventLifecycleCallbackHelper(virConnectPtr c, virNodeDevice= Ptr d, - int event, int detail, void* data); + int event, int detail, void* data= ); =20 void nodeDeviceEventGenericCallbackHelper(virConnectPtr c, virNodeDevicePt= r d, void* data); =20 int virConnectNodeDeviceEventRegisterAnyWrapper(virConnectPtr c, virNodeD= evicePtr d, - int eventID, virConnectNodeDeviceEventGenericCallback cb, - long goCallbackId); + int eventID, virConnectNodeDev= iceEventGenericCallback cb, + long goCallbackId); + +int virConnectNodeDeviceEventDeregisterAnyWrapper(virConnectPtr conn, + int callbackID); =20 =20 #endif /* LIBVIRT_GO_NODE_DEVICE_EVENTS_WRAPPER_H__ */ --=20 2.17.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list