Many open source projects have moved to using SPDX identifiers to specify license information, reducing the amount of boilerplate code in every source file. This patch replaces the bulk of SPDK .c, .cpp and Makefiles with the BSD-3-Clause identifier. Almost all of these files share the exact same license text, and this patch only modifies the files that contain the most common license text. There can be slight variations because the third clause contains company names - most say "Intel Corporation", but there are instances for Nvidia, Samsung, Eideticom and even "the copyright holder". Used a bash script to automate replacement of the license text with SPDX identifier which is checked into scripts/spdx.sh. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: Iaa88ab5e92ea471691dc298cfe41ebfb5d169780 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12904 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Dong Yi <dongx.yi@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: <qun.wan@intel.com>
82 lines
1.9 KiB
C
82 lines
1.9 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include "spdk/stdinc.h"
|
|
#include "spdk/likely.h"
|
|
|
|
#include "spdk_internal/event.h"
|
|
#include "spdk/thread.h"
|
|
|
|
#include "spdk/log.h"
|
|
#include "spdk/env.h"
|
|
#include "spdk/scheduler.h"
|
|
|
|
static int
|
|
init(void)
|
|
{
|
|
return spdk_governor_set("dpdk_governor");
|
|
}
|
|
|
|
static void
|
|
deinit(void)
|
|
{
|
|
spdk_governor_set(NULL);
|
|
}
|
|
|
|
static void
|
|
balance(struct spdk_scheduler_core_info *cores, uint32_t core_count)
|
|
{
|
|
struct spdk_governor *governor;
|
|
struct spdk_scheduler_core_info *core;
|
|
struct spdk_governor_capabilities capabilities;
|
|
uint32_t i;
|
|
int rc;
|
|
|
|
governor = spdk_governor_get();
|
|
assert(governor != NULL);
|
|
|
|
/* Gather active/idle statistics */
|
|
SPDK_ENV_FOREACH_CORE(i) {
|
|
core = &cores[i];
|
|
|
|
rc = governor->get_core_capabilities(core->lcore, &capabilities);
|
|
if (rc < 0) {
|
|
SPDK_ERRLOG("failed to get capabilities for core: %u\n", core->lcore);
|
|
return;
|
|
}
|
|
|
|
if (core->current_busy_tsc < (core->current_idle_tsc / 1000)) {
|
|
rc = governor->set_core_freq_min(core->lcore);
|
|
if (rc < 0) {
|
|
SPDK_ERRLOG("setting to minimal frequency for core %u failed\n", core->lcore);
|
|
}
|
|
} else if (core->current_idle_tsc > core->current_busy_tsc) {
|
|
rc = governor->core_freq_down(core->lcore);
|
|
if (rc < 0) {
|
|
SPDK_ERRLOG("lowering frequency for core %u failed\n", core->lcore);
|
|
}
|
|
} else if (core->current_idle_tsc < (core->current_busy_tsc / 1000)) {
|
|
rc = governor->set_core_freq_max(core->lcore);
|
|
if (rc < 0) {
|
|
SPDK_ERRLOG("setting to maximal frequency for core %u failed\n", core->lcore);
|
|
}
|
|
} else {
|
|
rc = governor->core_freq_up(core->lcore);
|
|
if (rc < 0) {
|
|
SPDK_ERRLOG("increasing frequency for core %u failed\n", core->lcore);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static struct spdk_scheduler gscheduler = {
|
|
.name = "gscheduler",
|
|
.init = init,
|
|
.deinit = deinit,
|
|
.balance = balance,
|
|
};
|
|
|
|
SPDK_SCHEDULER_REGISTER(gscheduler);
|