lib/event: cleanup and document governor API

This patch cleans up the header file, structures and
parameters of governor API. While documenting the
functionality.

- made governor name const
- renamed _spdk_governor_list_add() to _spdk_governor_register()

This is preparation to making this API public.

Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Change-Id: Ie394109c839dead0e7ade946f95be8105b00e674
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/8843
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Konrad Sztyber <konrad.sztyber@gmail.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Tomasz Zawadzki 2021-07-20 04:34:28 -04:00
parent a86c94b3d1
commit ece9471659
3 changed files with 82 additions and 22 deletions

View File

@ -164,39 +164,87 @@ int spdk_reactor_set_interrupt_mode(uint32_t lcore, bool new_in_interrupt,
struct spdk_thread *_spdk_get_app_thread(void); struct spdk_thread *_spdk_get_app_thread(void);
struct spdk_governor_capabilities { struct spdk_governor_capabilities {
bool priority; bool priority; /* Core with higher base frequency */
}; };
/** Cores governor */ /**
* Cores governor
* Implements core frequency control for schedulers. Functions from this structure
* are invoked from scheduling reactor.
*/
struct spdk_governor { struct spdk_governor {
char *name; const char *name;
/* return - current frequency on success, 0 on failure */ /**
* Get current frequency of a given core.
*
* \param lcore_id Core number.
*
* \return Currently set core frequency.
*/
uint32_t (*get_core_curr_freq)(uint32_t lcore_id); uint32_t (*get_core_curr_freq)(uint32_t lcore_id);
/**
* Increase core frequency to next available one.
*
* \param lcore_id Core number.
*
* \return 1 on success, 0 already at max frequency, negative on error.
*/
int (*core_freq_up)(uint32_t lcore_id); int (*core_freq_up)(uint32_t lcore_id);
/**
* Decrease core frequency to next available one.
*
* \param lcore_id Core number.
*
* \return 1 on success, 0 already at min frequency, negative on error.
*/
int (*core_freq_down)(uint32_t lcore_id); int (*core_freq_down)(uint32_t lcore_id);
/**
* Set core frequency to maximum available.
*
* \param lcore_id Core number.
*
* \return 1 on success, 0 already at max frequency, negative on error.
*/
int (*set_core_freq_max)(uint32_t lcore_id); int (*set_core_freq_max)(uint32_t lcore_id);
/**
* Set core frequency to minimum available.
*
* \param lcore_id Core number.
*
* \return 1 on success, 0 already at min frequency, negative on error.
*/
int (*set_core_freq_min)(uint32_t lcore_id); int (*set_core_freq_min)(uint32_t lcore_id);
/**
* Get capabilities of a given core.
*
* \param lcore_id Core number.
* \param capabilities Structure to fill with capabilities data.
*
* \return 0 on success, negative on error.
*/
int (*get_core_capabilities)(uint32_t lcore_id, struct spdk_governor_capabilities *capabilities); int (*get_core_capabilities)(uint32_t lcore_id, struct spdk_governor_capabilities *capabilities);
/**
* Initialize a governor.
*
* \return 0 on success, non-zero on error.
*/
int (*init)(void); int (*init)(void);
/**
* Deinitialize a governor.
*/
void (*deinit)(void); void (*deinit)(void);
TAILQ_ENTRY(spdk_governor) link; TAILQ_ENTRY(spdk_governor) link;
}; };
/**
* Add the given governor to the list of registered governors.
* This function should be invoked by referencing the macro
* SPDK_GOVERNOR_REGISTER in the governor c file.
*
* \param governor Governor to be added.
*
* \return 0 on success or non-zero on failure.
*/
void _spdk_governor_list_add(struct spdk_governor *governor);
/** /**
* Set the current governor. * Set the current governor.
* *
@ -208,21 +256,33 @@ void _spdk_governor_list_add(struct spdk_governor *governor);
* *
* \return 0 on success or non-zero on failure. * \return 0 on success or non-zero on failure.
*/ */
int _spdk_governor_set(char *name); int _spdk_governor_set(const char *name);
/** /**
* Get currently set governor. * Get currently set governor.
* *
* \return a pointer to spdk governor or NULL if none is set.
*/ */
struct spdk_governor *_spdk_governor_get(void); struct spdk_governor *_spdk_governor_get(void);
/** /**
* Macro used to register new cores governor. * Add the given governor to the list of registered governors.
* This function should be invoked by referencing the macro
* SPDK_GOVERNOR_REGISTER in the governor c file.
*
* \param governor Governor to be added.
*
* \return 0 on success or non-zero on failure.
*/
void _spdk_governor_register(struct spdk_governor *governor);
/**
* Macro used to register new governors.
*/ */
#define SPDK_GOVERNOR_REGISTER(governor) \ #define SPDK_GOVERNOR_REGISTER(governor) \
static void __attribute__((constructor)) _spdk_governor_register_ ## governor(void) \ static void __attribute__((constructor)) _spdk_governor_register_ ## governor(void) \
{ \ { \
_spdk_governor_list_add(&governor); \ _spdk_governor_register(&governor); \
} \ } \
/** /**

View File

@ -1466,7 +1466,7 @@ reactor_interrupt_fini(struct spdk_reactor *reactor)
} }
static struct spdk_governor * static struct spdk_governor *
_governor_find(char *name) _governor_find(const char *name)
{ {
struct spdk_governor *governor, *tmp; struct spdk_governor *governor, *tmp;
@ -1480,7 +1480,7 @@ _governor_find(char *name)
} }
int int
_spdk_governor_set(char *name) _spdk_governor_set(const char *name)
{ {
struct spdk_governor *governor; struct spdk_governor *governor;
int rc = 0; int rc = 0;
@ -1521,7 +1521,7 @@ _spdk_governor_get(void)
} }
void void
_spdk_governor_list_add(struct spdk_governor *governor) _spdk_governor_register(struct spdk_governor *governor)
{ {
if (_governor_find(governor->name)) { if (_governor_find(governor->name)) {
SPDK_ERRLOG("governor named '%s' already registered.\n", governor->name); SPDK_ERRLOG("governor named '%s' already registered.\n", governor->name);

View File

@ -794,7 +794,7 @@ test_governor(void)
MOCK_SET(spdk_env_get_current_core, 0); MOCK_SET(spdk_env_get_current_core, 0);
g_curr_freq = last_freq; g_curr_freq = last_freq;
_spdk_governor_list_add(&governor); _spdk_governor_register(&governor);
allocate_cores(2); allocate_cores(2);