linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/8] treewide: Fix typo "notifer"
@ 2025-07-15 13:40 WangYuli
  2025-07-15 13:44 ` [PATCH v2 1/8] KVM: x86: " WangYuli
                   ` (7 more replies)
  0 siblings, 8 replies; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:40 UTC (permalink / raw)
  To: seanjc, pbonzini, tglx, mingo, bp, dave.hansen, x86, hpa, dave,
	jonathan.cameron, dave.jiang, alison.schofield, vishal.l.verma,
	ira.weiny, dan.j.williams, lucas.demarchi, thomas.hellstrom,
	rodrigo.vivi, airlied, simona, marcin.s.wojtas, andrew+netdev,
	davem, edumazet, kuba, pabeni, arend.vanspriel, ilpo.jarvinen,
	andriy.shevchenko, gregkh, jirislaby, jgross, sstabellini,
	oleksandr_tyshchenko, akpm
  Cc: kvm, linux-kernel, wangyuli, ming.li, linux-cxl, intel-xe,
	dri-devel, netdev, kvalo, johannes.berg, quic_ramess, ragazenta,
	jeff.johnson, mingo, j, linux, linux-wireless, brcm80211,
	brcm80211-dev-list.pdl, linux-serial, xen-devel, shenlichuan,
	yujiaoliang, colin.i.king, cvam0000, zhanjun, niecheng1,
	guanwentao

There are some spelling mistakes of 'notifer' in comments which
should be 'notifier'.

Fix them and add it to scripts/spelling.txt.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/

WangYuli (8):
  KVM: x86: Fix typo "notifer"
  cxl: mce: Fix typo "notifer"
  drm/xe: Fix typo "notifer"
  net: mvneta: Fix typo "notifer"
  wifi: brcmfmac: Fix typo "notifer"
  serial: 8250_dw: Fix typo "notifer"
  xen/xenbus: Fix typo "notifer"
  scripts/spelling.txt: Add notifer||notifier to spelling.txt

 arch/x86/kvm/i8254.c                                        | 4 ++--
 drivers/cxl/core/mce.h                                      | 2 +-
 drivers/gpu/drm/xe/xe_vm_types.h                            | 2 +-
 drivers/net/ethernet/marvell/mvneta.c                       | 2 +-
 drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | 2 +-
 drivers/tty/serial/8250/8250_dw.c                           | 2 +-
 include/xen/xenbus.h                                        | 2 +-
 scripts/spelling.txt                                        | 1 +
 8 files changed, 9 insertions(+), 8 deletions(-)
---
Changelog:
 *v1->v2: Break patch v1 up into one-patch-per-subsystem.

