summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2018-02-05 13:10:24 +0100
committerThomas Haller <thaller@redhat.com>2018-02-05 13:59:15 +0100
commit782578122c6cb23bdbee0b01eddceee1b967a673 (patch)
treeb913dd5cd09e99ae2cc7be54692e0a6d59010e18
parenta43bf33888a639671bb7b7c7d37f416f1ef8dd79 (diff)
ovs: fix compiler error for passing NMDevice pointer to NM_DEVICE_OVS_INTERFACE_GET_PRIVATE()
NM_DEVICE_OVS_INTERFACE_GET_PRIVATE() is implemented via the _NM_GET_PRIVATE() macro. This macro uses C11's _Generic() to provide additional compiler checks when casting from an incompatible pointer type. As such, NMDevice *device = ...; NMDeviceOvsInterfacePrivate *priv; priv = NM_DEVICE_OVS_INTERFACE_GET_PRIVATE (device); causes a compilation error: error: ‘_Generic’ selector of type ‘NMDevice * {aka struct _NMDevice *}’ is not compatible with any association One workaround would be to cast the pointer first: priv = NM_DEVICE_OVS_INTERFACE_GET_PRIVATE ((NMDeviceOvsInterface *) device); A better fix is to mark NMDevice as a compatible pointer in _NM_GET_PRIVATE(), which this patch does. Previously, this went unnoticed, because due to bug "a43bf3388 build: fix configure check for CC support of _Generic() and __auto_type", we failed to detect support for _Generic() when compiling with -Werror. That essentially disables this check, and NM_DEVICE_OVS_INTERFACE_GET_PRIVATE() would do a direct cast. A workaround for this build failure might be to build with -Werror, which accidentally results in not using _Generic(). https://bugzilla.gnome.org/show_bug.cgi?id=793183 Fixes: 8ad310f8e3cb0157cfa5fa8ff10f313555cf8e3c
-rw-r--r--src/devices/ovs/nm-device-ovs-interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/ovs/nm-device-ovs-interface.c b/src/devices/ovs/nm-device-ovs-interface.c
index e746a3fd27..ce32c2dd7d 100644
--- a/src/devices/ovs/nm-device-ovs-interface.c
+++ b/src/devices/ovs/nm-device-ovs-interface.c
@@ -50,7 +50,7 @@ struct _NMDeviceOvsInterfaceClass {
G_DEFINE_TYPE (NMDeviceOvsInterface, nm_device_ovs_interface, NM_TYPE_DEVICE)
-#define NM_DEVICE_OVS_INTERFACE_GET_PRIVATE(self) _NM_GET_PRIVATE (self, NMDeviceOvsInterface, NM_IS_DEVICE_OVS_INTERFACE)
+#define NM_DEVICE_OVS_INTERFACE_GET_PRIVATE(self) _NM_GET_PRIVATE (self, NMDeviceOvsInterface, NM_IS_DEVICE_OVS_INTERFACE, NMDevice)
/*****************************************************************************/