Searched refs:nice (Results 1 - 6 of 6) sorted by relevance

/drivers/block/paride/
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
H A Dpf.c84 nice This parameter controls the driver's use of
96 pf.nice
133 static int nice = 0; variable
167 module_param(nice, int, 0);
703 printk("%s: %s version %s, major %d, cluster %d, nice %d\n",
704 name, name, PF_VERSION, major, cluster, nice);
849 ps_set_intr(do_pf_read_start, NULL, 0, nice);
867 ps_set_intr(do_pf_read_drq, pf_ready, PF_TMO, nice);
895 ps_set_intr(do_pf_write_start, NULL, 0, nice);
930 ps_set_intr(do_pf_write_done, pf_ready, PF_TMO, nice);
[all...]
H A Dpcd.c69 nice This parameter controls the driver's use of
80 pcd.nice
117 static int nice = 0; variable
150 module_param(nice, int, 0);
690 printk("%s: %s version %s, major %d, nice %d\n",
691 name, name, PCD_VERSION, major, nice);
752 ps_set_intr(do_pcd_read, NULL, 0, nice);
810 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
133 static int nice = 0; variable
168 module_param(nice, int, 0);
364 if (!nice)
367 schedule_delayed_work(&fsm_tq, nice-1);
924 printk("%s: %s version %s, major %d, cluster %d, nice %d\n",
925 name, name, PD_VERSION, major, cluster, nice);
/drivers/gpu/drm/omapdrm/
H A Domap_dmm_tiler.c806 static void text_map(char **map, int xdiv, char *nice, int yd, int x0, int x1) argument
809 int w = (map_width(xdiv, x0, x1) - strlen(nice)) / 2;
812 while (*nice)
813 *p++ = *nice++;
817 static void map_1d_info(char **map, int xdiv, int ydiv, char *nice, argument
820 sprintf(nice, "%dK", tcm_sizeof(*a) * 4);
822 text_map(map, xdiv, nice, (a->p0.y + a->p1.y) / 2 / ydiv, 0,
825 if (strlen(nice) < map_width(xdiv, a->p0.x, 256 - 1))
826 text_map(map, xdiv, nice, a->p0.y / ydiv,
828 else if (strlen(nice) < map_widt
836 map_2d_info(char **map, int xdiv, int ydiv, char *nice, struct tcm_area *a) argument
855 char nice[128]; local
[all...]
/drivers/staging/android/
H A Dbinder.c436 static void binder_set_nice(long nice) argument
440 if (can_nice(current, nice)) {
441 set_user_nice(current, nice);
446 "%d: nice value %ld not allowed use %ld instead\n",
447 current->pid, nice, min_nice);

Completed in 327 milliseconds