numam-dpdk/lib/eal/unix/rte_thread.c
Tyler Retzlaff ca04c78b62 eal: get/set thread priority per thread identifier
Add functions for setting and getting the priority of a thread.
Priorities on multiple platforms are similarly determined by a priority
value and a priority class/policy.

Currently in DPDK most threads operate at the OS-default priority level
but there are cases when increasing the priority is useful. For
example, high performance applications may require elevated priority
levels.

For these reasons, EAL will expose two priority levels which are named
suggestively "normal" and "realtime_critical" and are computed as
follows:

  On Linux, the following mapping is created:
    RTE_THREAD_PRIORITY_NORMAL corresponds to
      * policy SCHED_OTHER
      * priority value:   (sched_get_priority_min(SCHED_OTHER) +
			   sched_get_priority_max(SCHED_OTHER))/2;
    RTE_THREAD_PRIORITY_REALTIME_CRITICAL corresponds to
      * policy SCHED_RR
      * priority value: sched_get_priority_max(SCHED_RR);

  On Windows, the following mapping is created:
    RTE_THREAD_PRIORITY_NORMAL corresponds to
      * class NORMAL_PRIORITY_CLASS
      * priority THREAD_PRIORITY_NORMAL
    RTE_THREAD_PRIORITY_REALTIME_CRITICAL corresponds to
      * class REALTIME_PRIORITY_CLASS (when running with privileges)
      * class HIGH_PRIORITY_CLASS (when running without privileges)
      * priority THREAD_PRIORITY_TIME_CRITICAL

Note that on Linux the resulting priority value will be 0, in
accordance to the documentation that mention the value should be 0 for
SCHED_OTHER policy.

Signed-off-by: Narcisa Vasile <navasile@linux.microsoft.com>
Signed-off-by: Tyler Retzlaff <roretzla@linux.microsoft.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
2022-06-07 13:33:14 +02:00

