From 34b9442727edcf9f05e889444a15bc0624f32d5d Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Mon, 26 Mar 2012 11:39:18 -0400 Subject: [PATCH] irqbalance: Fix stupid mistake in free_numa_node In cleaning up a previous commit to this function, I stupidly forgot to remove the offending broken code. Do that now Signed-off-by: Neil Horman --- numa.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/numa.c b/numa.c index 5bd12c2..27082e9 100644 --- a/numa.c +++ b/numa.c @@ -106,9 +106,6 @@ void build_numa_node_list(void) static void free_numa_node(gpointer data) { struct topo_obj *obj = data; - if (data == &unspecified_node) - return; - g_list_free(obj->children); g_list_free(obj->interrupts);