From 60cc501a665ad7fcfedcdba37557860458dca9a9 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sun, 20 Mar 2016 10:59:37 +0100 Subject: [PATCH] device: optimize hashtable usage for shared_ips No point ins storing "TRUE" as value in the @shared_ips hash table. That forces glib to allocate a separate storage for the value. Just use g_hash_table_add() instead. --- src/devices/nm-device.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c index f4e2ce172b..f18b9c147f 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -4672,10 +4672,7 @@ reserve_shared_ip (NMDevice *self, NMSettingIPConfig *s_ip4, NMPlatformIP4Addres } } nm_platform_ip4_address_set_addr (address, start + count, 24); - - g_hash_table_insert (shared_ips, - GUINT_TO_POINTER (address->address), - GUINT_TO_POINTER (TRUE)); + g_hash_table_add (shared_ips, GUINT_TO_POINTER (address->address)); } return TRUE;