From 6db633bde1dc5f89f7c8b434dc95dc225672b277 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Mon, 19 Apr 2021 21:44:21 +0200 Subject: vppinfra: momve clib_sysfs_list_to_bitmap to sysfs.c Type: refactor Change-Id: Ia5a7ebd5c8492326f5bf2f1264f1c5ef38ccb4dc Signed-off-by: Damjan Marion --- src/vlib/threads.c | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'src/vlib') diff --git a/src/vlib/threads.c b/src/vlib/threads.c index 278838798a9..f3a66437478 100644 --- a/src/vlib/threads.c +++ b/src/vlib/threads.c @@ -166,33 +166,6 @@ sort_registrations_by_no_clone (void *a0, void *a1) - ((i32) ((*tr1)->no_data_structure_clone))); } -static uword * -clib_sysfs_list_to_bitmap (char *filename) -{ - FILE *fp; - uword *r = 0; - - fp = fopen (filename, "r"); - - if (fp != NULL) - { - u8 *buffer = 0; - vec_validate (buffer, 256 - 1); - if (fgets ((char *) buffer, 256, fp)) - { - unformat_input_t in; - unformat_init_string (&in, (char *) buffer, - strlen ((char *) buffer)); - if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1) - clib_warning ("unformat_bitmap_list failed"); - unformat_free (&in); - } - vec_free (buffer); - fclose (fp); - } - return r; -} - /* Called early in the init sequence */ -- cgit 1.2.3-korg