-- 
2.50.0


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH v2 1/8] KVM: x86: Fix typo "notifer"
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-15 13:44 ` [PATCH v2 2/8] cxl: mce: " WangYuli
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

There are some spelling mistakes of 'notifer' which should be 'notifier'.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 arch/x86/kvm/i8254.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kvm/i8254.c b/arch/x86/kvm/i8254.c
index 739aa6c0d0c3..9ff55112900a 100644
--- a/arch/x86/kvm/i8254.c
+++ b/arch/x86/kvm/i8254.c
@@ -641,7 +641,7 @@ static void kvm_pit_reset(struct kvm_pit *pit)
 	kvm_pit_reset_reinject(pit);
 }
 
-static void pit_mask_notifer(struct kvm_irq_mask_notifier *kimn, bool mask)
+static void pit_mask_notifier(struct kvm_irq_mask_notifier *kimn, bool mask)
 {
 	struct kvm_pit *pit = container_of(kimn, struct kvm_pit, mask_notifier);
 
@@ -694,7 +694,7 @@ struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags)
 
 	pit_state->irq_ack_notifier.gsi = 0;
 	pit_state->irq_ack_notifier.irq_acked = kvm_pit_ack_irq;
-	pit->mask_notifier.func = pit_mask_notifer;
+	pit->mask_notifier.func = pit_mask_notifier;
 
 	kvm_pit_reset(pit);
 
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH v2 2/8] cxl: mce: Fix typo "notifer"
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
  2025-07-15 13:44 ` [PATCH v2 1/8] KVM: x86: " WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-15 13:48   ` Jonathan Cameron
  2025-07-15 15:09   ` Dave Jiang
  2025-07-15 13:44 ` [PATCH v2 3/8] drm/xe: " WangYuli
                   ` (5 subsequent siblings)
  7 siblings, 2 replies; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

According to the context, "mce_notifer" should be "mce_notifier".

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Fixes: 516e5bd0b6bf ("cxl: Add mce notifier to emit aliased address for extended linear cache")
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 drivers/cxl/core/mce.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/cxl/core/mce.h b/drivers/cxl/core/mce.h
index ace73424eeb6..ca272e8db6c7 100644
--- a/drivers/cxl/core/mce.h
+++ b/drivers/cxl/core/mce.h
@@ -7,7 +7,7 @@
 
 #ifdef CONFIG_CXL_MCE
 int devm_cxl_register_mce_notifier(struct device *dev,
-				   struct notifier_block *mce_notifer);
+				   struct notifier_block *mce_notifier);
 #else
 static inline int
 devm_cxl_register_mce_notifier(struct device *dev,
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH v2 3/8] drm/xe: Fix typo "notifer"
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
  2025-07-15 13:44 ` [PATCH v2 1/8] KVM: x86: " WangYuli
  2025-07-15 13:44 ` [PATCH v2 2/8] cxl: mce: " WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-23 18:40   ` Matthew Brost
  2025-07-15 13:44 ` [PATCH v2 4/8] net: mvneta: " WangYuli
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

There is a spelling mistake of 'notifer' in the comment which
should be 'notifier'.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 drivers/gpu/drm/xe/xe_vm_types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
index 1979e9bdbdf3..0ca27579fd1f 100644
--- a/drivers/gpu/drm/xe/xe_vm_types.h
+++ b/drivers/gpu/drm/xe/xe_vm_types.h
@@ -259,7 +259,7 @@ struct xe_vm {
 		 * up for revalidation. Protected from access with the
 		 * @invalidated_lock. Removing items from the list
 		 * additionally requires @lock in write mode, and adding
-		 * items to the list requires either the @userptr.notifer_lock in
+		 * items to the list requires either the @userptr.notifier_lock in
 		 * write mode, OR @lock in write mode.
 		 */
 		struct list_head invalidated;
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH v2 4/8] net: mvneta: Fix typo "notifer"
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
                   ` (2 preceding siblings ...)
  2025-07-15 13:44 ` [PATCH v2 3/8] drm/xe: " WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-16  7:36   ` Simon Horman
  2025-07-15 13:44 ` [PATCH v2 5/8] wifi: brcmfmac: " WangYuli
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

There is a spelling mistake of 'notifer' in the comment which
should be 'notifier'.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 drivers/net/ethernet/marvell/mvneta.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c
index 147571fdada3..ee4696600146 100644
--- a/drivers/net/ethernet/marvell/mvneta.c
+++ b/drivers/net/ethernet/marvell/mvneta.c
@@ -4610,7 +4610,7 @@ static int mvneta_stop(struct net_device *dev)
 		/* Inform that we are stopping so we don't want to setup the
 		 * driver for new CPUs in the notifiers. The code of the
 		 * notifier for CPU online is protected by the same spinlock,
-		 * so when we get the lock, the notifer work is done.
+		 * so when we get the lock, the notifier work is done.
 		 */
 		spin_lock(&pp->lock);
 		pp->is_stopped = true;
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH v2 5/8] wifi: brcmfmac: Fix typo "notifer"
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
                   ` (3 preceding siblings ...)
  2025-07-15 13:44 ` [PATCH v2 4/8] net: mvneta: " WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-18 10:26   ` Arend van Spriel
  2025-07-15 13:44 ` [PATCH v2 6/8] serial: 8250_dw: " WangYuli
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

There is a spelling mistake of 'notifer' in the comment which
should be 'notifier'.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
index b94c3619526c..bcd56c7c4e42 100644
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
@@ -8313,7 +8313,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
 	cfg->d11inf.io_type = (u8)io_type;
 	brcmu_d11_attach(&cfg->d11inf);
 
-	/* regulatory notifer below needs access to cfg so
+	/* regulatory notifier below needs access to cfg so
 	 * assign it now.
 	 */
 	drvr->config = cfg;
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH v2 6/8] serial: 8250_dw: Fix typo "notifer"
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
                   ` (4 preceding siblings ...)
  2025-07-15 13:44 ` [PATCH v2 5/8] wifi: brcmfmac: " WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-16  7:35   ` Andy Shevchenko
  2025-07-16  8:08   ` Greg KH
  2025-07-15 13:44 ` [PATCH v2 7/8] xen/xenbus: " WangYuli
  2025-07-15 13:44 ` [PATCH v2 8/8] scripts/spelling.txt: Add notifer||notifier to spelling.txt WangYuli
  7 siblings, 2 replies; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

There is a spelling mistake of 'notifer' in the comment which
should be 'notifier'.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 drivers/tty/serial/8250/8250_dw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/8250/8250_dw.c b/drivers/tty/serial/8250/8250_dw.c
index 1902f29444a1..6d9af6417620 100644
--- a/drivers/tty/serial/8250/8250_dw.c
+++ b/drivers/tty/serial/8250/8250_dw.c
@@ -392,7 +392,7 @@ static void dw8250_set_termios(struct uart_port *p, struct ktermios *termios,
 	rate = clk_round_rate(d->clk, newrate);
 	if (rate > 0) {
 		/*
-		 * Note that any clock-notifer worker will block in
+		 * Note that any clock-notifier worker will block in
 		 * serial8250_update_uartclk() until we are done.
 		 */
 		ret = clk_set_rate(d->clk, newrate);
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH v2 7/8] xen/xenbus: Fix typo "notifer"
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
                   ` (5 preceding siblings ...)
  2025-07-15 13:44 ` [PATCH v2 6/8] serial: 8250_dw: " WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-18 13:36   ` Jürgen Groß
  2025-07-15 13:44 ` [PATCH v2 8/8] scripts/spelling.txt: Add notifer||notifier to spelling.txt WangYuli
  7 siblings, 1 reply; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

There is a spelling mistake of 'notifer' in the comment which
should be 'notifier'.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 include/xen/xenbus.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/xen/xenbus.h b/include/xen/xenbus.h
index 3f90bdd387b6..00b84f2e402b 100644
--- a/include/xen/xenbus.h
+++ b/include/xen/xenbus.h
@@ -180,7 +180,7 @@ int xenbus_printf(struct xenbus_transaction t,
  * sprintf-style type string, and pointer. Returns 0 or errno.*/
 int xenbus_gather(struct xenbus_transaction t, const char *dir, ...);
 
-/* notifer routines for when the xenstore comes up */
+/* notifier routines for when the xenstore comes up */
 extern int xenstored_ready;
 int register_xenstore_notifier(struct notifier_block *nb);
 void unregister_xenstore_notifier(struct notifier_block *nb);
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH v2 8/8] scripts/spelling.txt: Add notifer||notifier to spelling.txt
  2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
                   ` (6 preceding siblings ...)
  2025-07-15 13:44 ` [PATCH v2 7/8] xen/xenbus: " WangYuli
@ 2025-07-15 13:44 ` WangYuli
  2025-07-15 13:50   ` Jonathan Cameron
  7 siblings, 1 reply; 21+ messages in thread
From: WangYuli @ 2025-07-15 13:44 UTC (permalink / raw)
  To: wangyuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

This typo was not listed in scripts/spelling.txt, thus it was more
difficult to detect. Add it for convenience.

Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
Signed-off-by: WangYuli <wangyuli@uniontech.com>
---
 scripts/spelling.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/spelling.txt b/scripts/spelling.txt
index c9a6df5be281..d824c4b17390 100644
--- a/scripts/spelling.txt
+++ b/scripts/spelling.txt
@@ -1099,6 +1099,7 @@ notication||notification
 notications||notifications
 notifcations||notifications
 notifed||notified
+notifer||notifier
 notity||notify
 notfify||notify
 nubmer||number
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 2/8] cxl: mce: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 2/8] cxl: mce: " WangYuli
@ 2025-07-15 13:48   ` Jonathan Cameron
  2025-07-15 15:09   ` Dave Jiang
  1 sibling, 0 replies; 21+ messages in thread
From: Jonathan Cameron @ 2025-07-15 13:48 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun

On Tue, 15 Jul 2025 21:44:01 +0800
WangYuli <wangyuli@uniontech.com> wrote:

> According to the context, "mce_notifer" should be "mce_notifier".
> 
> Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
> Fixes: 516e5bd0b6bf ("cxl: Add mce notifier to emit aliased address for extended linear cache")
> Signed-off-by: WangYuli <wangyuli@uniontech.com>
Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>

> ---
>  drivers/cxl/core/mce.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/cxl/core/mce.h b/drivers/cxl/core/mce.h
> index ace73424eeb6..ca272e8db6c7 100644
> --- a/drivers/cxl/core/mce.h
> +++ b/drivers/cxl/core/mce.h
> @@ -7,7 +7,7 @@
>  
>  #ifdef CONFIG_CXL_MCE
>  int devm_cxl_register_mce_notifier(struct device *dev,
> -				   struct notifier_block *mce_notifer);
> +				   struct notifier_block *mce_notifier);
>  #else
>  static inline int
>  devm_cxl_register_mce_notifier(struct device *dev,


^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 8/8] scripts/spelling.txt: Add notifer||notifier to spelling.txt
  2025-07-15 13:44 ` [PATCH v2 8/8] scripts/spelling.txt: Add notifer||notifier to spelling.txt WangYuli
