1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Affinity-map function.
*
* Copyright 2022 Hiroki Shirokura, LINE Corporation
* Copyright 2022 Masakazu Asama
* Copyright 2022 6WIND S.A.
*/
#ifndef _ZEBRA_AFFINITYMAP_H
#define _ZEBRA_AFFINITYMAP_H
#include "typesafe.h"
#include "prefix.h"
#include "memory.h"
#include "qobj.h"
#include "vty.h"
#include "lib/plist.h"
#include "lib/plist_int.h"
#ifdef __cplusplus
extern "C" {
#endif
#define AFFINITY_NAME_SIZE 32
struct affinity_map {
char name[AFFINITY_NAME_SIZE];
uint16_t bit_position;
QOBJ_FIELDS;
};
DECLARE_QOBJ_TYPE(affinity_map);
struct affinity_maps {
struct list *maps;
void (*update_hook)(const char *affmap_name, uint16_t old_pos,
uint16_t new_pos);
QOBJ_FIELDS;
};
DECLARE_QOBJ_TYPE(affinity_maps);
extern const struct frr_yang_module_info frr_affinity_map_info;
extern const struct frr_yang_module_info frr_affinity_map_cli_info;
void affinity_map_set(const char *name, int pos);
void affinity_map_unset(const char *name);
struct affinity_map *affinity_map_get(const char *name);
void affinity_map_update_hook(const char *affmap_name, uint16_t new_pos);
void affinity_map_set_update_hook(void (*func)(const char *affmap_name,
uint16_t old_pos,
uint16_t new_pos));
void affinity_map_init(void);
void affinity_map_terminate(void);
#ifdef __cplusplus
}
#endif
#endif /* _ZEBRA_AFFINITYMAP_H */
|