2019-06-25 11:12:58 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
#include <rte_common.h>
|
|
|
|
|
2019-06-25 11:12:58 +00:00
|
|
|
#include "oob_monitor.h"
|
|
|
|
|
|
|
|
void branch_monitor_exit(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
__rte_unused static float
|
|
|
|
apply_policy(__rte_unused int core)
|
2019-06-25 11:12:58 +00:00
|
|
|
{
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2021-02-05 08:48:47 +00:00
|
|
|
add_core_to_monitor(__rte_unused int core)
|
2019-06-25 11:12:58 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2021-02-05 08:48:47 +00:00
|
|
|
remove_core_from_monitor(__rte_unused int core)
|
2019-06-25 11:12:58 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
branch_monitor_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
run_branch_monitor(void)
|
|
|
|
{
|
|
|
|
}
|