@ 2025-07-15 13:50   ` Jonathan Cameron
  0 siblings, 0 replies; 21+ messages in thread
From: Jonathan Cameron @ 2025-07-15 13:50 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun

On Tue, 15 Jul 2025 21:44:07 +0800
WangYuli <wangyuli@uniontech.com> wrote:

> This typo was not listed in scripts/spelling.txt, thus it was more
> difficult to detect. Add it for convenience.
> 
> Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/

Adding a link tag to your own previous patch doesn't seem particularly
useful as something to end up in the git log (which depending on
maintainer preference may gain a link tag to this version).

> Signed-off-by: WangYuli <wangyuli@uniontech.com>
other than that, LGTM

Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>

> ---
>  scripts/spelling.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/scripts/spelling.txt b/scripts/spelling.txt
> index c9a6df5be281..d824c4b17390 100644
> --- a/scripts/spelling.txt
> +++ b/scripts/spelling.txt
> @@ -1099,6 +1099,7 @@ notication||notification
>  notications||notifications
>  notifcations||notifications
>  notifed||notified
> +notifer||notifier
>  notity||notify
>  notfify||notify
>  nubmer||number


^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 2/8] cxl: mce: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 2/8] cxl: mce: " WangYuli
  2025-07-15 13:48   ` Jonathan Cameron
