2020年01月29日
情報科学類 オペレーティングシステム II
筑波大学 システム情報系
新城 靖
<yas@cs.tsukuba.ac.jp>
このページは、次の URL にあります。
http://www.coins.tsukuba.ac.jp/~yas/coins/os2-2019/2020-01-29
あるいは、次のページから手繰っていくこともできます。
http://www.coins.tsukuba.ac.jp/~yas/
http://www.cs.tsukuba.ac.jp/~yas/
struct timeval {
time_t tv_sec; /* seconds. long int */
suseconds_t tv_usec; /* microseconds. long int */
};
int gettimeofday(struct timeval *tp, struct timezone *tzp);
int settimeofday(const struct timeval *tp, const struct timezone *tzp);
使い方
1: /*
2: gettimeofday-print.c -- get colander time and print
3: Created on: 2014/01/22 20:40:34
4: */
5:
6: #include <sys/time.h> /* gettimeofday() */
7: #include <time.h> /* ctime() */
8: #include <stdio.h>
9:
10: main()
11: {
12: struct timeval tv;
13: time_t sec;
14: gettimeofday( &tv, NULL );
15: sec = tv.tv_sec;
16: printf("%s", ctime(&sec) );
17: }
$ make gettimeofday-print
cc gettimeofday-print.c -o gettimeofday-print
$ ./gettimeofday-print
Sat Jan 25 18:28:14 2020
$ date
Sat Jan 25 18:28:20 JST 2020
$
POSIX 1003.1, 2003 の
struct timespec
では、ナノ秒単位。
struct timespec {
time_t tv_sec; /* Seconds. */
long int tv_nsec; /* Nanoseconds. */
};
int clock_settime(clockid_t clock_id, const struct timespec *tp);
int clock_gettime(clockid_t clock_id, struct timespec *tp);
int clock_getres(clockid_t clock_id, struct timespec *res);
clock_id としては、CLOCK_REALTIME (カレンダ時刻)やCLOCK_MONOTONIC があ
る。
カレンダ時刻は、変更できる。逆走させることも可能。
順方向のジャンプや逆走を避けて、カレンダ時刻を合わせるには、adjtime() を使う。
int adjtime(const struct timeval *delta, struct timeval *olddelta);adjtime() を使った時刻同期の方法。
struct itimerval {
struct timeval it_interval; /* next value */
struct timeval it_value; /* current value */
};
int setitimer(int which, const struct itimerval *value,
struct itimerval *ovalue);
int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
struct timeval *timeout);
int poll(struct pollfd *fds, nfds_t nfds, int timeout);
int epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout);
int kevent(int kq, const struct kevent *changelist, int nchanges,
struct kevent *eventlist, int nevents, const struct timespec *timeout);
ネットワーク・プログラムでよく使う。複数の入力を監視する。指定された時
間、入力がなければ、システム・コールから復帰する。
なにもしない時間切れ。
unsigned int sleep(unsigned int seconds); int usleep(useconds_t usec); int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);

