Searched refs:nice (Results 1 - 25 of 25) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/cpufreq/
H A Dcpufreq_conservative.c110 add_nice = kstat_cpu(cpu).cpustat.nice;
H A Dcpufreq_ondemand.c105 retval = cputime64_add(retval, kstat_cpu(cpu).cpustat.nice);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/macintosh/
H A Drack-meter.c90 retval = cputime64_add(retval, kstat_cpu(cpu).cpustat.nice);
264 * play very nice with CPU hotplug neither but we don't do that
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/appldata/
H A Dappldata_os.c112 P_DEBUG("cpu%u : user = %u, nice = %u, system = %u, "
157 cputime_to_jiffies(kstat_cpu(i).cpustat.nice);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/paride/
H A Dpcd.c69 nice This parameter controls the driver's use of
80 pcd.nice
117 static int nice = 0; variable
148 module_param(nice, int, 0);
674 printk("%s: %s version %s, major %d, nice %d\n",
675 name, name, PCD_VERSION, major, nice);
734 ps_set_intr(do_pcd_read, NULL, 0, nice);
789 ps_set_intr(do_pcd_read_drq, pcd_ready, PCD_TMO, nice);
H A Dpd.c86 nice This parameter controls the driver's use of
98 pd.nice
132 static int nice = 0; variable
164 module_param(nice, int, 0);
360 if (!nice)
363 schedule_delayed_work(&fsm_tq, nice-1);
916 printk("%s: %s version %s, major %d, cluster %d, nice %d\n",
917 name, name, PD_VERSION, major, cluster, nice);
H A Dpf.c84 nice This parameter controls the driver's use of
96 pf.nice
131 static int nice = 0; variable
163 module_param(nice, int, 0);
688 printk("%s: %s version %s, major %d, cluster %d, nice %d\n",
689 name, name, PF_VERSION, major, cluster, nice);
830 ps_set_intr(do_pf_read_start, NULL, 0, nice);
848 ps_set_intr(do_pf_read_drq, pf_ready, PF_TMO, nice);
876 ps_set_intr(do_pf_write_start, NULL, 0, nice);
911 ps_set_intr(do_pf_write_done, pf_ready, PF_TMO, nice);
[all...]
H A Dpseudo.h13 int nice )
19 If nice is 1, the test will done approximately once a
20 jiffy. If nice is 0, the test will also be done whenever
22 nice is greater than 1, the test will be done once every
23 (nice-1) jiffies.
30 1.02 1998.12.14 Added support for nice > 1
52 int timeout, int nice)
61 ps_nice = nice;
50 ps_set_intr(void (*continuation)(void), int (*ready)(void), int timeout, int nice) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/solaris/
H A Dsystbl.S60 .word CHAIN(nice) /* nice d 34 */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/xtensa/kernel/
H A Dhead.S96 /* Clear CCOUNT (not really necessary, but nice) */
98 wsr a0, CCOUNT # not really necessary, but nice
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dsyscall_table.S101 ENTRY_SAME(nice)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/proc/
H A Darray.c385 long priority, nice; local
474 /* scale priority and nice values from timeslices to -20..20 */
475 /* to make it look like a "normal" Unix priority/nice value */
477 nice = task_nice(task);
508 nice,
H A Dproc_misc.c444 cputime64_t user, nice, system, idle, iowait, irq, softirq, steal; local
448 user = nice = system = idle = iowait =
459 nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
473 (unsigned long long)cputime64_to_clock_t(nice),
484 nice = kstat_cpu(i).cpustat.nice;
496 (unsigned long long)cputime64_to_clock_t(nice),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/include/
H A Dapplets.h243 USE_NICE(APPLET(nice, _BB_DIR_BIN, _BB_SUID_NEVER))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/runit/
H A Dchpst.c305 if (nice(nicelvl) == -1)
306 bb_perror_msg_and_die("nice");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dsecurity.h582 * Check permission before setting the nice value of @p to @nice.
584 * @nice contains the new nice value.
1269 int (*task_setnice) (struct task_struct * p, int nice);
1915 static inline int security_task_setnice (struct task_struct *p, int nice) argument
1917 return security_ops->task_setnice (p, nice);
2586 static inline int security_task_setnice (struct task_struct *p, int nice) argument
H A Dkernel_stat.h19 cputime64_t nice; member in struct:cpu_usage_stat
H A Dsched.h682 * Increase resolution of nice-level calculations:
791 * A runqueue laden with a single nice 0 task scores a weighted_cpuload of
793 * task of nice 0 or enough lower priority tasks to bring up the
1452 extern void set_user_nice(struct task_struct *p, long nice);
1455 extern int can_nice(const struct task_struct *p, const int nice);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dsched.c21 * 2007-05-05 Load balancing (smp-nice) and other improvements
81 * Convert user-nice values [ -20 ... 0 ... 19 ]
85 #define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
90 * 'User priority' is the nice value converted to something we
791 * of tasks with abnormal "nice" values across CPUs the contribution that
793 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
803 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
804 * nice
4065 set_user_nice(struct task_struct *p, long nice) argument
4121 can_nice(const struct task_struct *p, const int nice) argument
4141 long nice, retval; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dsystbl.h40 COMPAT_SYS_SPU(nice)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/
H A Ddummy.c516 static int dummy_task_setnice (struct task_struct *p, int nice) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/
H A Dhooks.c2813 static int selinux_task_setnice(struct task_struct *p, int nice) argument
2817 rc = secondary_ops->task_setnice(p, nice);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/build-aux/
H A Dtexinfo.tex7715 % abbreviation. It would be nice if we could set up a hyphenation file.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/Test/
H A DMore.pm921 The nice part about todo tests, as opposed to simply commenting out a
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/DB_File/
H A DDB_File.xs1665 # These would be nice for RECNO

Completed in 235 milliseconds