@ 2025-07-15 15:09   ` Dave Jiang
  1 sibling, 0 replies; 21+ messages in thread
From: Dave Jiang @ 2025-07-15 15:09 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave, davem,
	dri-devel, edumazet, gregkh, guanwentao, hpa, ilpo.jarvinen,
	intel-xe, ira.weiny, j, jeff.johnson, jgross, jirislaby,
	johannes.berg, jonathan.cameron, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun



On 7/15/25 6:44 AM, WangYuli wrote:
> According to the context, "mce_notifer" should be "mce_notifier".
> 
> Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
> Fixes: 516e5bd0b6bf ("cxl: Add mce notifier to emit aliased address for extended linear cache")
> Signed-off-by: WangYuli <wangyuli@uniontech.com>

Reviewed-by: Dave Jiang <dave.jiang@intel.com>
> ---
>  drivers/cxl/core/mce.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/cxl/core/mce.h b/drivers/cxl/core/mce.h
> index ace73424eeb6..ca272e8db6c7 100644
> --- a/drivers/cxl/core/mce.h
> +++ b/drivers/cxl/core/mce.h
> @@ -7,7 +7,7 @@
>  
>  #ifdef CONFIG_CXL_MCE
>  int devm_cxl_register_mce_notifier(struct device *dev,
> -				   struct notifier_block *mce_notifer);
> +				   struct notifier_block *mce_notifier);
>  #else
>  static inline int
>  devm_cxl_register_mce_notifier(struct device *dev,


^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 6/8] serial: 8250_dw: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 6/8] serial: 8250_dw: " WangYuli
@ 2025-07-16  7:35   ` Andy Shevchenko
  2025-07-16  8:08   ` Greg KH
  1 sibling, 0 replies; 21+ messages in thread
From: Andy Shevchenko @ 2025-07-16  7:35 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, arend.vanspriel,
	bp, brcm80211-dev-list.pdl, brcm80211, colin.i.king, cvam0000,
	dan.j.williams, dave.hansen, dave.jiang, dave, davem, dri-devel,
	edumazet, gregkh, guanwentao, hpa, ilpo.jarvinen, intel-xe,
	ira.weiny, j, jeff.johnson, jgross, jirislaby, johannes.berg,
	jonathan.cameron, kuba, kvalo, kvm, linux-cxl, linux-kernel,
	linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun

On Tue, Jul 15, 2025 at 09:44:05PM +0800, WangYuli wrote:
> There is a spelling mistake of 'notifer' in the comment which
> should be 'notifier'.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 4/8] net: mvneta: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 4/8] net: mvneta: " WangYuli
@ 2025-07-16  7:36   ` Simon Horman
  0 siblings, 0 replies; 21+ messages in thread