図? タイマ関連のハードウェアの基本モデル
2つの機能がある。
その他の割込み
linux-5.4.7/include/asm-generic/param.h 8: # define HZ CONFIG_HZ /* Internal kernel timer frequency */ linux-5.4.7/include/generated/autoconf.h 1079: #define CONFIG_HZ 1000 linux-5.4.7/include/linux/jiffies.h 80: extern u64 __cacheline_aligned_in_smp jiffies_64; 81: extern unsigned long volatile __cacheline_aligned_in_smp __jiffy_arch_data jiffies;
linux-5.4.7/kernel/time/tick-common.c
83: static void tick_periodic(int cpu)
84: {
85: if (tick_do_timer_cpu == cpu) {
...
91: do_timer(1);
...
93: update_wall_time();
94: }
...
96: update_process_times(user_mode(get_irq_regs()));
...
98: }
linux-5.4.7/kernel/time/timer.c
58: __visible u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES;
linux-5.4.7/kernel/time/timekeeping.c
2194: void do_timer(unsigned long ticks)
2195: {
2196: jiffies_64 += ticks;
2197: calc_global_load(ticks);
2198: }
xtime_nsec >> shift でナノ秒を表す。
linux-5.4.7/include/linux/timekeeper_internal.h
34: struct tk_read_base {
...
39: u32 shift;
40: u64 xtime_nsec;
...
43: };
92: struct timekeeper {
93: struct tk_read_base tkr_mono;
...
95: u64 xtime_sec;
...
139: };
linux-5.4.7/kernel/time/timekeeping.c
107: static inline struct timespec64 tk_xtime(const struct timekeeper *tk)
108: {
109: struct timespec64 ts;
110:
111: ts.tv_sec = tk->xtime_sec;
112: ts.tv_nsec = (long)(tk->tkr_mono.xtime_nsec >> tk->tkr_mono.shift);
113: return ts;
114: }
linux-5.4.7/kernel/time/time.c
140: SYSCALL_DEFINE2(gettimeofday, struct timeval __user *, tv,
141: struct timezone __user *, tz)
142: {
143: if (likely(tv != NULL)) {
144: struct timespec64 ts;
145:
146: ktime_get_real_ts64(&ts);
147: if (put_user(ts.tv_sec, &tv->tv_sec) ||
148: put_user(ts.tv_nsec / 1000, &tv->tv_usec))
149: return -EFAULT;
150: }
151: if (unlikely(tz != NULL)) {
152: if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
153: return -EFAULT;
154: }
155: return 0;
156: }
linux-5.4.7/kernel/time/timekeeping.c
726: void ktime_get_real_ts64(struct timespec64 *ts)
727: {
728: struct timekeeper *tk = &tk_core.timekeeper;
729: unsigned int seq;
730: u64 nsecs;
...
737: ts->tv_sec = tk->xtime_sec;
738: nsecs = timekeeping_get_ns(&tk->tkr_mono);
...
742: ts->tv_nsec = 0;
743: timespec64_add_ns(ts, nsecs);
744: }
linux-5.4.7/include/linux/timer.h
11: struct timer_list {
...
17: unsigned long expires;
18: void (*function)(struct timer_list *);
19: u32 flags;
24: };
jiffies が増加して expires に達すれば、(*function)(data) を呼ぶ。
主に次の関数で操作する。
{
struct timer_list my_timer; // 構造体の宣言
init_timer(&my_timer); // 初期化
my_timer.expires = jiffies + delay; // どのくらい待ちたいか
my_timer.data = (unsigned long)data; // 渡したいデータ
my_timer.function = my_timer_func; // 関数
add_timer(&my_timer); // 登録
}
void my_timer_func(unsigned long data) {
...
}
linux-5.4.7/include/linux/hrtimer.h
38: enum hrtimer_mode {
39: HRTIMER_MODE_ABS = 0x00,
40: HRTIMER_MODE_REL = 0x01,
...
59: };
64: enum hrtimer_restart {
65: HRTIMER_NORESTART, /* Timer is not restarted */
66: HRTIMER_RESTART, /* Timer must be restarted */
67: };
117: struct hrtimer {
...
120: enum hrtimer_restart (*function)(struct hrtimer *);
...
126: };
主に次の関数で操作する。
struct hrtimer my_timer;
hrtimer_init(&my_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
my_timer.function = my_timer_handler;
...
hrtimer_start(&my_timer, ktime_set(0, t_nano), HRTIMER_MODE_REL);
...
enum hrtimer_restart my_timer_handler(struct hrtimer *timer)
{
...
return HRTIMER_NORESTART;
}
例: Ethernet のドライバでモードを変更して 2 マイクロ秒だけ待つ。
様々な方法がある。
例1: 10 tick (インターバル・タイマによる割り込み)を待つ。
unsigned long timeout = jiffies + 10; // 10 ticks
while (time_before(jiffies,timeout))
continue;
例2: 2秒待つ
unsigned long delay = jiffies + 2*HZ; // 2秒
while (time_before(jiffies,timeout))
continue;
unsigned long timeout = jiffies + 10; // 10 ticks
while (jiffies<timeout)
continue;
引き算して 0 と比較すると、オーバフローの問題が解決できる。
unsigned long timeout = jiffies + 10; // 10 ticks
while (jiffies-timeout<0)
continue;
次のマクロを使う方法もある。
linux-5.4.7/include/linux/jiffies.h 105: #define time_after(a,b) \ 106: (typecheck(unsigned long, a) && \ 107: typecheck(unsigned long, b) && \ 108: ((long)((b) - (a)) < 0)) 109: #define time_before(a,b) time_after(b,a) 110: 111: #define time_after_eq(a,b) \ 112: (typecheck(unsigned long, a) && \ 113: typecheck(unsigned long, b) && \ 114: ((long)((a) - (b)) >= 0)) 115: #define time_before_eq(a,b) time_after_eq(b,a)
unsigned long delay = jiffies + 2*HZ; // 2秒
while (time_before(jiffies,timeout))
cond_resched();
他に実行すべき重要なプロセスが存在する(条件)時には、スケジューラを呼ん
で、実行する。存在しなければ、空ループと同じ。ただし、スケジューラを呼
ぶ(sleepする可能性がある)ので、割り込みコンテキストからは使えない。
void ndelay(unsigned long nsecs) void udelay(unsigned long usecs) void mdelay(unsigned long msecs)udelay() は、ある回数のループで実装されている。回数は、CPUの速度等で決 まる。ndelay(), mdelay() は、udelay() を呼んでいる。
udelay() で1ミリ秒以上待ってはいけない。 ループのインデックスがオーバフローする可能性がある。
set_current_state( TASK_INTERRUPTIBLE ); // signal で起きる可能性がある schedule_timeout( s * HZ );実装には struct timer_list が使われている。
| 表示 | 説明 |
| NI | Nice。優先度を表す値。 |
$ /bin/ps l
F UID PID PPID PRI NI VSZ RSS WCHAN STAT TTY TIME COMMAND
0 1013 20638 20636 20 0 123572 2100 wait Ss pts/2 0:00 -bash
0 1013 21139 20638 20 0 155660 5900 poll_s S pts/2 0:02 xterm -class UXTerm -title uxterm -u8
0 1013 21150 21139 20 0 123552 2144 wait Ss pts/3 0:00 bash
0 1013 21560 20638 20 0 267808 22928 poll_s S+ pts/2 0:09 emacs -nw
0 1013 21784 21150 20 0 103748 956 signal T pts/3 0:00 lv kernel/time/timer.c
0 1013 27031 21150 20 0 108132 980 - R+ pts/3 0:00 /bin/ps l
$ /bin/nice /bin/ps l
F UID PID PPID PRI NI VSZ RSS WCHAN STAT TTY TIME COMMAND
0 1013 20638 20636 20 0 123572 2100 wait Ss pts/2 0:00 -bash
0 1013 21139 20638 20 0 155660 5900 poll_s S pts/2 0:02 xterm -class UXTerm -title uxterm -u8
0 1013 21150 21139 20 0 123552 2144 wait Ss pts/3 0:00 bash
0 1013 21560 20638 20 0 267808 22928 poll_s S+ pts/2 0:09 emacs -nw
0 1013 21784 21150 20 0 103748 956 signal T pts/3 0:00 lv kernel/time/timer.c
0 1013 27034 21150 30 10 108136 984 - RN+ pts/3 0:00 /bin/ps l
$ /bin/nice -19 /bin/ps l
F UID PID PPID PRI NI VSZ RSS WCHAN STAT TTY TIME COMMAND
0 1013 20638 20636 20 0 123572 2100 wait Ss pts/2 0:00 -bash
0 1013 21139 20638 20 0 155660 5900 - R pts/2 0:02 xterm -class UXTerm -title uxterm -u8
0 1013 21150 21139 20 0 123552 2144 wait Ss pts/3 0:00 bash
0 1013 21560 20638 20 0 267808 22928 poll_s S+ pts/2 0:09 emacs -nw
0 1013 21784 21150 20 0 103748 956 signal T pts/3 0:00 lv kernel/time/timer.c
0 1013 27035 21150 39 19 108132 984 - RN+ pts/3 0:00 /bin/ps l
$
1: /*
2: getpriority-pid.c -- 優先度の表示
3: ~yas/syspro/proc/getpriority-pid.c
4: Created on: 2009/12/14 12:15:11
5: */
6:
7: #include <stdio.h> /* stderr, fprintf() */
8: #include <sys/time.h> /* getpriority() */
9: #include <sys/resource.h> /* getpriority() */
10: #include <stdlib.h> /* strtol() */
11: #include <limits.h> /* strtol() */
12:
13: main( int argc, char *argv[] )
14: {
15: int which, who, prio;
16: pid_t pid;
17: if( argc != 2 )
18: {
19: fprintf(stderr,"Usage: %% %s pid\n",argv[0] );
20: exit( 1 );
21: }
22: pid = strtol( argv[1], NULL, 10 );
23: prio = getpriority( PRIO_PROCESS, pid );
24: printf("pid==%d, priority==%d\n", pid, prio);
25: }
$ ./getpriority-pid
Usage: % ./getpriority-pid pid
$ echo $$
21150
$ ./getpriority-pid
Usage: % ./getpriority-pid pid
$ ./getpriority-pid $$
pid==21150, priority==0
$ ./getpriority-pid 0
pid==0, priority==0
$ /bin/nice -10 ./getpriority-pid 0
pid==0, priority==10
$ /bin/nice -20 ./getpriority-pid 0
pid==0, priority==19
$
linux-5.4.7/include/linux/sched.h
624: struct task_struct {
...
633: volatile long state;
670: int prio;
671: int static_prio;
672: int normal_prio;
673: unsigned int rt_priority;
674:
675: const struct sched_class *sched_class;
676: struct sched_entity se;
677: struct sched_rt_entity rt;
...
681: struct sched_dl_entity dl;
...
699: unsigned int policy;
...
1286: };
444: struct sched_entity {
...
446: struct load_weight load;
...
448: struct rb_node run_node;
...
450: unsigned int on_rq;
...
452: u64 exec_start;
453: u64 sum_exec_runtime;
454: u64 vruntime;
...
479: };
320: struct load_weight {
321: unsigned long weight;
322: u32 inv_weight;
323: };
struct task_struct の中に、prio 等のフィールドやstruct sched_entity が
ある。
linux-5.4.7/include/uapi/linux/sched.h 83: #define SCHED_NORMAL 0 84: #define SCHED_FIFO 1 85: #define SCHED_RR 2 86: #define SCHED_BATCH 3 87: /* SCHED_ISO: reserved but not implemented yet */ 88: #define SCHED_IDLE 5 89: #define SCHED_DEADLINE 6
linux-5.4.7/kernel/sys.c
266: SYSCALL_DEFINE2(getpriority, int, which, int, who)
267: {
268: struct task_struct *g, *p;
269: struct user_struct *user;
270: const struct cred *cred = current_cred();
271: long niceval, retval = -ESRCH;
272: struct pid *pgrp;
273: kuid_t uid;
274:
275: if (which > PRIO_USER || which < PRIO_PROCESS)
276: return -EINVAL;
...
281: case PRIO_PROCESS:
282: if (who)
283: p = find_task_by_vpid(who);
284: else
285: p = current;
286: if (p) {
287: niceval = nice_to_rlimit(task_nice(p));
288: if (niceval > retval)
289: retval = niceval;
290: }
291: break;
292: case PRIO_PGRP:
...
303: case PRIO_USER:
...
323: }
...
328: return retval;
329: }
linux-5.4.7/include/linux/sched/prio.h
5: #define MAX_NICE 19
6: #define MIN_NICE -20
7: #define NICE_WIDTH (MAX_NICE - MIN_NICE + 1)
...
22: #define MAX_USER_RT_PRIO 100
23: #define MAX_RT_PRIO MAX_USER_RT_PRIO
24:
25: #define MAX_PRIO (MAX_RT_PRIO + NICE_WIDTH)
26: #define DEFAULT_PRIO (MAX_RT_PRIO + NICE_WIDTH / 2)
...
33: #define NICE_TO_PRIO(nice) ((nice) + DEFAULT_PRIO)
34: #define PRIO_TO_NICE(prio) ((prio) - DEFAULT_PRIO)
linux-5.4.7/include/linux/sched.h
1598: static inline int task_nice(const struct task_struct *p)
1599: {
1600: return PRIO_TO_NICE((p)->static_prio);
1601: }
linux-5.4.7/include/linux/sched/prio.h
48: static inline long nice_to_rlimit(long nice)
49: {
50: return (MAX_NICE - nice + 1);
51: }
glibc-2.12/sysdeps/unix/sysv/linux/getpriority.c
28: #define PZERO 20
...
35: int
36: getpriority (enum __priority_which which, id_t who)
37: {
38: int res;
39:
40: res = INLINE_SYSCALL (getpriority, 2, (int) which, who);
41: if (res >= 0)
42: res = PZERO - res;
43: return res;
44: }
linux-5.4.7/kernel/sched/core.c
7908: /*
7909: * Nice levels are multiplicative, with a gentle 10% change for every
7910: * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
7911: * nice 1, it will get ~10% less CPU time than another CPU-bound task
7912: * that remained on nice 0.
7913: *
7914: * The "10% effect" is relative and cumulative: from _any_ nice level,
7915: * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
7916: * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
7917: * If a task goes up by ~10% and another task goes down by ~10% then
7918: * the relative distance between them is ~25%.)
7919: */
7920: const int sched_prio_to_weight[40] = {
7921: /* -20 */ 88761, 71755, 56483, 46273, 36291,
7922: /* -15 */ 29154, 23254, 18705, 14949, 11916,
7923: /* -10 */ 9548, 7620, 6100, 4904, 3906,
7924: /* -5 */ 3121, 2501, 1991, 1586, 1277,
7925: /* 0 */ 1024, 820, 655, 526, 423,
7926: /* 5 */ 335, 272, 215, 172, 137,
7927: /* 10 */ 110, 87, 70, 56, 45,
7928: /* 15 */ 36, 29, 23, 18, 15,
7929: };
747: static void set_load_weight(struct task_struct *p, bool update_load)
748: {
749: int prio = p->static_prio - MAX_RT_PRIO;
750: struct load_weight *load = &p->se.load;
...
769: load->weight = scale_load(sched_prio_to_weight[prio]);
770: load->inv_weight = sched_prio_to_wmult[prio];
...
773: }
linux-5.4.7/kernel/sched/sched.h
124: # define scale_load(w) (w)
| 名前 | 説明 |
|---|---|
| enqueue_task | プロセスが実行可能(runnable)になった |
| dequeue_task | プロセスが実行可能ではなくなった |
| yield_task | CPUを譲る。dequeueしてenqueue |
| check_preempt_curr | 実行可能になった時にCPUを横取りすべきかをチェック |
| pick_next_task | 次に実行すべきプロセスを選ぶ |
| set_curr_task | スケジューリング・クラスが変更された |
| task_tick | タイマ割込み(tick)の時に呼ばれる |
| task_new | 新しいプロセスが生成された |
linux-5.4.7/kernel/sched/core.c
1289: static inline void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
1290: {
...
1300: p->sched_class->enqueue_task(rq, p, flags);
1301: }
1303: static inline void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
1304: {
...
1314: p->sched_class->dequeue_task(rq, p, flags);
1315: }
linux-5.4.7/kernel/sched/core.c
4706: static void __setscheduler(struct rq *rq, struct task_struct *p,
4707: const struct sched_attr *attr, bool keep_boost)
4708: {
...
4716: __setscheduler_params(p, attr);
...
4722: p->prio = normal_prio(p);
...
4726: if (dl_prio(p->prio))
4727: p->sched_class = &dl_sched_class;
4728: else if (rt_prio(p->prio))
4729: p->sched_class = &rt_sched_class;
4730: else
4731: p->sched_class = &fair_sched_class;
4732: }
4680: static void __setscheduler_params(struct task_struct *p,
4681: const struct sched_attr *attr)
4682: {
4683: int policy = attr->sched_policy;
4684:
4685: if (policy == SETPARAM_POLICY)
4686: policy = p->policy;
4687:
4688: p->policy = policy;
4689:
4690: if (dl_policy(policy))
4691: __setparam_dl(p, attr);
4692: else if (fair_policy(policy))
4693: p->static_prio = NICE_TO_PRIO(attr->sched_nice);
...
4700: p->rt_priority = attr->sched_priority;
4701: p->normal_prio = normal_prio(p);
4702: set_load_weight(p, true);
4703: }
p->prio
をpolicy に応じて設定する。
p->prio の値に応じて
&dl_sched_class か
&rt_sched_class か
&fair_sched_class のいずれかを指すようにする。
CPUバウンドのプロセスが複数存在した時、ある期間を定めて、この期間の間に、 (優先度を考慮して)公平になるようにCPU資源を割り当てる。この期間の間に、 1度はCPUを割り当てられるようにがんばる。この期間は、 kernel.sched_latency_ns で設定されている。以下の例では、15ミリ秒。
$ sysctl kernel.sched_latency_ns
kernel.sched_latency_ns = 15000000
$
たとえば、もし優先度が同じプロセスAとプロセスBが存在した時には、15ミリ
秒の間にプロセスAに7.5ミリ秒、プロセスBに7.5ミリ秒のCPU資源を割り当てる
ようにがんばる。
Linux CFS は、次の方法でスケジューリングを行なう。

