From 4115b00b6e2fcfd2f8d9995f0ad4f471c875b020 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 7 Jun 2017 19:08:59 +0200 Subject: [PATCH] interrupts: Rename __bitmap_to_processor_id() which returns multiple values Signed-off-by: Michael Tremer --- src/functions/functions.interrupts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions/functions.interrupts b/src/functions/functions.interrupts index e050c6a6..4e089d35 100644 --- a/src/functions/functions.interrupts +++ b/src/functions/functions.interrupts @@ -77,10 +77,10 @@ interrupt_get_smp_affinity() { assert [ -r "${path}" ] # Convert bitmap to list of processors - __bitmap_to_processor_id $(<${path}) + __bitmap_to_processor_ids $(<${path}) } -__bitmap_to_processor_id() { +__bitmap_to_processor_ids() { local bitmap=${1} # This function shifts the bit map to the right -- 2.47.3