From: Simon Horman @ 2025-07-16  7:36 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

On Tue, Jul 15, 2025 at 09:44:03PM +0800, WangYuli wrote:
> There is a spelling mistake of 'notifer' in the comment which
> should be 'notifier'.
> 
> Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/

As suggested by Jonathan Cameron elsewhere in this thread, this link to an
earlier version doesn't seem appropriate here. I'd suggest it belongs
below the scissors ('---') with a note that it is a link to v1.

> Signed-off-by: WangYuli <wangyuli@uniontech.com>

The comment above notwithstanding this looks good to me.

Reviewed-by: Simon Horman <horms@kernel.org>

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 6/8] serial: 8250_dw: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 6/8] serial: 8250_dw: " WangYuli
  2025-07-16  7:35   ` Andy Shevchenko
@ 2025-07-16  8:08   ` Greg KH
  2025-07-22  7:22     ` WangYuli
  1 sibling, 1 reply; 21+ messages in thread
From: Greg KH @ 2025-07-16  8:08 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, guanwentao, hpa, ilpo.jarvinen,
	intel-xe, ira.weiny, j, jeff.johnson, jgross, jirislaby,
	johannes.berg, jonathan.cameron, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun

On Tue, Jul 15, 2025 at 09:44:05PM +0800, WangYuli wrote:
> There is a spelling mistake of 'notifer' in the comment which
> should be 'notifier'.
> 
> Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
> Signed-off-by: WangYuli <wangyuli@uniontech.com>

Is your name all one word like that, or should there be a " " between
them?

Also, as others said, don't link to your own patch.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 5/8] wifi: brcmfmac: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 5/8] wifi: brcmfmac: " WangYuli
@ 2025-07-18 10:26   ` Arend van Spriel
  0 siblings, 0 replies; 21+ messages in thread
From: Arend van Spriel @ 2025-07-18 10:26 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	bp, brcm80211-dev-list.pdl, brcm80211, colin.i.king, cvam0000,
	dan.j.williams, dave.hansen, dave.jiang, dave, davem, dri-devel,
	edumazet, gregkh, guanwentao, hpa, ilpo.jarvinen, intel-xe,
	ira.weiny, j, jeff.johnson, jgross, jirislaby, johannes.berg,
	jonathan.cameron, kuba, kvalo, kvm, linux-cxl, linux-kernel,
	linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun

On 7/15/2025 3:44 PM, WangYuli wrote:
> There is a spelling mistake of 'notifer' in the comment which
> should be 'notifier'.
> 
> Link:https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1- 
> wangyuli@uniontech.com/

I think it has been said on other patches but it is not common to link 
to obsolete version of the patch series. Apart from that:

Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>> 
Signed-off-by: WangYuli<wangyuli@uniontech.com>
> ---
>   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)


^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 7/8] xen/xenbus: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 7/8] xen/xenbus: " WangYuli
@ 2025-07-18 13:36   ` Jürgen Groß
  0 siblings, 0 replies; 21+ messages in thread
From: Jürgen Groß @ 2025-07-18 13:36 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jirislaby,
	johannes.berg, jonathan.cameron, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun


[-- Attachment #1.1.1: Type: text/plain, Size: 345 bytes --]

On 15.07.25 15:44, WangYuli wrote:
> There is a spelling mistake of 'notifer' in the comment which
> should be 'notifier'.
> 
> Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
> Signed-off-by: WangYuli <wangyuli@uniontech.com>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3743 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 6/8] serial: 8250_dw: Fix typo "notifer"
  2025-07-16  8:08   ` Greg KH
@ 2025-07-22  7:22     ` WangYuli
  2025-07-22  7:57       ` Greg KH
  0 siblings, 1 reply; 21+ messages in thread
From: WangYuli @ 2025-07-22  7:22 UTC (permalink / raw)
  To: Greg KH
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, guanwentao, hpa, ilpo.jarvinen,
	intel-xe, ira.weiny, j, jeff.johnson, jgross, jirislaby,
	johannes.berg, jonathan.cameron, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun


[-- Attachment #1.1.1: Type: text/plain, Size: 766 bytes --]

Hi greg k-h,

On 2025/7/16 16:08, Greg KH wrote:
>> Signed-off-by: WangYuli <wangyuli@uniontech.com>
> Is your name all one word like that, or should there be a " " between
> them?

If I were to follow Western naming conventions, my name would be written 
as 'Yuli Wang'.

However, frankly, I find it unnecessary and can't be bothered to follow 
their customs, unless a maintainer strongly insists. (For example, you 
can see that my signature on commits for the LoongArch subsystem is 
different from my other contributions).

Since Chinese names are written without any spaces in Chinese 
characters, I don't think it matters.

> Also, as others said, don't link to your own patch.
OK, I'll send the patchset v3.


Thanks,

-- 
王昱力

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 645 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 6/8] serial: 8250_dw: Fix typo "notifer"
  2025-07-22  7:22     ` WangYuli
@ 2025-07-22  7:57       ` Greg KH
  2025-07-22 16:58         ` H. Peter Anvin
  0 siblings, 1 reply; 21+ messages in thread
From: Greg KH @ 2025-07-22  7:57 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, guanwentao, hpa, ilpo.jarvinen,
	intel-xe, ira.weiny, j, jeff.johnson, jgross, jirislaby,
	johannes.berg, jonathan.cameron, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun

On Tue, Jul 22, 2025 at 03:22:18PM +0800, WangYuli wrote:
> Hi greg k-h,
> 
> On 2025/7/16 16:08, Greg KH wrote:
> > > Signed-off-by: WangYuli <wangyuli@uniontech.com>
> > Is your name all one word like that, or should there be a " " between
> > them?
> 
> If I were to follow Western naming conventions, my name would be written as
> 'Yuli Wang'.
> 
> However, frankly, I find it unnecessary and can't be bothered to follow
> their customs, unless a maintainer strongly insists. (For example, you can
> see that my signature on commits for the LoongArch subsystem is different
> from my other contributions).
> 
> Since Chinese names are written without any spaces in Chinese characters, I
> don't think it matters.

Then use your Chinese name, don't feel like you need to change it to any
other naming convention.  There's no requirement here at all to do so.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 6/8] serial: 8250_dw: Fix typo "notifer"
  2025-07-22  7:57       ` Greg KH
@ 2025-07-22 16:58         ` H. Peter Anvin
  0 siblings, 0 replies; 21+ messages in thread
From: H. Peter Anvin @ 2025-07-22 16:58 UTC (permalink / raw)
  To: Greg KH, WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, guanwentao, ilpo.jarvinen,
	intel-xe, ira.weiny, j, jeff.johnson, jgross, jirislaby,
	johannes.berg, jonathan.cameron, kuba, kvalo, kvm, linux-cxl,
	linux-kernel, linux-serial, linux-wireless, linux, lucas.demarchi,
	marcin.s.wojtas, ming.li, mingo, mingo, netdev, niecheng1,
	oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess, ragazenta,
	rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini, tglx,
	thomas.hellstrom, vishal.l.verma, x86, xen-devel, yujiaoliang,
	zhanjun

On July 22, 2025 12:57:33 AM PDT, Greg KH <gregkh@linuxfoundation.org> wrote:
>On Tue, Jul 22, 2025 at 03:22:18PM +0800, WangYuli wrote:
>> Hi greg k-h,
>> 
>> On 2025/7/16 16:08, Greg KH wrote:
>> > > Signed-off-by: WangYuli <wangyuli@uniontech.com>
>> > Is your name all one word like that, or should there be a " " between
>> > them?
>> 
>> If I were to follow Western naming conventions, my name would be written as
>> 'Yuli Wang'.
>> 
>> However, frankly, I find it unnecessary and can't be bothered to follow
>> their customs, unless a maintainer strongly insists. (For example, you can
>> see that my signature on commits for the LoongArch subsystem is different
>> from my other contributions).
>> 
>> Since Chinese names are written without any spaces in Chinese characters, I
>> don't think it matters.
>
>Then use your Chinese name, don't feel like you need to change it to any
>other naming convention.  There's no requirement here at all to do so.
>
>thanks,
>
>greg k-h

To put it differently: what Greg (and the rest of us) want to make sure is that your name appears the way you prefer. 

Having the Latin transliteration in whatever form you prefer is greatly appreciated, of course, since the knowledge of Chinese script is limited outside East Asia, but that's just about it.

If you want to add your name in proper Chinese script in addition that should be fine, too.

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH v2 3/8] drm/xe: Fix typo "notifer"
  2025-07-15 13:44 ` [PATCH v2 3/8] drm/xe: " WangYuli
@ 2025-07-23 18:40   ` Matthew Brost
  0 siblings, 0 replies; 21+ messages in thread
From: Matthew Brost @ 2025-07-23 18:40 UTC (permalink / raw)
  To: WangYuli
  Cc: airlied, akpm, alison.schofield, andrew+netdev, andriy.shevchenko,
	arend.vanspriel, bp, brcm80211-dev-list.pdl, brcm80211,
	colin.i.king, cvam0000, dan.j.williams, dave.hansen, dave.jiang,
	dave, davem, dri-devel, edumazet, gregkh, guanwentao, hpa,
	ilpo.jarvinen, intel-xe, ira.weiny, j, jeff.johnson, jgross,
	jirislaby, johannes.berg, jonathan.cameron, kuba, kvalo, kvm,
	linux-cxl, linux-kernel, linux-serial, linux-wireless, linux,
	lucas.demarchi, marcin.s.wojtas, ming.li, mingo, mingo, netdev,
	niecheng1, oleksandr_tyshchenko, pabeni, pbonzini, quic_ramess,
	ragazenta, rodrigo.vivi, seanjc, shenlichuan, simona, sstabellini,
	tglx, thomas.hellstrom, vishal.l.verma, x86, xen-devel,
	yujiaoliang, zhanjun

On Tue, Jul 15, 2025 at 09:44:02PM +0800, WangYuli wrote:
> There is a spelling mistake of 'notifer' in the comment which
> should be 'notifier'.
> 
> Link: https://lore.kernel.org/all/B3C019B63C93846F+20250715071245.398846-1-wangyuli@uniontech.com/
> Signed-off-by: WangYuli <wangyuli@uniontech.com>

Reviewed-by: Matthew Brost <matthew.brost@intel.com>

We can apply this patch individually to drm-xe-next if that is ok with you.

> ---
>  drivers/gpu/drm/xe/xe_vm_types.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
> index 1979e9bdbdf3..0ca27579fd1f 100644
> --- a/drivers/gpu/drm/xe/xe_vm_types.h
> +++ b/drivers/gpu/drm/xe/xe_vm_types.h
> @@ -259,7 +259,7 @@ struct xe_vm {
>  		 * up for revalidation. Protected from access with the
>  		 * @invalidated_lock. Removing items from the list
>  		 * additionally requires @lock in write mode, and adding
> -		 * items to the list requires either the @userptr.notifer_lock in
> +		 * items to the list requires either the @userptr.notifier_lock in
>  		 * write mode, OR @lock in write mode.
>  		 */
>  		struct list_head invalidated;
> -- 
> 2.50.0
> 

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2025-07-23 18:39 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-15 13:40 [PATCH v2 0/8] treewide: Fix typo "notifer" WangYuli
2025-07-15 13:44 ` [PATCH v2 1/8] KVM: x86: " WangYuli
2025-07-15 13:44 ` [PATCH v2 2/8] cxl: mce: " WangYuli
2025-07-15 13:48   ` Jonathan Cameron
2025-07-15 15:09   ` Dave Jiang
2025-07-15 13:44 ` [PATCH v2 3/8] drm/xe: " WangYuli
2025-07-23 18:40   ` Matthew Brost
2025-07-15 13:44 ` [PATCH v2 4/8] net: mvneta: " WangYuli
2025-07-16  7:36   ` Simon Horman
2025-07-15 13:44 ` [PATCH v2 5/8] wifi: brcmfmac: " WangYuli
2025-07-18 10:26   ` Arend van Spriel
2025-07-15 13:44 ` [PATCH v2 6/8] serial: 8250_dw: " WangYuli
2025-07-16  7:35   ` Andy Shevchenko
2025-07-16  8:08   ` Greg KH
2025-07-22  7:22     ` WangYuli
2025-07-22  7:57       ` Greg KH
2025-07-22 16:58         ` H. Peter Anvin
2025-07-15 13:44 ` [PATCH v2 7/8] xen/xenbus: " WangYuli
2025-07-18 13:36   ` Jürgen Groß
2025-07-15 13:44 ` [PATCH v2 8/8] scripts/spelling.txt: Add notifer||notifier to spelling.txt WangYuli
2025-07-15 13:50   ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).