* + lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch added to mm-nonmm-unstable branch
@ 2026-03-01 19:20 Andrew Morton
2026-03-01 19:22 ` Josh Law
0 siblings, 1 reply; 2+ messages in thread
From: Andrew Morton @ 2026-03-01 19:20 UTC (permalink / raw)
To: mm-commits, objecting, hlcj1234567, akpm
The patch titled
Subject: lib: glob: fix grammar and replace non-inclusive terminology
has been added to the -mm mm-nonmm-unstable branch. Its filename is
lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch
This patch will shortly appear at
https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch
This patch will later appear in the mm-nonmm-unstable branch at
git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next via various
branches at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
and is updated there most days
------------------------------------------------------
From: Josh Law <hlcj1234567@gmail.com>
Subject: lib: glob: fix grammar and replace non-inclusive terminology
Date: Sun, 1 Mar 2026 15:45:53 +0000
Fix a missing article ('a') in the comment describing the glob
implementation, and replace 'blacklists' with 'denylists' to align with
the kernel's inclusive terminology guidelines.
Link: https://lkml.kernel.org/r/20260301154553.2592681-1-objecting@objecting.org
Signed-off-by: Josh Law <objecting@objecting.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
lib/glob.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/lib/glob.c~lib-glob-fix-grammar-and-replace-non-inclusive-terminology
+++ a/lib/glob.c
@@ -21,7 +21,7 @@ MODULE_LICENSE("Dual MIT/GPL");
* Pattern metacharacters are ?, *, [ and \.
* (And, inside character classes, !, - and ].)
*
- * This is small and simple implementation intended for device blacklists
+ * This is a small and simple implementation intended for device denylists
* where a string is matched against a number of patterns. Thus, it
* does not preprocess the patterns. It is non-recursive, and run-time
* is at most quadratic: strlen(@str)*strlen(@pat).
_
Patches currently in -mm which might be from hlcj1234567@gmail.com are
lib-glob-add-missing-spdx-license-identifier.patch
lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: + lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch added to mm-nonmm-unstable branch
2026-03-01 19:20 + lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch added to mm-nonmm-unstable branch Andrew Morton
@ 2026-03-01 19:22 ` Josh Law
0 siblings, 0 replies; 2+ messages in thread
From: Josh Law @ 2026-03-01 19:22 UTC (permalink / raw)
To: Andrew Morton; +Cc: mm-commits, objecting
Hello, Sorry for being annoying, but can you have a look at all of my other patches? You will benefit from these patches, sorry I haven't ordered them correctly, I usually use GitHub and this is new to me lol
V/R
1 Mar 2026 19:20:12 Andrew Morton <akpm@linux-foundation.org>:
>
> The patch titled
> Subject: lib: glob: fix grammar and replace non-inclusive terminology
> has been added to the -mm mm-nonmm-unstable branch. Its filename is
> lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch
>
> This patch will shortly appear at
> https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch
>
> This patch will later appear in the mm-nonmm-unstable branch at
> git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
>
> Before you just go and hit "reply", please:
> a) Consider who else should be cc'ed
> b) Prefer to cc a suitable mailing list as well
> c) Ideally: find the original patch on the mailing list and do a
> reply-to-all to that, adding suitable additional cc's
>
> *** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
>
> The -mm tree is included into linux-next via various
> branches at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
> and is updated there most days
>
> ------------------------------------------------------
> From: Josh Law <hlcj1234567@gmail.com>
> Subject: lib: glob: fix grammar and replace non-inclusive terminology
> Date: Sun, 1 Mar 2026 15:45:53 +0000
>
> Fix a missing article ('a') in the comment describing the glob
> implementation, and replace 'blacklists' with 'denylists' to align with
> the kernel's inclusive terminology guidelines.
>
> Link: https://lkml.kernel.org/r/20260301154553.2592681-1-objecting@objecting.org
> Signed-off-by: Josh Law <objecting@objecting.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> lib/glob.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/lib/glob.c~lib-glob-fix-grammar-and-replace-non-inclusive-terminology
> +++ a/lib/glob.c
> @@ -21,7 +21,7 @@ MODULE_LICENSE("Dual MIT/GPL");
> * Pattern metacharacters are ?, *, [ and \.
> * (And, inside character classes, !, - and ].)
> *
> - * This is small and simple implementation intended for device blacklists
> + * This is a small and simple implementation intended for device denylists
> * where a string is matched against a number of patterns. Thus, it
> * does not preprocess the patterns. It is non-recursive, and run-time
> * is at most quadratic: strlen(@str)*strlen(@pat).
> _
>
> Patches currently in -mm which might be from hlcj1234567@gmail.com are
>
> lib-glob-add-missing-spdx-license-identifier.patch
> lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-01 19:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-01 19:20 + lib-glob-fix-grammar-and-replace-non-inclusive-terminology.patch added to mm-nonmm-unstable branch Andrew Morton
2026-03-01 19:22 ` Josh Law
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.