223 lines
4.5 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright 2021 Mellanox Technologies, Ltd
* Copyright (C) 2022 Microsoft Corporation
*/
#include <errno.h>
#include <pthread.h>
#include <stdlib.h>
#include <string.h>
#include <rte_errno.h>
#include <rte_log.h>
#include <rte_thread.h>
struct eal_tls_key {
pthread_key_t thread_index;
};
static int
thread_map_priority_to_os_value(enum rte_thread_priority eal_pri, int *os_pri,
int *pol)
{
/* Clear the output parameters. */
*os_pri = sched_get_priority_min(SCHED_OTHER) - 1;
*pol = -1;
switch (eal_pri) {
case RTE_THREAD_PRIORITY_NORMAL:
*pol = SCHED_OTHER;
/*
* Choose the middle of the range to represent the priority
* 'normal'.
* On Linux, this should be 0, since both
* sched_get_priority_min/_max return 0 for SCHED_OTHER.
*/
*os_pri = (sched_get_priority_min(SCHED_OTHER) +
sched_get_priority_max(SCHED_OTHER)) / 2;
break;
case RTE_THREAD_PRIORITY_REALTIME_CRITICAL:
*pol = SCHED_RR;
*os_pri = sched_get_priority_max(SCHED_RR);
break;
default:
RTE_LOG(DEBUG, EAL, "The requested priority value is invalid.\n");
return EINVAL;
}
return 0;
}
static int
thread_map_os_priority_to_eal_priority(int policy, int os_pri,
enum rte_thread_priority *eal_pri)
{
switch (policy) {
case SCHED_OTHER:
if (os_pri == (sched_get_priority_min(SCHED_OTHER) +
sched_get_priority_max(SCHED_OTHER)) / 2) {
*eal_pri = RTE_THREAD_PRIORITY_NORMAL;
return 0;
}
break;
case SCHED_RR:
if (os_pri == sched_get_priority_max(SCHED_RR)) {
*eal_pri = RTE_THREAD_PRIORITY_REALTIME_CRITICAL;
return 0;
}
break;
default:
RTE_LOG(DEBUG, EAL, "The OS priority value does not map to an EAL-defined priority.\n");
return EINVAL;
}
return 0;
}
rte_thread_t
rte_thread_self(void)
{
RTE_BUILD_BUG_ON(sizeof(pthread_t) > sizeof(uintptr_t));
rte_thread_t thread_id;
thread_id.opaque_id = (uintptr_t)pthread_self();
return thread_id;
}
int
rte_thread_get_priority(rte_thread_t thread_id,
enum rte_thread_priority *priority)
{
struct sched_param param;
int policy;
int ret;
ret = pthread_getschedparam((pthread_t)thread_id.opaque_id, &policy,
&param);
if (ret != 0) {
RTE_LOG(DEBUG, EAL, "pthread_getschedparam failed\n");
goto cleanup;
}
return thread_map_os_priority_to_eal_priority(policy,
param.sched_priority, priority);
cleanup:
return ret;
}
int
rte_thread_set_priority(rte_thread_t thread_id,
enum rte_thread_priority priority)
{
struct sched_param param;
int policy;
int ret;
/* Realtime priority can cause crashes on non-Windows platforms. */
if (priority == RTE_THREAD_PRIORITY_REALTIME_CRITICAL)
return ENOTSUP;
ret = thread_map_priority_to_os_value(priority, &param.sched_priority,
&policy);
if (ret != 0)
return ret;
return pthread_setschedparam((pthread_t)thread_id.opaque_id, policy,
&param);
}
int
rte_thread_key_create(rte_thread_key *key, void (*destructor)(void *))
{
int err;
*key = malloc(sizeof(**key));
if ((*key) == NULL) {
RTE_LOG(DEBUG, EAL, "Cannot allocate TLS key.\n");
rte_errno = ENOMEM;
return -1;
}
err = pthread_key_create(&((*key)->thread_index), destructor);
if (err) {
RTE_LOG(DEBUG, EAL, "pthread_key_create failed: %s\n",
strerror(err));
free(*key);
rte_errno = ENOEXEC;
return -1;
}
return 0;
}
int
rte_thread_key_delete(rte_thread_key key)
{
int err;
if (!key) {
RTE_LOG(DEBUG, EAL, "Invalid TLS key.\n");
rte_errno = EINVAL;
return -1;
}
err = pthread_key_delete(key->thread_index);
if (err) {
RTE_LOG(DEBUG, EAL, "pthread_key_delete failed: %s\n",
strerror(err));
free(key);
rte_errno = ENOEXEC;
return -1;
}
free(key);
return 0;
}
int
rte_thread_value_set(rte_thread_key key, const void *value)
{
int err;
if (!key) {
RTE_LOG(DEBUG, EAL, "Invalid TLS key.\n");
rte_errno = EINVAL;
return -1;
}
err = pthread_setspecific(key->thread_index, value);
if (err) {
RTE_LOG(DEBUG, EAL, "pthread_setspecific failed: %s\n",
strerror(err));
rte_errno = ENOEXEC;
return -1;
}
return 0;
}
void *
rte_thread_value_get(rte_thread_key key)
{
if (!key) {
RTE_LOG(DEBUG, EAL, "Invalid TLS key.\n");
rte_errno = EINVAL;
return NULL;
}
return pthread_getspecific(key->thread_index);
}
int
rte_thread_set_affinity_by_id(rte_thread_t thread_id,
const rte_cpuset_t *cpuset)
{
return pthread_setaffinity_np((pthread_t)thread_id.opaque_id,
sizeof(*cpuset), cpuset);
}
int
rte_thread_get_affinity_by_id(rte_thread_t thread_id,
rte_cpuset_t *cpuset)
{
return pthread_getaffinity_np((pthread_t)thread_id.opaque_id,
sizeof(*cpuset), cpuset);
}