mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-08 04:50:17 +01:00
G_TYPE_CHECK_INSTANCE_CAST() can trigger a "-Wcast-align":
src/core/devices/nm-device-macvlan.c: In function 'parent_changed_notify':
/usr/include/glib-2.0/gobject/gtype.h:2421:42: error: cast increases required alignment of target type [-Werror=cast-align]
2421 | # define _G_TYPE_CIC(ip, gt, ct) ((ct*) ip)
| ^
/usr/include/glib-2.0/gobject/gtype.h:501:66: note: in expansion of macro '_G_TYPE_CIC'
501 | #define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type) (_G_TYPE_CIC ((instance), (g_type), c_type))
| ^~~~~~~~~~~
src/core/devices/nm-device-macvlan.h:13:6: note: in expansion of macro 'G_TYPE_CHECK_INSTANCE_CAST'
13 | (G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_DEVICE_MACVLAN, NMDeviceMacvlan))
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
Avoid that by using _NM_G_TYPE_CHECK_INSTANCE_CAST().
This can only be done for our internal usages. The public headers
of libnm are not changed.
60 lines
2.2 KiB
C
60 lines
2.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2007 - 2008 Novell, Inc.
|
|
* Copyright (C) 2007 - 2013 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NM_RFKILL_MANAGER_H__
|
|
#define __NM_RFKILL_MANAGER_H__
|
|
|
|
typedef enum {
|
|
NM_RFKILL_STATE_UNAVAILABLE = 0,
|
|
NM_RFKILL_STATE_UNBLOCKED = 1,
|
|
NM_RFKILL_STATE_SOFT_BLOCKED = 2,
|
|
NM_RFKILL_STATE_HARD_BLOCKED = 3,
|
|
/* NM_RFKILL_STATE_HARD_BLOCKED_OS_NOT_OWNER means that the CSME firmware
|
|
* is currently controlling the device. This feature is implmented on Intel
|
|
* wifi devices only.
|
|
* The NetworkManager can get ownership on the device, but it requires to
|
|
* first ask ownership through the iwlmei kernel module.
|
|
*/
|
|
NM_RFKILL_STATE_HARD_BLOCKED_OS_NOT_OWNER = 4,
|
|
} NMRfkillState;
|
|
|
|
typedef enum {
|
|
NM_RFKILL_TYPE_WLAN = 0,
|
|
NM_RFKILL_TYPE_WWAN = 1,
|
|
|
|
/* UNKNOWN and MAX should always be 1 more than
|
|
* the last rfkill type since NM_RFKILL_TYPE_MAX is
|
|
* used as an array size.
|
|
*/
|
|
NM_RFKILL_TYPE_UNKNOWN, /* KEEP LAST */
|
|
NM_RFKILL_TYPE_MAX = NM_RFKILL_TYPE_UNKNOWN,
|
|
} NMRfkillType;
|
|
|
|
const char *nm_rfkill_type_to_string(NMRfkillType rtype);
|
|
|
|
#define NM_TYPE_RFKILL_MANAGER (nm_rfkill_manager_get_type())
|
|
#define NM_RFKILL_MANAGER(obj) \
|
|
(_NM_G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_RFKILL_MANAGER, NMRfkillManager))
|
|
#define NM_RFKILL_MANAGER_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), NM_TYPE_RFKILL_MANAGER, NMRfkillManagerClass))
|
|
#define NM_IS_RFKILL_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NM_TYPE_RFKILL_MANAGER))
|
|
#define NM_IS_RFKILL_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), NM_TYPE_RFKILL_MANAGER))
|
|
#define NM_RFKILL_MANAGER_GET_CLASS(obj) \
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj), NM_TYPE_RFKILL_MANAGER, NMRfkillManagerClass))
|
|
|
|
#define NM_RFKILL_MANAGER_SIGNAL_RFKILL_CHANGED "rfkill-changed"
|
|
|
|
typedef struct _NMRfkillManagerClass NMRfkillManagerClass;
|
|
|
|
GType nm_rfkill_manager_get_type(void);
|
|
|
|
NMRfkillManager *nm_rfkill_manager_new(void);
|
|
|
|
NMRfkillState nm_rfkill_manager_get_rfkill_state(NMRfkillManager *manager, NMRfkillType rtype);
|
|
|
|
NMRadioFlags nm_rfkill_type_to_radio_available_flag(NMRfkillType type);
|
|
|
|
#endif /* __NM_RFKILL_MANAGER_H__ */
|