Skip to content

Commit bd7c8ff

Browse files
anna-marialxKAGA-KOKO
authored andcommitted
treewide: Fix wrong singular form of jiffies in comments
There are several comments all over the place, which uses a wrong singular form of jiffies. Replace 'jiffie' by 'jiffy'. No functional change. Signed-off-by: Anna-Maria Behnsen <anna-maria@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> # m68k Link: https://lore.kernel.org/all/20240904-devel-anna-maria-b4-timers-flseep-v1-3-e98760256370@linutronix.de
1 parent 662a1bf commit bd7c8ff

File tree

24 files changed

+31
-31
lines changed

24 files changed

+31
-31
lines changed

Documentation/admin-guide/media/vivid.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ and an HDMI input, one input for each input type. Those are described in more
328328
detail below.
329329

330330
Special attention has been given to the rate at which new frames become
331-
available. The jitter will be around 1 jiffie (that depends on the HZ
331+
available. The jitter will be around 1 jiffy (that depends on the HZ
332332
configuration of your kernel, so usually 1/100, 1/250 or 1/1000 of a second),
333333
but the long-term behavior is exactly following the framerate. So a
334334
framerate of 59.94 Hz is really different from 60 Hz. If the framerate

Documentation/timers/timers-howto.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ it really need to delay in atomic context?" If so...
1919

2020
ATOMIC CONTEXT:
2121
You must use the `*delay` family of functions. These
22-
functions use the jiffie estimation of clock speed
22+
functions use the jiffy estimation of clock speed
2323
and will busy wait for enough loop cycles to achieve
2424
the desired delay:
2525

Documentation/translations/sp_SP/scheduler/sched-design-CFS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ para que se ejecute, y la tarea en ejecución es interrumpida.
109109
==================================
110110

111111
CFS usa una granularidad de nanosegundos y no depende de ningún
112-
jiffie o detalles como HZ. De este modo, el gestor de tareas CFS no tiene
112+
jiffy o detalles como HZ. De este modo, el gestor de tareas CFS no tiene
113113
noción de "ventanas de tiempo" de la forma en que tenía el gestor de
114114
tareas previo, y tampoco tiene heurísticos. Únicamente hay un parámetro
115115
central ajustable (se ha de cambiar en CONFIG_SCHED_DEBUG):

arch/arm/mach-versatile/spc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
/*
7575
* Even though the SPC takes max 3-5 ms to complete any OPP/COMMS
76-
* operation, the operation could start just before jiffie is about
76+
* operation, the operation could start just before jiffy is about
7777
* to be incremented. So setting timeout value of 20ms = 2jiffies@100Hz
7878
*/
7979
#define TIMEOUT_US 20000

arch/m68k/q40/q40ints.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ void __init q40_init_IRQ(void)
106106
* this stuff doesn't really belong here..
107107
*/
108108

109-
int ql_ticks; /* 200Hz ticks since last jiffie */
109+
int ql_ticks; /* 200Hz ticks since last jiffy */
110110
static int sound_ticks;
111111

112112
#define SVOL 45

arch/x86/kernel/cpu/mce/dev-mcelog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ static ssize_t mce_chrdev_write(struct file *filp, const char __user *ubuf,
314314

315315
/*
316316
* Need to give user space some time to set everything up,
317-
* so do it a jiffie or two later everywhere.
317+
* so do it a jiffy or two later everywhere.
318318
*/
319319
schedule_timeout(2);
320320

drivers/char/ipmi/ipmi_ssif.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ static void msg_written_handler(struct ssif_info *ssif_info, int result,
980980
ipmi_ssif_unlock_cond(ssif_info, flags);
981981
start_get(ssif_info);
982982
} else {
983-
/* Wait a jiffie then request the next message */
983+
/* Wait a jiffy then request the next message */
984984
ssif_info->waiting_alert = true;
985985
ssif_info->retries_left = SSIF_RECV_RETRIES;
986986
if (!ssif_info->stopping)

drivers/dma-buf/st-dma-fence.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ static int test_wait_timeout(void *arg)
402402

403403
if (dma_fence_wait_timeout(wt.f, false, 2) == -ETIME) {
404404
if (timer_pending(&wt.timer)) {
405-
pr_notice("Timer did not fire within the jiffie!\n");
405+
pr_notice("Timer did not fire within the jiffy!\n");
406406
err = 0; /* not our fault! */
407407
} else {
408408
pr_err("Wait reported incomplete after timeout\n");

drivers/gpu/drm/i915/gem/i915_gem_wait.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
266266
if (ret == -ETIME && !nsecs_to_jiffies(args->timeout_ns))
267267
args->timeout_ns = 0;
268268

269-
/* Asked to wait beyond the jiffie/scheduler precision? */
269+
/* Asked to wait beyond the jiffy/scheduler precision? */
270270
if (ret == -ETIME && args->timeout_ns)
271271
ret = -EAGAIN;
272272
}

drivers/gpu/drm/i915/gt/selftest_execlists.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static int wait_for_reset(struct intel_engine_cs *engine,
9393
return -EINVAL;
9494
}
9595

96-
/* Give the request a jiffie to complete after flushing the worker */
96+
/* Give the request a jiffy to complete after flushing the worker */
9797
if (i915_request_wait(rq, 0,
9898
max(0l, (long)(timeout - jiffies)) + 1) < 0) {
9999
pr_err("%s: hanging request %llx:%lld did not complete\n",
@@ -3426,7 +3426,7 @@ static int live_preempt_timeout(void *arg)
34263426
cpu_relax();
34273427

34283428
saved_timeout = engine->props.preempt_timeout_ms;
3429-
engine->props.preempt_timeout_ms = 1; /* in ms, -> 1 jiffie */
3429+
engine->props.preempt_timeout_ms = 1; /* in ms, -> 1 jiffy */
34303430

34313431
i915_request_get(rq);
34323432
i915_request_add(rq);

0 commit comments

Comments
 (0)