Home | History | Annotate | Line # | Download | only in kern
kern_clock.c revision 1.120
      1  1.120        ad /*	$NetBSD: kern_clock.c,v 1.120 2008/04/21 00:13:46 ad Exp $	*/
      2   1.52   thorpej 
      3   1.52   thorpej /*-
      4  1.118        ad  * Copyright (c) 2000, 2004, 2006, 2007, 2008 The NetBSD Foundation, Inc.
      5   1.52   thorpej  * All rights reserved.
      6   1.52   thorpej  *
      7   1.52   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.52   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9   1.52   thorpej  * NASA Ames Research Center.
     10   1.94   mycroft  * This code is derived from software contributed to The NetBSD Foundation
     11   1.94   mycroft  * by Charles M. Hannum.
     12   1.52   thorpej  *
     13   1.52   thorpej  * Redistribution and use in source and binary forms, with or without
     14   1.52   thorpej  * modification, are permitted provided that the following conditions
     15   1.52   thorpej  * are met:
     16   1.52   thorpej  * 1. Redistributions of source code must retain the above copyright
     17   1.52   thorpej  *    notice, this list of conditions and the following disclaimer.
     18   1.52   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     19   1.52   thorpej  *    notice, this list of conditions and the following disclaimer in the
     20   1.52   thorpej  *    documentation and/or other materials provided with the distribution.
     21   1.52   thorpej  * 3. All advertising materials mentioning features or use of this software
     22   1.52   thorpej  *    must display the following acknowledgement:
     23   1.52   thorpej  *	This product includes software developed by the NetBSD
     24   1.52   thorpej  *	Foundation, Inc. and its contributors.
     25   1.52   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     26   1.52   thorpej  *    contributors may be used to endorse or promote products derived
     27   1.52   thorpej  *    from this software without specific prior written permission.
     28   1.52   thorpej  *
     29   1.52   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     30   1.52   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     31   1.52   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     32   1.52   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     33   1.52   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     34   1.52   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     35   1.52   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     36   1.52   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     37   1.52   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     38   1.52   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     39   1.52   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     40   1.52   thorpej  */
     41   1.19       cgd 
     42   1.19       cgd /*-
     43   1.19       cgd  * Copyright (c) 1982, 1986, 1991, 1993
     44   1.19       cgd  *	The Regents of the University of California.  All rights reserved.
     45   1.19       cgd  * (c) UNIX System Laboratories, Inc.
     46   1.19       cgd  * All or some portions of this file are derived from material licensed
     47   1.19       cgd  * to the University of California by American Telephone and Telegraph
     48   1.19       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     49   1.19       cgd  * the permission of UNIX System Laboratories, Inc.
     50   1.19       cgd  *
     51   1.19       cgd  * Redistribution and use in source and binary forms, with or without
     52   1.19       cgd  * modification, are permitted provided that the following conditions
     53   1.19       cgd  * are met:
     54   1.19       cgd  * 1. Redistributions of source code must retain the above copyright
     55   1.19       cgd  *    notice, this list of conditions and the following disclaimer.
     56   1.19       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     57   1.19       cgd  *    notice, this list of conditions and the following disclaimer in the
     58   1.19       cgd  *    documentation and/or other materials provided with the distribution.
     59   1.87       agc  * 3. Neither the name of the University nor the names of its contributors
     60   1.19       cgd  *    may be used to endorse or promote products derived from this software
     61   1.19       cgd  *    without specific prior written permission.
     62   1.19       cgd  *
     63   1.19       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     64   1.19       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     65   1.19       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     66   1.19       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     67   1.19       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     68   1.19       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     69   1.19       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     70   1.19       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     71   1.19       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     72   1.19       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     73   1.19       cgd  * SUCH DAMAGE.
     74   1.19       cgd  *
     75   1.19       cgd  *	@(#)kern_clock.c	8.5 (Berkeley) 1/21/94
     76   1.19       cgd  */
     77   1.78     lukem 
     78   1.78     lukem #include <sys/cdefs.h>
     79  1.120        ad __KERNEL_RCSID(0, "$NetBSD: kern_clock.c,v 1.120 2008/04/21 00:13:46 ad Exp $");
     80   1.44  jonathan 
     81   1.44  jonathan #include "opt_ntp.h"
     82   1.86    martin #include "opt_multiprocessor.h"
     83   1.80    briggs #include "opt_perfctrs.h"
     84   1.19       cgd 
     85   1.19       cgd #include <sys/param.h>
     86   1.19       cgd #include <sys/systm.h>
     87   1.19       cgd #include <sys/callout.h>
     88   1.19       cgd #include <sys/kernel.h>
     89   1.19       cgd #include <sys/proc.h>
     90   1.19       cgd #include <sys/resourcevar.h>
     91   1.25  christos #include <sys/signalvar.h>
     92   1.26  christos #include <sys/sysctl.h>
     93   1.27  jonathan #include <sys/timex.h>
     94   1.45      ross #include <sys/sched.h>
     95   1.82   thorpej #include <sys/time.h>
     96   1.99    kardel #include <sys/timetc.h>
     97  1.109        ad #include <sys/cpu.h>
     98  1.118        ad #include <sys/atomic.h>
     99  1.118        ad 
    100  1.118        ad #include <uvm/uvm_extern.h>
    101   1.25  christos 
    102   1.19       cgd #ifdef GPROF
    103   1.19       cgd #include <sys/gmon.h>
    104   1.19       cgd #endif
    105   1.19       cgd 
    106   1.19       cgd /*
    107   1.19       cgd  * Clock handling routines.
    108   1.19       cgd  *
    109   1.19       cgd  * This code is written to operate with two timers that run independently of
    110   1.19       cgd  * each other.  The main clock, running hz times per second, is used to keep
    111   1.19       cgd  * track of real time.  The second timer handles kernel and user profiling,
    112   1.19       cgd  * and does resource use estimation.  If the second timer is programmable,
    113   1.19       cgd  * it is randomized to avoid aliasing between the two clocks.  For example,
    114   1.90       wiz  * the randomization prevents an adversary from always giving up the CPU
    115   1.19       cgd  * just before its quantum expires.  Otherwise, it would never accumulate
    116   1.90       wiz  * CPU ticks.  The mean frequency of the second timer is stathz.
    117   1.19       cgd  *
    118   1.19       cgd  * If no second timer exists, stathz will be zero; in this case we drive
    119   1.19       cgd  * profiling and statistics off the main clock.  This WILL NOT be accurate;
    120   1.19       cgd  * do not do it unless absolutely necessary.
    121   1.19       cgd  *
    122   1.19       cgd  * The statistics clock may (or may not) be run at a higher rate while
    123   1.19       cgd  * profiling.  This profile clock runs at profhz.  We require that profhz
    124   1.19       cgd  * be an integral multiple of stathz.
    125   1.19       cgd  *
    126   1.19       cgd  * If the statistics clock is running fast, it must be divided by the ratio
    127   1.19       cgd  * profhz/stathz for statistics.  (For profiling, every tick counts.)
    128   1.19       cgd  */
    129   1.19       cgd 
    130   1.19       cgd int	stathz;
    131   1.19       cgd int	profhz;
    132   1.80    briggs int	profsrc;
    133   1.75    simonb int	schedhz;
    134   1.19       cgd int	profprocs;
    135  1.100  drochner int	hardclock_ticks;
    136  1.114        ad static int hardscheddiv; /* hard => sched divider (used if schedhz == 0) */
    137   1.70  sommerfe static int psdiv;			/* prof => stat divider */
    138   1.22       cgd int	psratio;			/* ratio: prof / stat */
    139   1.19       cgd 
    140   1.99    kardel static u_int get_intr_timecount(struct timecounter *);
    141   1.99    kardel 
    142   1.99    kardel static struct timecounter intr_timecounter = {
    143   1.99    kardel 	get_intr_timecount,	/* get_timecount */
    144   1.99    kardel 	0,			/* no poll_pps */
    145   1.99    kardel 	~0u,			/* counter_mask */
    146   1.99    kardel 	0,		        /* frequency */
    147   1.99    kardel 	"clockinterrupt",	/* name */
    148  1.102  christos 	0,			/* quality - minimum implementation level for a clock */
    149  1.102  christos 	NULL,			/* prev */
    150  1.102  christos 	NULL,			/* next */
    151   1.99    kardel };
    152   1.99    kardel 
    153   1.99    kardel static u_int
    154  1.104      yamt get_intr_timecount(struct timecounter *tc)
    155   1.99    kardel {
    156  1.104      yamt 
    157  1.100  drochner 	return (u_int)hardclock_ticks;
    158   1.99    kardel }
    159   1.73   thorpej 
    160   1.66   thorpej /*
    161   1.19       cgd  * Initialize clock frequencies and start both clocks running.
    162   1.19       cgd  */
    163   1.19       cgd void
    164   1.63   thorpej initclocks(void)
    165   1.19       cgd {
    166   1.55  augustss 	int i;
    167   1.19       cgd 
    168   1.19       cgd 	/*
    169   1.19       cgd 	 * Set divisors to 1 (normal case) and let the machine-specific
    170   1.19       cgd 	 * code do its bit.
    171   1.19       cgd 	 */
    172   1.70  sommerfe 	psdiv = 1;
    173   1.99    kardel 	/*
    174   1.99    kardel 	 * provide minimum default time counter
    175   1.99    kardel 	 * will only run at interrupt resolution
    176   1.99    kardel 	 */
    177   1.99    kardel 	intr_timecounter.tc_frequency = hz;
    178   1.99    kardel 	tc_init(&intr_timecounter);
    179   1.19       cgd 	cpu_initclocks();
    180   1.19       cgd 
    181   1.19       cgd 	/*
    182  1.108      yamt 	 * Compute profhz and stathz, fix profhz if needed.
    183   1.19       cgd 	 */
    184   1.19       cgd 	i = stathz ? stathz : hz;
    185   1.19       cgd 	if (profhz == 0)
    186   1.19       cgd 		profhz = i;
    187   1.19       cgd 	psratio = profhz / i;
    188   1.91      yamt 	if (schedhz == 0) {
    189   1.91      yamt 		/* 16Hz is best */
    190  1.114        ad 		hardscheddiv = hz / 16;
    191  1.114        ad 		if (hardscheddiv <= 0)
    192  1.114        ad 			panic("hardscheddiv");
    193   1.91      yamt 	}
    194   1.31   mycroft 
    195   1.19       cgd }
    196   1.19       cgd 
    197   1.19       cgd /*
    198   1.19       cgd  * The real-time timer, interrupting hz times per second.
    199   1.19       cgd  */
    200   1.19       cgd void
    201   1.63   thorpej hardclock(struct clockframe *frame)
    202   1.19       cgd {
    203   1.82   thorpej 	struct lwp *l;
    204  1.120        ad 	struct cpu_info *ci;
    205   1.19       cgd 
    206  1.120        ad 	ci = curcpu();
    207  1.114        ad 	l = ci->ci_data.cpu_onproc;
    208  1.120        ad 
    209  1.120        ad 	timer_tick(l, CLKF_USERMODE(frame));
    210   1.19       cgd 
    211   1.19       cgd 	/*
    212   1.19       cgd 	 * If no separate statistics clock is available, run it from here.
    213   1.19       cgd 	 */
    214   1.19       cgd 	if (stathz == 0)
    215   1.19       cgd 		statclock(frame);
    216  1.114        ad 	/*
    217  1.114        ad 	 * If no separate schedclock is provided, call it here
    218  1.114        ad 	 * at about 16 Hz.
    219  1.114        ad 	 */
    220  1.114        ad 	if (schedhz == 0) {
    221  1.114        ad 		if ((int)(--ci->ci_schedstate.spc_schedticks) <= 0) {
    222  1.114        ad 			schedclock(l);
    223  1.114        ad 			ci->ci_schedstate.spc_schedticks = hardscheddiv;
    224  1.114        ad 		}
    225  1.114        ad 	}
    226  1.108      yamt 	if ((--ci->ci_schedstate.spc_ticks) <= 0)
    227  1.108      yamt 		sched_tick(ci);
    228   1.93     perry 
    229   1.60   thorpej #if defined(MULTIPROCESSOR)
    230   1.60   thorpej 	/*
    231   1.60   thorpej 	 * If we are not the primary CPU, we're not allowed to do
    232   1.60   thorpej 	 * any more work.
    233   1.60   thorpej 	 */
    234   1.70  sommerfe 	if (CPU_IS_PRIMARY(ci) == 0)
    235   1.60   thorpej 		return;
    236   1.60   thorpej #endif
    237   1.60   thorpej 
    238   1.99    kardel 	hardclock_ticks++;
    239   1.99    kardel 
    240   1.99    kardel 	tc_ticktock();
    241   1.19       cgd 
    242   1.19       cgd 	/*
    243  1.106        ad 	 * Update real-time timeout queue.  Callouts are processed at a
    244  1.106        ad 	 * very low CPU priority, so we don't keep the relatively high
    245  1.106        ad 	 * clock interrupt priority any longer than necessary.
    246  1.106        ad 	 */
    247  1.109        ad 	callout_hardclock();
    248   1.19       cgd }
    249   1.19       cgd 
    250   1.19       cgd /*
    251   1.19       cgd  * Start profiling on a process.
    252   1.19       cgd  *
    253   1.19       cgd  * Kernel profiling passes proc0 which never exits and hence
    254   1.19       cgd  * keeps the profile clock running constantly.
    255   1.19       cgd  */
    256   1.19       cgd void
    257   1.63   thorpej startprofclock(struct proc *p)
    258   1.19       cgd {
    259   1.19       cgd 
    260  1.109        ad 	KASSERT(mutex_owned(&p->p_stmutex));
    261  1.105        ad 
    262  1.105        ad 	if ((p->p_stflag & PST_PROFIL) == 0) {
    263  1.105        ad 		p->p_stflag |= PST_PROFIL;
    264   1.80    briggs 		/*
    265   1.80    briggs 		 * This is only necessary if using the clock as the
    266   1.80    briggs 		 * profiling source.
    267   1.80    briggs 		 */
    268   1.70  sommerfe 		if (++profprocs == 1 && stathz != 0)
    269   1.70  sommerfe 			psdiv = psratio;
    270   1.19       cgd 	}
    271   1.19       cgd }
    272   1.19       cgd 
    273   1.19       cgd /*
    274   1.19       cgd  * Stop profiling on a process.
    275   1.19       cgd  */
    276   1.19       cgd void
    277   1.63   thorpej stopprofclock(struct proc *p)
    278   1.19       cgd {
    279   1.19       cgd 
    280  1.109        ad 	KASSERT(mutex_owned(&p->p_stmutex));
    281  1.105        ad 
    282  1.105        ad 	if (p->p_stflag & PST_PROFIL) {
    283  1.105        ad 		p->p_stflag &= ~PST_PROFIL;
    284   1.80    briggs 		/*
    285   1.80    briggs 		 * This is only necessary if using the clock as the
    286   1.80    briggs 		 * profiling source.
    287   1.80    briggs 		 */
    288   1.70  sommerfe 		if (--profprocs == 0 && stathz != 0)
    289   1.70  sommerfe 			psdiv = 1;
    290   1.19       cgd 	}
    291   1.19       cgd }
    292   1.19       cgd 
    293   1.80    briggs #if defined(PERFCTRS)
    294   1.80    briggs /*
    295   1.80    briggs  * Independent profiling "tick" in case we're using a separate
    296   1.80    briggs  * clock or profiling event source.  Currently, that's just
    297   1.80    briggs  * performance counters--hence the wrapper.
    298   1.80    briggs  */
    299   1.80    briggs void
    300   1.80    briggs proftick(struct clockframe *frame)
    301   1.80    briggs {
    302   1.80    briggs #ifdef GPROF
    303   1.93     perry         struct gmonparam *g;
    304   1.93     perry         intptr_t i;
    305   1.80    briggs #endif
    306  1.105        ad 	struct lwp *l;
    307   1.80    briggs 	struct proc *p;
    308   1.80    briggs 
    309  1.114        ad 	l = curcpu()->ci_data.cpu_onproc;
    310  1.105        ad 	p = (l ? l->l_proc : NULL);
    311   1.80    briggs 	if (CLKF_USERMODE(frame)) {
    312  1.105        ad 		mutex_spin_enter(&p->p_stmutex);
    313  1.105        ad 		if (p->p_stflag & PST_PROFIL)
    314  1.105        ad 			addupc_intr(l, CLKF_PC(frame));
    315  1.105        ad 		mutex_spin_exit(&p->p_stmutex);
    316   1.80    briggs 	} else {
    317   1.80    briggs #ifdef GPROF
    318   1.80    briggs 		g = &_gmonparam;
    319   1.80    briggs 		if (g->state == GMON_PROF_ON) {
    320   1.80    briggs 			i = CLKF_PC(frame) - g->lowpc;
    321   1.80    briggs 			if (i < g->textsize) {
    322   1.80    briggs 				i /= HISTFRACTION * sizeof(*g->kcount);
    323   1.80    briggs 				g->kcount[i]++;
    324   1.80    briggs 			}
    325   1.80    briggs 		}
    326   1.80    briggs #endif
    327  1.111        ad #ifdef LWP_PC
    328  1.111        ad 		if (p != NULL && (p->p_stflag & PST_PROFIL) != 0)
    329  1.112        ad 			addupc_intr(l, LWP_PC(l));
    330   1.93     perry #endif
    331   1.80    briggs 	}
    332   1.80    briggs }
    333   1.80    briggs #endif
    334   1.80    briggs 
    335  1.108      yamt void
    336  1.108      yamt schedclock(struct lwp *l)
    337  1.108      yamt {
    338  1.118        ad 	struct cpu_info *ci;
    339  1.118        ad 
    340  1.118        ad 	ci = l->l_cpu;
    341  1.118        ad 
    342  1.118        ad 	/* Accumulate syscall and context switch counts. */
    343  1.119        ad 	atomic_add_int((unsigned *)&uvmexp.swtch, ci->ci_data.cpu_nswtch);
    344  1.118        ad 	ci->ci_data.cpu_nswtch = 0;
    345  1.119        ad 	atomic_add_int((unsigned *)&uvmexp.syscalls, ci->ci_data.cpu_nsyscall);
    346  1.118        ad 	ci->ci_data.cpu_nsyscall = 0;
    347  1.108      yamt 
    348  1.108      yamt 	if ((l->l_flag & LW_IDLE) != 0)
    349  1.108      yamt 		return;
    350  1.108      yamt 
    351  1.108      yamt 	sched_schedclock(l);
    352  1.108      yamt }
    353  1.108      yamt 
    354   1.19       cgd /*
    355   1.19       cgd  * Statistics clock.  Grab profile sample, and if divider reaches 0,
    356   1.19       cgd  * do process and kernel statistics.
    357   1.19       cgd  */
    358   1.19       cgd void
    359   1.63   thorpej statclock(struct clockframe *frame)
    360   1.19       cgd {
    361   1.19       cgd #ifdef GPROF
    362   1.55  augustss 	struct gmonparam *g;
    363   1.68       eeh 	intptr_t i;
    364   1.19       cgd #endif
    365   1.60   thorpej 	struct cpu_info *ci = curcpu();
    366   1.60   thorpej 	struct schedstate_percpu *spc = &ci->ci_schedstate;
    367   1.55  augustss 	struct proc *p;
    368   1.98  christos 	struct lwp *l;
    369   1.19       cgd 
    370   1.70  sommerfe 	/*
    371   1.70  sommerfe 	 * Notice changes in divisor frequency, and adjust clock
    372   1.70  sommerfe 	 * frequency accordingly.
    373   1.70  sommerfe 	 */
    374   1.70  sommerfe 	if (spc->spc_psdiv != psdiv) {
    375   1.70  sommerfe 		spc->spc_psdiv = psdiv;
    376   1.70  sommerfe 		spc->spc_pscnt = psdiv;
    377   1.70  sommerfe 		if (psdiv == 1) {
    378   1.70  sommerfe 			setstatclockrate(stathz);
    379   1.70  sommerfe 		} else {
    380   1.93     perry 			setstatclockrate(profhz);
    381   1.70  sommerfe 		}
    382   1.70  sommerfe 	}
    383  1.114        ad 	l = ci->ci_data.cpu_onproc;
    384  1.108      yamt 	if ((l->l_flag & LW_IDLE) != 0) {
    385  1.108      yamt 		/*
    386  1.108      yamt 		 * don't account idle lwps as swapper.
    387  1.108      yamt 		 */
    388  1.108      yamt 		p = NULL;
    389  1.108      yamt 	} else {
    390  1.108      yamt 		p = l->l_proc;
    391  1.105        ad 		mutex_spin_enter(&p->p_stmutex);
    392  1.108      yamt 	}
    393  1.108      yamt 
    394   1.19       cgd 	if (CLKF_USERMODE(frame)) {
    395  1.105        ad 		if ((p->p_stflag & PST_PROFIL) && profsrc == PROFSRC_CLOCK)
    396  1.105        ad 			addupc_intr(l, CLKF_PC(frame));
    397  1.105        ad 		if (--spc->spc_pscnt > 0) {
    398  1.105        ad 			mutex_spin_exit(&p->p_stmutex);
    399   1.19       cgd 			return;
    400  1.105        ad 		}
    401  1.105        ad 
    402   1.19       cgd 		/*
    403   1.19       cgd 		 * Came from user mode; CPU was in user state.
    404   1.19       cgd 		 * If this process is being profiled record the tick.
    405   1.19       cgd 		 */
    406   1.19       cgd 		p->p_uticks++;
    407   1.19       cgd 		if (p->p_nice > NZERO)
    408   1.60   thorpej 			spc->spc_cp_time[CP_NICE]++;
    409   1.19       cgd 		else
    410   1.60   thorpej 			spc->spc_cp_time[CP_USER]++;
    411   1.19       cgd 	} else {
    412   1.19       cgd #ifdef GPROF
    413   1.19       cgd 		/*
    414   1.19       cgd 		 * Kernel statistics are just like addupc_intr, only easier.
    415   1.19       cgd 		 */
    416   1.19       cgd 		g = &_gmonparam;
    417   1.80    briggs 		if (profsrc == PROFSRC_CLOCK && g->state == GMON_PROF_ON) {
    418   1.19       cgd 			i = CLKF_PC(frame) - g->lowpc;
    419   1.19       cgd 			if (i < g->textsize) {
    420   1.19       cgd 				i /= HISTFRACTION * sizeof(*g->kcount);
    421   1.19       cgd 				g->kcount[i]++;
    422   1.19       cgd 			}
    423   1.19       cgd 		}
    424   1.19       cgd #endif
    425   1.82   thorpej #ifdef LWP_PC
    426  1.108      yamt 		if (p != NULL && profsrc == PROFSRC_CLOCK &&
    427  1.108      yamt 		    (p->p_stflag & PST_PROFIL)) {
    428  1.105        ad 			addupc_intr(l, LWP_PC(l));
    429  1.108      yamt 		}
    430   1.72   mycroft #endif
    431  1.105        ad 		if (--spc->spc_pscnt > 0) {
    432  1.105        ad 			if (p != NULL)
    433  1.105        ad 				mutex_spin_exit(&p->p_stmutex);
    434   1.19       cgd 			return;
    435  1.105        ad 		}
    436   1.19       cgd 		/*
    437   1.19       cgd 		 * Came from kernel mode, so we were:
    438   1.19       cgd 		 * - handling an interrupt,
    439   1.19       cgd 		 * - doing syscall or trap work on behalf of the current
    440   1.19       cgd 		 *   user process, or
    441   1.19       cgd 		 * - spinning in the idle loop.
    442   1.19       cgd 		 * Whichever it is, charge the time as appropriate.
    443   1.19       cgd 		 * Note that we charge interrupts to the current process,
    444   1.19       cgd 		 * regardless of whether they are ``for'' that process,
    445   1.19       cgd 		 * so that we know how much of its real time was spent
    446   1.19       cgd 		 * in ``non-process'' (i.e., interrupt) work.
    447   1.19       cgd 		 */
    448  1.114        ad 		if (CLKF_INTR(frame) || (curlwp->l_pflag & LP_INTR) != 0) {
    449  1.108      yamt 			if (p != NULL) {
    450   1.19       cgd 				p->p_iticks++;
    451  1.108      yamt 			}
    452   1.60   thorpej 			spc->spc_cp_time[CP_INTR]++;
    453   1.19       cgd 		} else if (p != NULL) {
    454   1.19       cgd 			p->p_sticks++;
    455   1.60   thorpej 			spc->spc_cp_time[CP_SYS]++;
    456  1.108      yamt 		} else {
    457   1.60   thorpej 			spc->spc_cp_time[CP_IDLE]++;
    458  1.108      yamt 		}
    459   1.19       cgd 	}
    460   1.70  sommerfe 	spc->spc_pscnt = psdiv;
    461   1.19       cgd 
    462   1.97      elad 	if (p != NULL) {
    463  1.108      yamt 		++l->l_cpticks;
    464  1.105        ad 		mutex_spin_exit(&p->p_stmutex);
    465  1.108      yamt 	}
    466   1.19       cgd }
    467