From ee41a3b2556190b4fcebc9db8a2bcced95ecb968 Mon Sep 17 00:00:00 2001
From: Colin Ian King <colin.king@canonical.com>
Date: Mon, 31 Oct 2016 14:04:32 -0600
Subject: [PATCH 14/16] Make countval_sum a static function
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

This function is only referenced in node.c, so make it static

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 common/os/node.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/os/node.c b/common/os/node.c
index 8327fc1..09d1910 100644
--- a/common/os/node.c
+++ b/common/os/node.c
@@ -415,7 +415,7 @@ node_cpu_traverse(pfn_perf_cpu_op_t func, void *arg, boolean_t err_ret,
 	return (0);
 }
 
-uint64_t
+static uint64_t
 countval_sum(count_value_t *countval_arr, int cpuid_max, int nid,
 	count_id_t count_id)
 {
-- 
2.10.2

