简体   繁体   English

如何获得内核中一个线程的运行时间?

[英]How to get runtime of one thread in kernel?

I need to get the process/thread time. 我需要获取进程/线程时间。 I use linux-4.13.4 in Ubuntu 16.04 我在Ubuntu 16.04使用linux-4.13.4

I read some posts and get that 我读了一些帖子并明白了

sum_exec_runtime

Total time process ran on CPU
In real time
Nano second units (10^−9)
Updated in __update_curr(), called from update_curr()

So I think if it is a single thread program. 因此,我认为这是否是单线程程序。 Somehow, I can get the running time of the thread by exact sum_exec_runtime from task_struct 以某种方式,我可以从task_struct通过精确的sum_exec_runtime获取线程的运行时间

I add syscall to get time: 我添加syscall以获得时间:

So I make some little change inside linux kernel. 因此,我在Linux内核中进行了一些更改。

struct task_struct {
    ...
    ...
    struct sched_entity     se;    
    // TODO: to get start time and end time
    u64 start_time;  
    u64 end_time;
    ...
    ...
};

Then I add my syscall to store sum_exec_runtime into start_time and end_time when I call 然后我添加系统调用以在调用时将sum_exec_runtime存储到start_timeend_time

asmlinkage long sys_start_vm_timer(int __user vm_tid);

asmlinkage long sys_end_vm_timer(int __user vm_tid, unsigned long long __user *time);

SYSCALL_DEFINE1(start_vm_timer,
                int __user, vm_tid){
        (find_task_by_vpid(vm_tid))->vm_start_time =
        (find_task_by_vpid(vm_tid))->se.sum_exec_runtime;
        return 0;       
}

SYSCALL_DEFINE2(end_timer,
        int __user, tid,
        unsigned long long __user, *time){
    u64 vm_time;
    (find_task_by_vpid(vm_tid))->vm_end_time =
    (find_task_by_vpid(vm_tid))->se.sum_exec_runtime;
    printk("-------------------\n");
    printk("end_vm_time: vm_elapsed_time = %llu \n", ((find_task_by_vpid(vm_tid))->vm_end_time - (find_task_by_vpid(vm_tid))->vm_start_time) );
    vm_time = ((find_task_by_vpid(vm_tid))->vm_end_time - (find_task_by_vpid(vm_tid))->vm_start_time);
    copy_to_user(time, &vm_time, sizeof(unsigned long long));
    return 0;
}

I test with this program tries to get the time of a for loop. 我用这个程序测试试图获得一个for循环的时间。

#include <stdio.h>
#include <linux/kernel.h>
#include <sys/syscall.h>
#include <unistd.h>
#include <time.h>
#include <sys/time.h>
#include <stdlib.h>

int main(){

    int tid = syscall(SYS_gettid);
    printf("tid = %d \n", tid);
    printf("My process ID : %d\n", getpid());
    printf("My parent's ID: %d\n", getppid());

    struct timeval start, end;
    unsigned long long elapsedTime = 0;

    gettimeofday(&start, NULL);

    syscall(336, tid);

    int i = 0;
    int j = 0;
    for(i = 0; i < 65535; i++){
        j += 1;
    }

    syscall(337, tid, &elapsedTime);

    gettimeofday(&end, NULL);

    printf("thread time = %llu microseconds \n", elapsedTime/1000);
    printf("gettimeofday = %ld microseconds \n", ((end.tv_sec * 1000000 + end.tv_usec)- (start.tv_sec * 1000000 + start.tv_usec)));
    return 0;
}

I get unexpected result. 我得到意想不到的结果。

wxf@wxf:/home/wxf/cPrj$ ./thread_time 
tid = 6905 
My process ID : 6905
My parent's ID: 6595
thread time = 0 microseconds 
gettimeofday = 422 microseconds 

From dmesg , dmesg

[63287.065285] tid = 6905 
[63287.065288] start_vm_timer = 0 
[63287.065701] tid = 6905 
[63287.065702] -------------------
[63287.065703] end_vm_timer = 0 
[63287.065704] end_vm_time: vm_elapsed_time = 0 

I expect that they should be almost the same. 我希望它们应该几乎相同。 But why process/thread time is 0? 但是,为什么进程/线程时间为0?

The value of sum_exec_runtime does not include the current runtime of the thread. sum_exec_runtime的值不包括线程的当前运行时。 It's updated when needed, not continuously. 它在需要时更新,而不是连续更新。 See the update_curr function. 请参见update_curr函数。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM