* [PATCH] sched: fix two misspellings.
@ 2026-07-20 1:00 Jiangong.Han
2026-07-20 5:21 ` K Prateek Nayak
0 siblings, 1 reply; 4+ messages in thread
From: Jiangong.Han @ 2026-07-20 1:00 UTC (permalink / raw)
To: mingo, peterz, juri.lelli, vincent.guittot
Cc: dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
kprateek.nayak, linux-kernel, jiangong.han
fix one misspelled word and one typo in function name.
Signed-off-by: Jiangong.Han <jiangong.han@windriver.com>
---
include/linux/sched.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 373bcc0598d1..7868663864ce 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1790,7 +1790,7 @@ extern struct pid *cad_pid;
#define PF_NOFREEZE 0x00008000 /* This thread should not be frozen */
#define PF_KCOMPACTD 0x00010000 /* I am kcompactd */
#define PF_KSWAPD 0x00020000 /* I am kswapd */
-#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nfs_save() */
+#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nofs_save() */
#define PF_MEMALLOC_NOIO 0x00080000 /* All allocations inherit GFP_NOIO. See memalloc_noio_save() */
#define PF_LOCAL_THROTTLE 0x00100000 /* Throttle writes only against the bdi I write to,
* I am cleaning dirty pages from some other bdi. */
@@ -2377,7 +2377,7 @@ static __always_inline int task_mm_cid(struct task_struct *t)
/*
* Use the processor id as a fall-back when the mm cid feature is
* disabled. This provides functional per-cpu data structure accesses
- * in user-space, althrough it won't provide the memory usage benefits.
+ * in user-space, although it won't provide the memory usage benefits.
*/
return task_cpu(t);
}
--
2.37.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] sched: fix two misspellings.
2026-07-20 1:00 [PATCH] sched: fix two misspellings Jiangong.Han
@ 2026-07-20 5:21 ` K Prateek Nayak
2026-08-01 12:58 ` Jiangong.Han
2026-08-03 2:54 ` [PATCH][V3] " Jiangong.Han
0 siblings, 2 replies; 4+ messages in thread
From: K Prateek Nayak @ 2026-07-20 5:21 UTC (permalink / raw)
To: Jiangong.Han, mingo, peterz, juri.lelli, vincent.guittot
Cc: dietmar.eggemann, rostedt, bsegall, mgorman, vschneid, linux-kernel
Please remove the "." at the end of the subject.
On 7/20/2026 6:30 AM, Jiangong.Han wrote:
> fix one misspelled word and one typo in function name.
>
> Signed-off-by: Jiangong.Han <jiangong.han@windriver.com>
This should be your real name and not the email prefix
https://www.kernel.org/doc/html/v4.17/process/submitting-patches.html#developer-s-certificate-of-origin-1-1
> ---
> include/linux/sched.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/sched.h b/include/linux/sched.h
> index 373bcc0598d1..7868663864ce 100644
> --- a/include/linux/sched.h
> +++ b/include/linux/sched.h
> @@ -1790,7 +1790,7 @@ extern struct pid *cad_pid;
> #define PF_NOFREEZE 0x00008000 /* This thread should not be frozen */
> #define PF_KCOMPACTD 0x00010000 /* I am kcompactd */
> #define PF_KSWAPD 0x00020000 /* I am kswapd */
> -#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nfs_save() */
> +#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nofs_save() */
> #define PF_MEMALLOC_NOIO 0x00080000 /* All allocations inherit GFP_NOIO. See memalloc_noio_save() */
> #define PF_LOCAL_THROTTLE 0x00100000 /* Throttle writes only against the bdi I write to,
> * I am cleaning dirty pages from some other bdi. */
> @@ -2377,7 +2377,7 @@ static __always_inline int task_mm_cid(struct task_struct *t)
> /*
> * Use the processor id as a fall-back when the mm cid feature is
> * disabled. This provides functional per-cpu data structure accesses
> - * in user-space, althrough it won't provide the memory usage benefits.
> + * in user-space, although it won't provide the memory usage benefits.
> */
> return task_cpu(t);
For the change itself, feel free to include:
Reviewed-by: K Prateek Nayak <kprateek.nayak@amd.com>
> }
> --
> 2.37.3
>
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] sched: fix two misspellings
2026-07-20 5:21 ` K Prateek Nayak
@ 2026-08-01 12:58 ` Jiangong.Han
2026-08-03 2:54 ` [PATCH][V3] " Jiangong.Han
1 sibling, 0 replies; 4+ messages in thread
From: Jiangong.Han @ 2026-08-01 12:58 UTC (permalink / raw)
To: kprateek.nayak
Cc: bsegall, dietmar.eggemann, jiangong.han, juri.lelli,
linux-kernel, mgorman, mingo, peterz, rostedt, vincent.guittot,
vschneid
fix one misspelled word and one typo in function name.
Signed-off-by: Jiangong.Han <jiangong.han@windriver.com>
---
include/linux/sched.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 373bcc0598d1..64836b231f74 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1790,7 +1790,7 @@ extern struct pid *cad_pid;
#define PF_NOFREEZE 0x00008000 /* This thread should not be frozen */
#define PF_KCOMPACTD 0x00010000 /* I am kcompactd */
#define PF_KSWAPD 0x00020000 /* I am kswapd */
-#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nfs_save() */
+#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nfos_save() */
#define PF_MEMALLOC_NOIO 0x00080000 /* All allocations inherit GFP_NOIO. See memalloc_noio_save() */
#define PF_LOCAL_THROTTLE 0x00100000 /* Throttle writes only against the bdi I write to,
* I am cleaning dirty pages from some other bdi. */
@@ -2377,7 +2377,7 @@ static __always_inline int task_mm_cid(struct task_struct *t)
/*
* Use the processor id as a fall-back when the mm cid feature is
* disabled. This provides functional per-cpu data structure accesses
- * in user-space, althrough it won't provide the memory usage benefits.
+ * in user-space, although it won't provide the memory usage benefits.
*/
return task_cpu(t);
}
--
2.37.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH][V3] sched: fix two misspellings
2026-07-20 5:21 ` K Prateek Nayak
2026-08-01 12:58 ` Jiangong.Han
@ 2026-08-03 2:54 ` Jiangong.Han
1 sibling, 0 replies; 4+ messages in thread
From: Jiangong.Han @ 2026-08-03 2:54 UTC (permalink / raw)
To: kprateek.nayak
Cc: bsegall, dietmar.eggemann, jiangong.han, juri.lelli,
linux-kernel, mgorman, mingo, peterz, rostedt, vincent.guittot,
vschneid
fix one misspelled word and one typo in function name.
Signed-off-by: Jiangong.Han <jiangong.han@windriver.com>
---
include/linux/sched.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 373bcc0598d1..7868663864ce 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1790,7 +1790,7 @@ extern struct pid *cad_pid;
#define PF_NOFREEZE 0x00008000 /* This thread should not be frozen */
#define PF_KCOMPACTD 0x00010000 /* I am kcompactd */
#define PF_KSWAPD 0x00020000 /* I am kswapd */
-#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nfs_save() */
+#define PF_MEMALLOC_NOFS 0x00040000 /* All allocations inherit GFP_NOFS. See memalloc_nofs_save() */
#define PF_MEMALLOC_NOIO 0x00080000 /* All allocations inherit GFP_NOIO. See memalloc_noio_save() */
#define PF_LOCAL_THROTTLE 0x00100000 /* Throttle writes only against the bdi I write to,
* I am cleaning dirty pages from some other bdi. */
@@ -2377,7 +2377,7 @@ static __always_inline int task_mm_cid(struct task_struct *t)
/*
* Use the processor id as a fall-back when the mm cid feature is
* disabled. This provides functional per-cpu data structure accesses
- * in user-space, althrough it won't provide the memory usage benefits.
+ * in user-space, although it won't provide the memory usage benefits.
*/
return task_cpu(t);
}
--
2.37.3
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-03 2:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-20 1:00 [PATCH] sched: fix two misspellings Jiangong.Han
2026-07-20 5:21 ` K Prateek Nayak
2026-08-01 12:58 ` Jiangong.Han
2026-08-03 2:54 ` [PATCH][V3] " Jiangong.Han
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®