在Ubuntu 16.04中是否正式支持SCHED_Deadline? [英] Is SCHED_DEADLINE officially supported in Ubuntu 16.04?

查看:0
本文介绍了在Ubuntu 16.04中是否正式支持SCHED_Deadline?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

目前我运行的是Ubuntu 16.04,Linux内核版本是4.16。我编写了一个伪程序,将其调度程序更改为SCHED_Deadline。但当我试图编译它时,它找不到sched_Deadline所需的结构和宏的定义。大部分代码片段摘自here(第24页)。测试程序如下:

#define _GNU_SOURCE
#include <pthread.h>
#include <stdlib.h> 
#include <stdio.h> 
#include <string.h> 
#include <sched.h> 


int main(int argc, char* argv[]) {

    struct sched_attr attr;
    attr.size = sizeof(attr);
    attr.sched_policy = SCHED_DEADLINE;
    attr.sched_runtime = 30000000;
    attr.sched_period = 100000000;
    attr.sched_deadline = attr.sched_period;
    if (sched_setattr(gettid(), &attr, 0))
        perror("sched_setattr()");

    return 0;
}

以下是编译的输出:

sched_deadline.c: In function ‘main’:
sched_deadline.c:11:20: error: storage size of ‘attr’ isn’t known
  struct sched_attr attr;
                    ^
sched_deadline.c:12:21: error: invalid application of ‘sizeof’ to incomplete type ‘struct attr’
  attr.size = sizeof(struct attr);
                     ^
sched_deadline.c:13:22: error: ‘SCHED_DEADLINE’ undeclared (first use in this function)
  attr.sched_policy = SCHED_DEADLINE;

我的GCC版:

gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.9)
但是,official website中发布的样例代码对我有效,但样例代码手动定义程序中所有需要的宏和系统调用。我的目标是在不添加那些定义的情况下编译应用程序,这些定义应该已经包含在最新的内核版本中。我看到很多地方说,在Linux 3.14.10之后,正式支持sched_Deadline,升级内核会自动解决这个问题。

我尝试过的内容:

  • 重新编译4.16内核。以前我认为我需要在配置文件中打开一个开关,但我找不到它。
  • 查看/usr/include/linux/sched.h。显然,宏是在这个头文件中定义的,但不知何故,我的编译器找不到它。

我也查看了社区中的其他帖子,但所有这些问题都是针对较旧的Linux(3.14.10之前)的。

推荐答案

您需要包括#include <linux/sched.h>

sched_setattr()gettid()的定义参见@CraigEstey发布的链接

原因是,glibc不会添加特定于Linux的syscall的函数包装。 例如gettid(),在手册中我们可以这样读:

注意:此系统调用没有glibc包装;请参阅备注。

Glibc不为此系统调用提供包装;使用 系统调用(2)。 此调用返回的线程ID与POSIX线程ID不同

看看这篇文章:https://lwn.net/Articles/711058/

#define _GNU_SOURCE
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <sched.h>
#include <linux/sched.h>
#include <sys/types.h>

struct sched_attr {
    uint32_t size;

    uint32_t sched_policy;
    uint64_t sched_flags;

    /* SCHED_NORMAL, SCHED_BATCH */
    int32_t sched_nice;

    /* SCHED_FIFO, SCHED_RR */
    uint32_t sched_priority;

    /* SCHED_DEADLINE (nsec) */
    uint64_t sched_runtime;
    uint64_t sched_deadline;
    uint64_t sched_period;
};

int sched_setattr(pid_t pid, const struct sched_attr *attr, unsigned int flags)
{
   return syscall(__NR_sched_setattr, pid, attr, flags);
}

int main(int argc, char* argv[]) {

    struct sched_attr attr = {
        .size = sizeof(attr),
        .sched_policy = SCHED_DEADLINE,
        .sched_runtime = 30000000,
        .sched_period = 100000000,
        .sched_deadline = 100000000
    };

    pid_t tid = syscall(SYS_gettid);

    if (sched_setattr(tid, &attr, 0))
        perror("sched_setattr()");

    return 0;
}

或更短的代码,不需要重新定义struct sched_attr

#define _GNU_SOURCE
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <linux/sched/types.h>
#include <linux/sched.h>
#include <sys/types.h>

int sched_setattr(pid_t pid, const struct sched_attr *attr, unsigned int flags)
{
   return syscall(__NR_sched_setattr, pid, attr, flags);
}

int main(int argc, char* argv[]) {

    struct sched_attr attr = {
        .size = sizeof(attr),
        .sched_policy = SCHED_DEADLINE,
        .sched_runtime = 30000000,
        .sched_period = 100000000,
        .sched_deadline = 100000000
    };

    pid_t tid = syscall(SYS_gettid);

    if (sched_setattr(tid, &attr, 0))
        perror("sched_setattr()");

    return 0;
}

这需要以超级用户身份执行,否则我会得到sched_setattr(): Operation not permitted 或者应用程序需要具有正确的Linux功能。

这篇关于在Ubuntu 16.04中是否正式支持SCHED_Deadline?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