図? runqueueの構造
linux-5.4.7/kernel/sched/sched.h
847: struct rq {
...
881: struct cfs_rq cfs;
882: struct rt_rq rt;
883: struct dl_rq dl;
...
1002: };
490: struct cfs_rq {
...
503: struct rb_root_cached tasks_timeline;
...
578: };
linux-5.4.7/kernel/sched/core.c
37: DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);

図? runqueueの構造(red-black tree)
linux-5.4.7/kernel/sched/fair.c
565: static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
566: {
567: struct rb_node **link = &cfs_rq->tasks_timeline.rb_root.rb_node;
568: struct rb_node *parent = NULL;
569: struct sched_entity *entry;
570: bool leftmost = true;
571:
572: /*
573: * Find the right place in the rbtree:
574: */
575: while (*link) {
576: parent = *link;
577: entry = rb_entry(parent, struct sched_entity, run_node);
578: /*
579: * We dont care about collisions. Nodes with
580: * the same key stay together.
581: */
582: if (entity_before(se, entry)) {
583: link = &parent->rb_left;
584: } else {
585: link = &parent->rb_right;
586: leftmost = false;
587: }
588: }
589:
590: rb_link_node(&se->run_node, parent, link);
591: rb_insert_color_cached(&se->run_node,
592: &cfs_rq->tasks_timeline, leftmost);
593: }
594:
595: static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
596: {
597: rb_erase_cached(&se->run_node, &cfs_rq->tasks_timeline);
598: }
524: static inline int entity_before(struct sched_entity *a,
525: struct sched_entity *b)
526: {
527: return (s64)(a->vruntime - b->vruntime) < 0;
528: }
&parent->rb_left), 大きければ右(&parent->rb_right) に進む。
cfs_rq->tasks_timeline->rb_leftmost にも保存。
linux-5.4.7/kernel/sched/core.c
3589: void scheduler_tick(void)
3590: {
3591: int cpu = smp_processor_id();
3592: struct rq *rq = cpu_rq(cpu);
3593: struct task_struct *curr = rq->curr;
...
3601: curr->sched_class->task_tick(rq, curr, 0);
...
3613: }
linux-5.4.7/kernel/sched/fair.c
9941: static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
9942: {
9943: struct cfs_rq *cfs_rq;
9944: struct sched_entity *se = &curr->se;
9945:
9946: for_each_sched_entity(se) {
9947: cfs_rq = cfs_rq_of(se);
9948: entity_tick(cfs_rq, se, queued);
9949: }
...
9956: }
4272: static void
4273: entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
4274: {
...
4278: update_curr(cfs_rq);
...
4305: }
833: static void update_curr(struct cfs_rq *cfs_rq)
834: {
835: struct sched_entity *curr = cfs_rq->curr;
836: u64 now = rq_clock_task(rq_of(cfs_rq));
837: u64 delta_exec;
...
842: delta_exec = now - curr->exec_start;
...
846: curr->exec_start = now;
...
851: curr->sum_exec_runtime += delta_exec;
...
854: curr->vruntime += calc_delta_fair(delta_exec, curr);
855: update_min_vruntime(cfs_rq);
...
866: }
662: static inline u64 calc_delta_fair(u64 delta, struct sched_entity *se)
663: {
664: if (unlikely(se->load.weight != NICE_0_LOAD))
665: delta = __calc_delta(delta, NICE_0_LOAD, &se->load);
666:
667: return delta;
668: }
$ cat /proc/sched_debug
Sched Debug Version: v0.09, 2.6.32-431.3.1.el6.x86_64 #1
now at 7955627655.961573 msecs
.jiffies : 12250294951
...
cpu#0, 2100.000 MHz
.nr_running : 1
...
.curr->pid : 30990
...
cfs_rq[0]:/
.exec_clock : 40812852.059736
...
rt_rq[0]:/
.rt_nr_running : 0
...
.nr_running : 1
...
runnable tasks:
task PID tree-key switches prio exec-runtime sum-exec sum-sleep
----------------------------------------------------------------------------------------------------------
R cat 30990 32644150.029656 2 120 32644150.029656 1.072543 0.366310 /
...
cpu#1, 2100.000 MHz
...
cpu#2, 2100.000 MHz
...
cpu#3, 2100.000 MHz
...
$ cat /proc/self/sched
cat (31354, #threads: 1)
---------------------------------------------------------
se.exec_start : 7962193228.073935
se.vruntime : 51856286.476132
se.sum_exec_runtime : 1.211193
...
se.load.weight : 1024
policy : 0
prio : 120
clock-delta : 127
$
void h(int a,int b, int c) {
....
}
これを実現するために、どのようなコードを書けばよいか。以下の空欄を埋め
なさい。
struct timer_list my_timer;
int my_arg_a,my_arg_b,my_arg_c;
void f(unsigned long data) {
init_timer( /*空欄(a)*/ );
my_timer.expires = /*空欄(b)*/;
my_timer.data = 0;
my_timer.function = /*空欄(c)*/;
/*空欄(d)*/;
}
void my_timer_func(unsigned long data) {
h( my_arg_a,my_arg_b,my_arg_c );
}

図? 4つの要素を持つリスト構造
注意: 正しい二分探索木は、複数存在する。