diff options
Diffstat (limited to 'kernel/posix-cpu-timers.c')
| -rw-r--r-- | kernel/posix-cpu-timers.c | 310 |
1 files changed, 109 insertions, 201 deletions
diff --git a/kernel/posix-cpu-timers.c b/kernel/posix-cpu-timers.c index bc7704b3a443..9829646d399c 100644 --- a/kernel/posix-cpu-timers.c +++ b/kernel/posix-cpu-timers.c | |||
| @@ -11,19 +11,18 @@ | |||
| 11 | #include <trace/events/timer.h> | 11 | #include <trace/events/timer.h> |
| 12 | 12 | ||
| 13 | /* | 13 | /* |
| 14 | * Called after updating RLIMIT_CPU to set timer expiration if necessary. | 14 | * Called after updating RLIMIT_CPU to run cpu timer and update |
| 15 | * tsk->signal->cputime_expires expiration cache if necessary. Needs | ||
| 16 | * siglock protection since other code may update expiration cache as | ||
| 17 | * well. | ||
| 15 | */ | 18 | */ |
| 16 | void update_rlimit_cpu(unsigned long rlim_new) | 19 | void update_rlimit_cpu(unsigned long rlim_new) |
| 17 | { | 20 | { |
| 18 | cputime_t cputime = secs_to_cputime(rlim_new); | 21 | cputime_t cputime = secs_to_cputime(rlim_new); |
| 19 | struct signal_struct *const sig = current->signal; | ||
| 20 | 22 | ||
| 21 | if (cputime_eq(sig->it[CPUCLOCK_PROF].expires, cputime_zero) || | 23 | spin_lock_irq(¤t->sighand->siglock); |
| 22 | cputime_gt(sig->it[CPUCLOCK_PROF].expires, cputime)) { | 24 | set_process_cpu_timer(current, CPUCLOCK_PROF, &cputime, NULL); |
| 23 | spin_lock_irq(¤t->sighand->siglock); | 25 | spin_unlock_irq(¤t->sighand->siglock); |
| 24 | set_process_cpu_timer(current, CPUCLOCK_PROF, &cputime, NULL); | ||
| 25 | spin_unlock_irq(¤t->sighand->siglock); | ||
| 26 | } | ||
| 27 | } | 26 | } |
| 28 | 27 | ||
| 29 | static int check_clock(const clockid_t which_clock) | 28 | static int check_clock(const clockid_t which_clock) |
| @@ -364,7 +363,7 @@ int posix_cpu_clock_get(const clockid_t which_clock, struct timespec *tp) | |||
| 364 | } | 363 | } |
| 365 | } else { | 364 | } else { |
| 366 | read_lock(&tasklist_lock); | 365 | read_lock(&tasklist_lock); |
| 367 | if (thread_group_leader(p) && p->signal) { | 366 | if (thread_group_leader(p) && p->sighand) { |
| 368 | error = | 367 | error = |
| 369 | cpu_clock_sample_group(which_clock, | 368 | cpu_clock_sample_group(which_clock, |
| 370 | p, &rtn); | 369 | p, &rtn); |
| @@ -440,7 +439,7 @@ int posix_cpu_timer_del(struct k_itimer *timer) | |||
| 440 | 439 | ||
| 441 | if (likely(p != NULL)) { | 440 | if (likely(p != NULL)) { |
| 442 | read_lock(&tasklist_lock); | 441 | read_lock(&tasklist_lock); |
| 443 | if (unlikely(p->signal == NULL)) { | 442 | if (unlikely(p->sighand == NULL)) { |
| 444 | /* | 443 | /* |
| 445 | * We raced with the reaping of the task. | 444 | * We raced with the reaping of the task. |
| 446 | * The deletion should have cleared us off the list. | 445 | * The deletion should have cleared us off the list. |
| @@ -548,111 +547,62 @@ static inline int expires_gt(cputime_t expires, cputime_t new_exp) | |||
| 548 | cputime_gt(expires, new_exp); | 547 | cputime_gt(expires, new_exp); |
| 549 | } | 548 | } |
| 550 | 549 | ||
| 551 | static inline int expires_le(cputime_t expires, cputime_t new_exp) | ||
| 552 | { | ||
| 553 | return !cputime_eq(expires, cputime_zero) && | ||
| 554 | cputime_le(expires, new_exp); | ||
| 555 | } | ||
| 556 | /* | 550 | /* |
| 557 | * Insert the timer on the appropriate list before any timers that | 551 | * Insert the timer on the appropriate list before any timers that |
| 558 | * expire later. This must be called with the tasklist_lock held | 552 | * expire later. This must be called with the tasklist_lock held |
| 559 | * for reading, and interrupts disabled. | 553 | * for reading, interrupts disabled and p->sighand->siglock taken. |
| 560 | */ | 554 | */ |
| 561 | static void arm_timer(struct k_itimer *timer, union cpu_time_count now) | 555 | static void arm_timer(struct k_itimer *timer) |
| 562 | { | 556 | { |
| 563 | struct task_struct *p = timer->it.cpu.task; | 557 | struct task_struct *p = timer->it.cpu.task; |
| 564 | struct list_head *head, *listpos; | 558 | struct list_head *head, *listpos; |
| 559 | struct task_cputime *cputime_expires; | ||
| 565 | struct cpu_timer_list *const nt = &timer->it.cpu; | 560 | struct cpu_timer_list *const nt = &timer->it.cpu; |
| 566 | struct cpu_timer_list *next; | 561 | struct cpu_timer_list *next; |
| 567 | unsigned long i; | ||
| 568 | 562 | ||
| 569 | head = (CPUCLOCK_PERTHREAD(timer->it_clock) ? | 563 | if (CPUCLOCK_PERTHREAD(timer->it_clock)) { |
| 570 | p->cpu_timers : p->signal->cpu_timers); | 564 | head = p->cpu_timers; |
| 565 | cputime_expires = &p->cputime_expires; | ||
| 566 | } else { | ||
| 567 | head = p->signal->cpu_timers; | ||
| 568 | cputime_expires = &p->signal->cputime_expires; | ||
| 569 | } | ||
| 571 | head += CPUCLOCK_WHICH(timer->it_clock); | 570 | head += CPUCLOCK_WHICH(timer->it_clock); |
| 572 | 571 | ||
| 573 | BUG_ON(!irqs_disabled()); | ||
| 574 | spin_lock(&p->sighand->siglock); | ||
| 575 | |||
| 576 | listpos = head; | 572 | listpos = head; |
| 577 | if (CPUCLOCK_WHICH(timer->it_clock) == CPUCLOCK_SCHED) { | 573 | list_for_each_entry(next, head, entry) { |
| 578 | list_for_each_entry(next, head, entry) { | 574 | if (cpu_time_before(timer->it_clock, nt->expires, next->expires)) |
| 579 | if (next->expires.sched > nt->expires.sched) | 575 | break; |
| 580 | break; | 576 | listpos = &next->entry; |
| 581 | listpos = &next->entry; | ||
| 582 | } | ||
| 583 | } else { | ||
| 584 | list_for_each_entry(next, head, entry) { | ||
| 585 | if (cputime_gt(next->expires.cpu, nt->expires.cpu)) | ||
| 586 | break; | ||
| 587 | listpos = &next->entry; | ||
| 588 | } | ||
| 589 | } | 577 | } |
| 590 | list_add(&nt->entry, listpos); | 578 | list_add(&nt->entry, listpos); |
| 591 | 579 | ||
| 592 | if (listpos == head) { | 580 | if (listpos == head) { |
| 581 | union cpu_time_count *exp = &nt->expires; | ||
| 582 | |||
| 593 | /* | 583 | /* |
| 594 | * We are the new earliest-expiring timer. | 584 | * We are the new earliest-expiring POSIX 1.b timer, hence |
| 595 | * If we are a thread timer, there can always | 585 | * need to update expiration cache. Take into account that |
| 596 | * be a process timer telling us to stop earlier. | 586 | * for process timers we share expiration cache with itimers |
| 587 | * and RLIMIT_CPU and for thread timers with RLIMIT_RTTIME. | ||
| 597 | */ | 588 | */ |
| 598 | 589 | ||
| 599 | if (CPUCLOCK_PERTHREAD(timer->it_clock)) { | 590 | switch (CPUCLOCK_WHICH(timer->it_clock)) { |
| 600 | union cpu_time_count *exp = &nt->expires; | 591 | case CPUCLOCK_PROF: |
| 601 | 592 | if (expires_gt(cputime_expires->prof_exp, exp->cpu)) | |
| 602 | switch (CPUCLOCK_WHICH(timer->it_clock)) { | 593 | cputime_expires->prof_exp = exp->cpu; |
| 603 | default: | 594 | break; |
| 604 | BUG(); | 595 | case CPUCLOCK_VIRT: |
| 605 | case CPUCLOCK_PROF: | 596 | if (expires_gt(cputime_expires->virt_exp, exp->cpu)) |
| 606 | if (expires_gt(p->cputime_expires.prof_exp, | 597 | cputime_expires->virt_exp = exp->cpu; |
| 607 | exp->cpu)) | 598 | break; |
| 608 | p->cputime_expires.prof_exp = exp->cpu; | 599 | case CPUCLOCK_SCHED: |
| 609 | break; | 600 | if (cputime_expires->sched_exp == 0 || |
| 610 | case CPUCLOCK_VIRT: | 601 | cputime_expires->sched_exp > exp->sched) |
| 611 | if (expires_gt(p->cputime_expires.virt_exp, | 602 | cputime_expires->sched_exp = exp->sched; |
| 612 | exp->cpu)) | 603 | break; |
| 613 | p->cputime_expires.virt_exp = exp->cpu; | ||
| 614 | break; | ||
| 615 | case CPUCLOCK_SCHED: | ||
| 616 | if (p->cputime_expires.sched_exp == 0 || | ||
| 617 | p->cputime_expires.sched_exp > exp->sched) | ||
| 618 | p->cputime_expires.sched_exp = | ||
| 619 | exp->sched; | ||
| 620 | break; | ||
| 621 | } | ||
| 622 | } else { | ||
| 623 | struct signal_struct *const sig = p->signal; | ||
| 624 | union cpu_time_count *exp = &timer->it.cpu.expires; | ||
| 625 | |||
| 626 | /* | ||
| 627 | * For a process timer, set the cached expiration time. | ||
| 628 | */ | ||
| 629 | switch (CPUCLOCK_WHICH(timer->it_clock)) { | ||
| 630 | default: | ||
| 631 | BUG(); | ||
| 632 | case CPUCLOCK_VIRT: | ||
| 633 | if (expires_le(sig->it[CPUCLOCK_VIRT].expires, | ||
| 634 | exp->cpu)) | ||
| 635 | break; | ||
| 636 | sig->cputime_expires.virt_exp = exp->cpu; | ||
| 637 | break; | ||
| 638 | case CPUCLOCK_PROF: | ||
| 639 | if (expires_le(sig->it[CPUCLOCK_PROF].expires, | ||
| 640 | exp->cpu)) | ||
| 641 | break; | ||
| 642 | i = sig->rlim[RLIMIT_CPU].rlim_cur; | ||
| 643 | if (i != RLIM_INFINITY && | ||
| 644 | i <= cputime_to_secs(exp->cpu)) | ||
| 645 | break; | ||
| 646 | sig->cputime_expires.prof_exp = exp->cpu; | ||
| 647 | break; | ||
| 648 | case CPUCLOCK_SCHED: | ||
| 649 | sig->cputime_expires.sched_exp = exp->sched; | ||
| 650 | break; | ||
| 651 | } | ||
| 652 | } | 604 | } |
| 653 | } | 605 | } |
| 654 | |||
| 655 | spin_unlock(&p->sighand->siglock); | ||
| 656 | } | 606 | } |
| 657 | 607 | ||
| 658 | /* | 608 | /* |
| @@ -660,7 +610,12 @@ static void arm_timer(struct k_itimer *timer, union cpu_time_count now) | |||
| 660 | */ | 610 | */ |
| 661 | static void cpu_timer_fire(struct k_itimer *timer) | 611 | static void cpu_timer_fire(struct k_itimer *timer) |
| 662 | { | 612 | { |
| 663 | if (unlikely(timer->sigq == NULL)) { | 613 | if ((timer->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE) { |
| 614 | /* | ||
| 615 | * User don't want any signal. | ||
| 616 | */ | ||
| 617 | timer->it.cpu.expires.sched = 0; | ||
| 618 | } else if (unlikely(timer->sigq == NULL)) { | ||
| 664 | /* | 619 | /* |
| 665 | * This a special case for clock_nanosleep, | 620 | * This a special case for clock_nanosleep, |
| 666 | * not a normal timer from sys_timer_create. | 621 | * not a normal timer from sys_timer_create. |
| @@ -721,7 +676,7 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 721 | struct itimerspec *new, struct itimerspec *old) | 676 | struct itimerspec *new, struct itimerspec *old) |
| 722 | { | 677 | { |
| 723 | struct task_struct *p = timer->it.cpu.task; | 678 | struct task_struct *p = timer->it.cpu.task; |
| 724 | union cpu_time_count old_expires, new_expires, val; | 679 | union cpu_time_count old_expires, new_expires, old_incr, val; |
| 725 | int ret; | 680 | int ret; |
| 726 | 681 | ||
| 727 | if (unlikely(p == NULL)) { | 682 | if (unlikely(p == NULL)) { |
| @@ -736,10 +691,10 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 736 | read_lock(&tasklist_lock); | 691 | read_lock(&tasklist_lock); |
| 737 | /* | 692 | /* |
| 738 | * We need the tasklist_lock to protect against reaping that | 693 | * We need the tasklist_lock to protect against reaping that |
| 739 | * clears p->signal. If p has just been reaped, we can no | 694 | * clears p->sighand. If p has just been reaped, we can no |
| 740 | * longer get any information about it at all. | 695 | * longer get any information about it at all. |
| 741 | */ | 696 | */ |
| 742 | if (unlikely(p->signal == NULL)) { | 697 | if (unlikely(p->sighand == NULL)) { |
| 743 | read_unlock(&tasklist_lock); | 698 | read_unlock(&tasklist_lock); |
| 744 | put_task_struct(p); | 699 | put_task_struct(p); |
| 745 | timer->it.cpu.task = NULL; | 700 | timer->it.cpu.task = NULL; |
| @@ -752,6 +707,7 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 752 | BUG_ON(!irqs_disabled()); | 707 | BUG_ON(!irqs_disabled()); |
| 753 | 708 | ||
| 754 | ret = 0; | 709 | ret = 0; |
| 710 | old_incr = timer->it.cpu.incr; | ||
| 755 | spin_lock(&p->sighand->siglock); | 711 | spin_lock(&p->sighand->siglock); |
| 756 | old_expires = timer->it.cpu.expires; | 712 | old_expires = timer->it.cpu.expires; |
| 757 | if (unlikely(timer->it.cpu.firing)) { | 713 | if (unlikely(timer->it.cpu.firing)) { |
| @@ -759,7 +715,6 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 759 | ret = TIMER_RETRY; | 715 | ret = TIMER_RETRY; |
| 760 | } else | 716 | } else |
| 761 | list_del_init(&timer->it.cpu.entry); | 717 | list_del_init(&timer->it.cpu.entry); |
| 762 | spin_unlock(&p->sighand->siglock); | ||
| 763 | 718 | ||
| 764 | /* | 719 | /* |
| 765 | * We need to sample the current value to convert the new | 720 | * We need to sample the current value to convert the new |
| @@ -813,6 +768,7 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 813 | * disable this firing since we are already reporting | 768 | * disable this firing since we are already reporting |
| 814 | * it as an overrun (thanks to bump_cpu_timer above). | 769 | * it as an overrun (thanks to bump_cpu_timer above). |
| 815 | */ | 770 | */ |
| 771 | spin_unlock(&p->sighand->siglock); | ||
| 816 | read_unlock(&tasklist_lock); | 772 | read_unlock(&tasklist_lock); |
| 817 | goto out; | 773 | goto out; |
| 818 | } | 774 | } |
| @@ -828,11 +784,11 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 828 | */ | 784 | */ |
| 829 | timer->it.cpu.expires = new_expires; | 785 | timer->it.cpu.expires = new_expires; |
| 830 | if (new_expires.sched != 0 && | 786 | if (new_expires.sched != 0 && |
| 831 | (timer->it_sigev_notify & ~SIGEV_THREAD_ID) != SIGEV_NONE && | ||
| 832 | cpu_time_before(timer->it_clock, val, new_expires)) { | 787 | cpu_time_before(timer->it_clock, val, new_expires)) { |
| 833 | arm_timer(timer, val); | 788 | arm_timer(timer); |
| 834 | } | 789 | } |
| 835 | 790 | ||
| 791 | spin_unlock(&p->sighand->siglock); | ||
| 836 | read_unlock(&tasklist_lock); | 792 | read_unlock(&tasklist_lock); |
| 837 | 793 | ||
| 838 | /* | 794 | /* |
| @@ -853,7 +809,6 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 853 | timer->it_overrun = -1; | 809 | timer->it_overrun = -1; |
| 854 | 810 | ||
| 855 | if (new_expires.sched != 0 && | 811 | if (new_expires.sched != 0 && |
| 856 | (timer->it_sigev_notify & ~SIGEV_THREAD_ID) != SIGEV_NONE && | ||
| 857 | !cpu_time_before(timer->it_clock, val, new_expires)) { | 812 | !cpu_time_before(timer->it_clock, val, new_expires)) { |
| 858 | /* | 813 | /* |
| 859 | * The designated time already passed, so we notify | 814 | * The designated time already passed, so we notify |
| @@ -867,7 +822,7 @@ int posix_cpu_timer_set(struct k_itimer *timer, int flags, | |||
| 867 | out: | 822 | out: |
| 868 | if (old) { | 823 | if (old) { |
| 869 | sample_to_timespec(timer->it_clock, | 824 | sample_to_timespec(timer->it_clock, |
| 870 | timer->it.cpu.incr, &old->it_interval); | 825 | old_incr, &old->it_interval); |
| 871 | } | 826 | } |
| 872 | return ret; | 827 | return ret; |
| 873 | } | 828 | } |
| @@ -908,7 +863,7 @@ void posix_cpu_timer_get(struct k_itimer *timer, struct itimerspec *itp) | |||
| 908 | clear_dead = p->exit_state; | 863 | clear_dead = p->exit_state; |
| 909 | } else { | 864 | } else { |
| 910 | read_lock(&tasklist_lock); | 865 | read_lock(&tasklist_lock); |
| 911 | if (unlikely(p->signal == NULL)) { | 866 | if (unlikely(p->sighand == NULL)) { |
| 912 | /* | 867 | /* |
| 913 | * The process has been reaped. | 868 | * The process has been reaped. |
| 914 | * We can't even collect a sample any more. | 869 | * We can't even collect a sample any more. |
| @@ -927,25 +882,6 @@ void posix_cpu_timer_get(struct k_itimer *timer, struct itimerspec *itp) | |||
| 927 | read_unlock(&tasklist_lock); | 882 | read_unlock(&tasklist_lock); |
| 928 | } | 883 | } |
| 929 | 884 | ||
| 930 | if ((timer->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE) { | ||
| 931 | if (timer->it.cpu.incr.sched == 0 && | ||
| 932 | cpu_time_before(timer->it_clock, | ||
| 933 | timer->it.cpu.expires, now)) { | ||
| 934 | /* | ||
| 935 | * Do-nothing timer expired and has no reload, | ||
| 936 | * so it's as if it was never set. | ||
| 937 | */ | ||
| 938 | timer->it.cpu.expires.sched = 0; | ||
| 939 | itp->it_value.tv_sec = itp->it_value.tv_nsec = 0; | ||
| 940 | return; | ||
| 941 | } | ||
| 942 | /* | ||
| 943 | * Account for any expirations and reloads that should | ||
| 944 | * have happened. | ||
| 945 | */ | ||
| 946 | bump_cpu_timer(timer, now); | ||
| 947 | } | ||
| 948 | |||
| 949 | if (unlikely(clear_dead)) { | 885 | if (unlikely(clear_dead)) { |
| 950 | /* | 886 | /* |
| 951 | * We've noticed that the thread is dead, but | 887 | * We've noticed that the thread is dead, but |
| @@ -1066,16 +1002,9 @@ static void stop_process_timers(struct signal_struct *sig) | |||
| 1066 | struct thread_group_cputimer *cputimer = &sig->cputimer; | 1002 | struct thread_group_cputimer *cputimer = &sig->cputimer; |
| 1067 | unsigned long flags; | 1003 | unsigned long flags; |
| 1068 | 1004 | ||
| 1069 | if (!cputimer->running) | ||
| 1070 | return; | ||
| 1071 | |||
| 1072 | spin_lock_irqsave(&cputimer->lock, flags); | 1005 | spin_lock_irqsave(&cputimer->lock, flags); |
| 1073 | cputimer->running = 0; | 1006 | cputimer->running = 0; |
| 1074 | spin_unlock_irqrestore(&cputimer->lock, flags); | 1007 | spin_unlock_irqrestore(&cputimer->lock, flags); |
| 1075 | |||
| 1076 | sig->cputime_expires.prof_exp = cputime_zero; | ||
| 1077 | sig->cputime_expires.virt_exp = cputime_zero; | ||
| 1078 | sig->cputime_expires.sched_exp = 0; | ||
| 1079 | } | 1008 | } |
| 1080 | 1009 | ||
| 1081 | static u32 onecputick; | 1010 | static u32 onecputick; |
| @@ -1112,6 +1041,23 @@ static void check_cpu_itimer(struct task_struct *tsk, struct cpu_itimer *it, | |||
| 1112 | } | 1041 | } |
| 1113 | } | 1042 | } |
| 1114 | 1043 | ||
| 1044 | /** | ||
| 1045 | * task_cputime_zero - Check a task_cputime struct for all zero fields. | ||
| 1046 | * | ||
| 1047 | * @cputime: The struct to compare. | ||
| 1048 | * | ||
| 1049 | * Checks @cputime to see if all fields are zero. Returns true if all fields | ||
| 1050 | * are zero, false if any field is nonzero. | ||
| 1051 | */ | ||
| 1052 | static inline int task_cputime_zero(const struct task_cputime *cputime) | ||
| 1053 | { | ||
| 1054 | if (cputime_eq(cputime->utime, cputime_zero) && | ||
| 1055 | cputime_eq(cputime->stime, cputime_zero) && | ||
| 1056 | cputime->sum_exec_runtime == 0) | ||
| 1057 | return 1; | ||
| 1058 | return 0; | ||
| 1059 | } | ||
| 1060 | |||
| 1115 | /* | 1061 | /* |
| 1116 | * Check for any per-thread CPU timers that have fired and move them | 1062 | * Check for any per-thread CPU timers that have fired and move them |
| 1117 | * off the tsk->*_timers list onto the firing list. Per-thread timers | 1063 | * off the tsk->*_timers list onto the firing list. Per-thread timers |
| @@ -1129,19 +1075,6 @@ static void check_process_timers(struct task_struct *tsk, | |||
| 1129 | unsigned long soft; | 1075 | unsigned long soft; |
| 1130 | 1076 | ||
| 1131 | /* | 1077 | /* |
| 1132 | * Don't sample the current process CPU clocks if there are no timers. | ||
| 1133 | */ | ||
| 1134 | if (list_empty(&timers[CPUCLOCK_PROF]) && | ||
| 1135 | cputime_eq(sig->it[CPUCLOCK_PROF].expires, cputime_zero) && | ||
| 1136 | sig->rlim[RLIMIT_CPU].rlim_cur == RLIM_INFINITY && | ||
| 1137 | list_empty(&timers[CPUCLOCK_VIRT]) && | ||
| 1138 | cputime_eq(sig->it[CPUCLOCK_VIRT].expires, cputime_zero) && | ||
| 1139 | list_empty(&timers[CPUCLOCK_SCHED])) { | ||
| 1140 | stop_process_timers(sig); | ||
| 1141 | return; | ||
| 1142 | } | ||
| 1143 | |||
| 1144 | /* | ||
| 1145 | * Collect the current process totals. | 1078 | * Collect the current process totals. |
| 1146 | */ | 1079 | */ |
| 1147 | thread_group_cputimer(tsk, &cputime); | 1080 | thread_group_cputimer(tsk, &cputime); |
| @@ -1230,18 +1163,11 @@ static void check_process_timers(struct task_struct *tsk, | |||
| 1230 | } | 1163 | } |
| 1231 | } | 1164 | } |
| 1232 | 1165 | ||
| 1233 | if (!cputime_eq(prof_expires, cputime_zero) && | 1166 | sig->cputime_expires.prof_exp = prof_expires; |
| 1234 | (cputime_eq(sig->cputime_expires.prof_exp, cputime_zero) || | 1167 | sig->cputime_expires.virt_exp = virt_expires; |
| 1235 | cputime_gt(sig->cputime_expires.prof_exp, prof_expires))) | 1168 | sig->cputime_expires.sched_exp = sched_expires; |
| 1236 | sig->cputime_expires.prof_exp = prof_expires; | 1169 | if (task_cputime_zero(&sig->cputime_expires)) |
| 1237 | if (!cputime_eq(virt_expires, cputime_zero) && | 1170 | stop_process_timers(sig); |
| 1238 | (cputime_eq(sig->cputime_expires.virt_exp, cputime_zero) || | ||
| 1239 | cputime_gt(sig->cputime_expires.virt_exp, virt_expires))) | ||
| 1240 | sig->cputime_expires.virt_exp = virt_expires; | ||
| 1241 | if (sched_expires != 0 && | ||
| 1242 | (sig->cputime_expires.sched_exp == 0 || | ||
| 1243 | sig->cputime_expires.sched_exp > sched_expires)) | ||
| 1244 | sig->cputime_expires.sched_exp = sched_expires; | ||
| 1245 | } | 1171 | } |
| 1246 | 1172 | ||
| 1247 | /* | 1173 | /* |
| @@ -1270,9 +1196,10 @@ void posix_cpu_timer_schedule(struct k_itimer *timer) | |||
| 1270 | goto out; | 1196 | goto out; |
| 1271 | } | 1197 | } |
| 1272 | read_lock(&tasklist_lock); /* arm_timer needs it. */ | 1198 | read_lock(&tasklist_lock); /* arm_timer needs it. */ |
| 1199 | spin_lock(&p->sighand->siglock); | ||
| 1273 | } else { | 1200 | } else { |
| 1274 | read_lock(&tasklist_lock); | 1201 | read_lock(&tasklist_lock); |
| 1275 | if (unlikely(p->signal == NULL)) { | 1202 | if (unlikely(p->sighand == NULL)) { |
| 1276 | /* | 1203 | /* |
| 1277 | * The process has been reaped. | 1204 | * The process has been reaped. |
| 1278 | * We can't even collect a sample any more. | 1205 | * We can't even collect a sample any more. |
| @@ -1290,6 +1217,7 @@ void posix_cpu_timer_schedule(struct k_itimer *timer) | |||
| 1290 | clear_dead_task(timer, now); | 1217 | clear_dead_task(timer, now); |
| 1291 | goto out_unlock; | 1218 | goto out_unlock; |
| 1292 | } | 1219 | } |
| 1220 | spin_lock(&p->sighand->siglock); | ||
| 1293 | cpu_timer_sample_group(timer->it_clock, p, &now); | 1221 | cpu_timer_sample_group(timer->it_clock, p, &now); |
| 1294 | bump_cpu_timer(timer, now); | 1222 | bump_cpu_timer(timer, now); |
| 1295 | /* Leave the tasklist_lock locked for the call below. */ | 1223 | /* Leave the tasklist_lock locked for the call below. */ |
| @@ -1298,7 +1226,9 @@ void posix_cpu_timer_schedule(struct k_itimer *timer) | |||
| 1298 | /* | 1226 | /* |
| 1299 | * Now re-arm for the new expiry time. | 1227 | * Now re-arm for the new expiry time. |
| 1300 | */ | 1228 | */ |
| 1301 | arm_timer(timer, now); | 1229 | BUG_ON(!irqs_disabled()); |
| 1230 | arm_timer(timer); | ||
| 1231 | spin_unlock(&p->sighand->siglock); | ||
| 1302 | 1232 | ||
| 1303 | out_unlock: | 1233 | out_unlock: |
| 1304 | read_unlock(&tasklist_lock); | 1234 | read_unlock(&tasklist_lock); |
| @@ -1310,23 +1240,6 @@ out: | |||
| 1310 | } | 1240 | } |
| 1311 | 1241 | ||
| 1312 | /** | 1242 | /** |
| 1313 | * task_cputime_zero - Check a task_cputime struct for all zero fields. | ||
| 1314 | * | ||
| 1315 | * @cputime: The struct to compare. | ||
| 1316 | * | ||
| 1317 | * Checks @cputime to see if all fields are zero. Returns true if all fields | ||
| 1318 | * are zero, false if any field is nonzero. | ||
| 1319 | */ | ||
| 1320 | static inline int task_cputime_zero(const struct task_cputime *cputime) | ||
| 1321 | { | ||
| 1322 | if (cputime_eq(cputime->utime, cputime_zero) && | ||
| 1323 | cputime_eq(cputime->stime, cputime_zero) && | ||
| 1324 | cputime->sum_exec_runtime == 0) | ||
| 1325 | return 1; | ||
| 1326 | return 0; | ||
| 1327 | } | ||
| 1328 | |||
| 1329 | /** | ||
| 1330 | * task_cputime_expired - Compare two task_cputime entities. | 1243 | * task_cputime_expired - Compare two task_cputime entities. |
| 1331 | * | 1244 | * |
| 1332 | * @sample: The task_cputime structure to be checked for expiration. | 1245 | * @sample: The task_cputime structure to be checked for expiration. |
| @@ -1382,7 +1295,7 @@ static inline int fastpath_timer_check(struct task_struct *tsk) | |||
| 1382 | } | 1295 | } |
| 1383 | 1296 | ||
| 1384 | sig = tsk->signal; | 1297 | sig = tsk->signal; |
| 1385 | if (!task_cputime_zero(&sig->cputime_expires)) { | 1298 | if (sig->cputimer.running) { |
| 1386 | struct task_cputime group_sample; | 1299 | struct task_cputime group_sample; |
| 1387 | 1300 | ||
| 1388 | thread_group_cputimer(tsk, &group_sample); | 1301 | thread_group_cputimer(tsk, &group_sample); |
| @@ -1390,7 +1303,7 @@ static inline int fastpath_timer_check(struct task_struct *tsk) | |||
| 1390 | return 1; | 1303 | return 1; |
| 1391 | } | 1304 | } |
| 1392 | 1305 | ||
| 1393 | return sig->rlim[RLIMIT_CPU].rlim_cur != RLIM_INFINITY; | 1306 | return 0; |
| 1394 | } | 1307 | } |
| 1395 | 1308 | ||
| 1396 | /* | 1309 | /* |
| @@ -1419,7 +1332,12 @@ void run_posix_cpu_timers(struct task_struct *tsk) | |||
| 1419 | * put them on the firing list. | 1332 | * put them on the firing list. |
| 1420 | */ | 1333 | */ |
| 1421 | check_thread_timers(tsk, &firing); | 1334 | check_thread_timers(tsk, &firing); |
| 1422 | check_process_timers(tsk, &firing); | 1335 | /* |
| 1336 | * If there are any active process wide timers (POSIX 1.b, itimers, | ||
| 1337 | * RLIMIT_CPU) cputimer must be running. | ||
| 1338 | */ | ||
| 1339 | if (tsk->signal->cputimer.running) | ||
| 1340 | check_process_timers(tsk, &firing); | ||
| 1423 | 1341 | ||
| 1424 | /* | 1342 | /* |
| 1425 | * We must release these locks before taking any timer's lock. | 1343 | * We must release these locks before taking any timer's lock. |
| @@ -1456,21 +1374,23 @@ void run_posix_cpu_timers(struct task_struct *tsk) | |||
| 1456 | } | 1374 | } |
| 1457 | 1375 | ||
| 1458 | /* | 1376 | /* |
| 1459 | * Set one of the process-wide special case CPU timers. | 1377 | * Set one of the process-wide special case CPU timers or RLIMIT_CPU. |
| 1460 | * The tsk->sighand->siglock must be held by the caller. | 1378 | * The tsk->sighand->siglock must be held by the caller. |
| 1461 | * The *newval argument is relative and we update it to be absolute, *oldval | ||
| 1462 | * is absolute and we update it to be relative. | ||
| 1463 | */ | 1379 | */ |
| 1464 | void set_process_cpu_timer(struct task_struct *tsk, unsigned int clock_idx, | 1380 | void set_process_cpu_timer(struct task_struct *tsk, unsigned int clock_idx, |
| 1465 | cputime_t *newval, cputime_t *oldval) | 1381 | cputime_t *newval, cputime_t *oldval) |
| 1466 | { | 1382 | { |
| 1467 | union cpu_time_count now; | 1383 | union cpu_time_count now; |
| 1468 | struct list_head *head; | ||
| 1469 | 1384 | ||
| 1470 | BUG_ON(clock_idx == CPUCLOCK_SCHED); | 1385 | BUG_ON(clock_idx == CPUCLOCK_SCHED); |
| 1471 | cpu_timer_sample_group(clock_idx, tsk, &now); | 1386 | cpu_timer_sample_group(clock_idx, tsk, &now); |
| 1472 | 1387 | ||
| 1473 | if (oldval) { | 1388 | if (oldval) { |
| 1389 | /* | ||
| 1390 | * We are setting itimer. The *oldval is absolute and we update | ||
| 1391 | * it to be relative, *newval argument is relative and we update | ||
| 1392 | * it to be absolute. | ||
| 1393 | */ | ||
| 1474 | if (!cputime_eq(*oldval, cputime_zero)) { | 1394 | if (!cputime_eq(*oldval, cputime_zero)) { |
| 1475 | if (cputime_le(*oldval, now.cpu)) { | 1395 | if (cputime_le(*oldval, now.cpu)) { |
| 1476 | /* Just about to fire. */ | 1396 | /* Just about to fire. */ |
| @@ -1483,33 +1403,21 @@ void set_process_cpu_timer(struct task_struct *tsk, unsigned int clock_idx, | |||
| 1483 | if (cputime_eq(*newval, cputime_zero)) | 1403 | if (cputime_eq(*newval, cputime_zero)) |
| 1484 | return; | 1404 | return; |
| 1485 | *newval = cputime_add(*newval, now.cpu); | 1405 | *newval = cputime_add(*newval, now.cpu); |
| 1486 | |||
| 1487 | /* | ||
| 1488 | * If the RLIMIT_CPU timer will expire before the | ||
| 1489 | * ITIMER_PROF timer, we have nothing else to do. | ||
| 1490 | */ | ||
| 1491 | if (tsk->signal->rlim[RLIMIT_CPU].rlim_cur | ||
| 1492 | < cputime_to_secs(*newval)) | ||
| 1493 | return; | ||
| 1494 | } | 1406 | } |
| 1495 | 1407 | ||
| 1496 | /* | 1408 | /* |
| 1497 | * Check whether there are any process timers already set to fire | 1409 | * Update expiration cache if we are the earliest timer, or eventually |
| 1498 | * before this one. If so, we don't have anything more to do. | 1410 | * RLIMIT_CPU limit is earlier than prof_exp cpu timer expire. |
| 1499 | */ | 1411 | */ |
| 1500 | head = &tsk->signal->cpu_timers[clock_idx]; | 1412 | switch (clock_idx) { |
| 1501 | if (list_empty(head) || | 1413 | case CPUCLOCK_PROF: |
| 1502 | cputime_ge(list_first_entry(head, | 1414 | if (expires_gt(tsk->signal->cputime_expires.prof_exp, *newval)) |
| 1503 | struct cpu_timer_list, entry)->expires.cpu, | ||
| 1504 | *newval)) { | ||
| 1505 | switch (clock_idx) { | ||
| 1506 | case CPUCLOCK_PROF: | ||
| 1507 | tsk->signal->cputime_expires.prof_exp = *newval; | 1415 | tsk->signal->cputime_expires.prof_exp = *newval; |
| 1508 | break; | 1416 | break; |
| 1509 | case CPUCLOCK_VIRT: | 1417 | case CPUCLOCK_VIRT: |
| 1418 | if (expires_gt(tsk->signal->cputime_expires.virt_exp, *newval)) | ||
| 1510 | tsk->signal->cputime_expires.virt_exp = *newval; | 1419 | tsk->signal->cputime_expires.virt_exp = *newval; |
| 1511 | break; | 1420 | break; |
| 1512 | } | ||
| 1513 | } | 1421 | } |
| 1514 | } | 1422 | } |
| 1515 | 1423 | ||
