dns: track NMDnsConfigData as keys of a dictionary

There is unnecessary overhead of tracking a separate
key and value in a GHashTable.

Use g_hash_table_add().
This commit is contained in:
Thomas Haller 2020-11-19 15:35:48 +01:00
parent 190eeb5e9f
commit d10d96a45c
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728
2 changed files with 9 additions and 6 deletions

View file

@ -1716,7 +1716,7 @@ nm_dns_manager_set_ip_config(NMDnsManager * self,
priv = NM_DNS_MANAGER_GET_PRIVATE(self);
data = g_hash_table_lookup(priv->configs, GINT_TO_POINTER(ifindex));
data = g_hash_table_lookup(priv->configs, &ifindex);
if (!data)
ip_data = NULL;
else
@ -1732,7 +1732,7 @@ nm_dns_manager_set_ip_config(NMDnsManager * self,
/* deleting a config doesn't invalidate the configs' sort order. */
_ip_config_data_free(ip_data);
if (c_list_is_empty(&data->data_lst_head))
g_hash_table_remove(priv->configs, GINT_TO_POINTER(ifindex));
g_hash_table_remove(priv->configs, &ifindex);
goto changed;
}
@ -1749,7 +1749,7 @@ nm_dns_manager_set_ip_config(NMDnsManager * self,
.data_lst_head = C_LIST_INIT(data->data_lst_head),
};
_ASSERT_config_data(data);
g_hash_table_insert(priv->configs, GINT_TO_POINTER(ifindex), data);
g_hash_table_add(priv->configs, data);
}
if (!ip_data)
@ -2402,8 +2402,11 @@ nm_dns_manager_init(NMDnsManager *self)
priv->config = g_object_ref(nm_config_get());
priv->configs =
g_hash_table_new_full(nm_direct_hash, NULL, NULL, (GDestroyNotify) _config_data_free);
G_STATIC_ASSERT_EXPR(G_STRUCT_OFFSET(NMDnsConfigData, ifindex) == 0);
priv->configs = g_hash_table_new_full(nm_pint_hash,
nm_pint_equals,
(GDestroyNotify) _config_data_free,
NULL);
/* Set the initial hash */
compute_hash(self, NULL, NM_DNS_MANAGER_GET_PRIVATE(self)->hash);

View file

@ -41,9 +41,9 @@ typedef struct {
} NMDnsIPConfigData;
typedef struct _NMDnsConfigData {
int ifindex;
struct _NMDnsManager *self;
CList data_lst_head;
int ifindex;
} NMDnsConfigData;
#define NM_TYPE_DNS_MANAGER (nm_dns_manager_get_type())