per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices. git log --follow -C90% --format=%ad --date default <file> | tail -1 and then pull just the year from the result. Intel copyrights were not added to files where Intel either had no contribution ot the contribution lacked substance (ie license header updates, formatting changes, etc) For intel copyrights added, --follow and -C95% were used. Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: I2ef86976095b88a9bf5b1003e59f3943cd6bbe4c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15209 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
47 lines
1.9 KiB
Bash
Executable File
47 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2021 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
function scheduler_create_thread() {
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n active_pinned -m 0x1 -a 100
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n active_pinned -m 0x2 -a 100
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n active_pinned -m 0x4 -a 100
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n active_pinned -m 0x8 -a 100
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n idle_pinned -m 0x1 -a 0
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n idle_pinned -m 0x2 -a 0
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n idle_pinned -m 0x4 -a 0
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n idle_pinned -m 0x8 -a 0
|
|
|
|
$rpc --plugin scheduler_plugin scheduler_thread_create -n one_third_active -a 30
|
|
thread_id=$($rpc --plugin scheduler_plugin scheduler_thread_create -n half_active -a 0)
|
|
$rpc --plugin scheduler_plugin scheduler_thread_set_active $thread_id 50
|
|
|
|
thread_id=$($rpc --plugin scheduler_plugin scheduler_thread_create -n deleted -a 100)
|
|
$rpc --plugin scheduler_plugin scheduler_thread_delete $thread_id
|
|
}
|
|
|
|
rpc=rpc_cmd
|
|
|
|
# Use -f to enable spdk_for_each_reactor regression test for #2206.
|
|
# This results in constant event processing even on reactors without any SPDK threads.
|
|
# The utilization of reactors might differ from expected.
|
|
$testdir/scheduler -m 0xF -p 0x2 --wait-for-rpc -f &
|
|
scheduler_pid=$!
|
|
trap 'killprocess $scheduler_pid; exit 1' SIGINT SIGTERM EXIT
|
|
waitforlisten $scheduler_pid
|
|
|
|
$rpc framework_set_scheduler dynamic
|
|
$rpc framework_start_init
|
|
|
|
# basic integrity test
|
|
run_test "scheduler_create_thread" scheduler_create_thread
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
killprocess $scheduler_pid
|