Re: [net-next PATCH 3/4] netdev: replace napi_reschedule with napi_schedule

2023-10-02 Thread Jeff Johnson
purpose is actually deprecated in favour of different logic. Convert every user of napi_reschedule to napi_schedule. Signed-off-by: Christian Marangi --- For drivers/net/wireless/ath/ath10k/pci.c | 2 +- Acked-by: Jeff Johnson

Re: [net-next PATCH 2/4] netdev: make napi_schedule return bool on NAPI successful schedule

2023-10-02 Thread Jeff Johnson
On 10/2/2023 8:10 AM, Christian Marangi wrote: Change napi_schedule to return a bool on NAPI successful schedule. This might be useful for some driver to do additional step after a NAPI ahs nit:s/ahs/has/ been scheduled. Signed-off-by: Christian Marangi --- include/linux/netdevice.h | 11

Re: [PATCH] [RFC] wireless: move obsolete drivers to staging

2023-10-18 Thread Jeff Johnson
On 10/13/2023 11:02 AM, Johannes Berg wrote: On Fri, 2023-10-13 at 17:44 +0200, Arnd Bergmann wrote: On Thu, Oct 12, 2023, at 18:36, Geoff Levand wrote: On 10/12/23 17:41, Johannes Berg wrote: But seriously - is it worth to try to keep a wireless driver for it if we don't even know anyone usin

Re: [FYI][PATCH] tracing/treewide: Remove second parameter of __assign_str()

2024-02-23 Thread Jeff Johnson
On 2/23/2024 9:56 AM, Steven Rostedt wrote: > From: "Steven Rostedt (Google)" > > [ >This is a treewide change. I will likely re-create this patch again in >the second week of the merge window of v6.9 and submit it then. Hoping >to keep the conflicts that it will cause to a minimum. >

[PATCH] macintosh/mac_hid: add MODULE_DESCRIPTION()

2024-05-09 Thread Jeff Johnson
Fix the make W=1 warning: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/macintosh/mac_hid.o Signed-off-by: Jeff Johnson --- drivers/macintosh/mac_hid.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/macintosh/mac_hid.c b/drivers/macintosh/mac_hid.c index 1ae3539beff5

Re: [PATCH 19/22] wnc36xx: Replace comments with C99 initializers

2022-03-28 Thread Jeff Johnson
On 3/26/2022 9:59 AM, Benjamin Stürz wrote: This replaces comments with C99's designated initializers because the kernel supports them now. Signed-off-by: Benjamin Stürz --- drivers/net/wireless/ath/wcn36xx/main.c | 122 1 file changed, 61 insertions(+), 61 deletions

Re: [PATCH v4 03/14] modpost: split the section mismatch checks into section-check.c

2022-05-11 Thread Jeff Johnson
On 5/11/2022 12:27 PM, Masahiro Yamada wrote: On Thu, May 12, 2022 at 3:48 AM Nick Desaulniers wrote: On Mon, May 9, 2022 at 11:57 PM Masahiro Yamada wrote: diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index a78b75f0eeb0..e7e2c70a98f5 100644 --- a/scripts/mod/modpost.c +++ b/

[PATCH] ASoC: fsl: add missing MODULE_DESCRIPTION() macro

2024-06-02 Thread Jeff Johnson
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-dma.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson --- sound/soc/fsl/imx-pcm-dma.c | 1 + 1 file changed, 1 insertion(+) diff

[PATCH] cpufreq: powerpc: add missing MODULE_DESCRIPTION() macros

2024-06-14 Thread Jeff Johnson
macro to all files which have a MODULE_LICENSE(). This includes three additional files which, although they did not produce a warning with the powerpc allmodconfig configuration, may cause this warning with specific options enabled in the kernel configuration. Signed-off-by: Jeff Johnson --- Correc

[PATCH] KVM: PPC: add missing MODULE_DESCRIPTION() macros

2024-06-15 Thread Jeff Johnson
erpc/kvm/kvm-hv.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson --- arch/powerpc/kvm/book3s_hv.c | 1 + arch/powerpc/kvm/book3s_pr.c | 1 + arch/powerpc/kvm/test-guest-state-buffer.c | 1 + 3 files changed, 3 insertions(

[PATCH] powerpc: add missing MODULE_DESCRIPTION() macros

2024-06-15 Thread Jeff Johnson
did not produce a warning with the powerpc allmodconfig configuration, may cause this warning with other configurations. Signed-off-by: Jeff Johnson --- Corrections to these descriptions are welcomed. I'm not an expert in this code so in most cases I've taken these descriptions directly

[PATCH] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro

2024-06-15 Thread Jeff Johnson
With ARCH=arm, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-fiq.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson --- sound/soc/fsl/imx-pcm-fiq.c | 1 + 1 file changed, 1 i

Re: [PATCH] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro

2024-06-16 Thread Jeff Johnson
On 6/16/2024 12:14 AM, Christophe JAILLET wrote: > Le 16/06/2024 à 08:42, Jeff Johnson a écrit : >> With ARCH=arm, make allmodconfig && make W=1 C=1 reports: >> WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-fiq.o >> >> Add the missing i

[PATCH v2] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro

2024-06-16 Thread Jeff Johnson
With ARCH=arm, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-fiq.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson --- Changes in v2: - Fixed spelling of Freescale - Link to v1

Re: [PATCH] cpufreq: powerpc: add missing MODULE_DESCRIPTION() macros

2024-06-28 Thread Jeff Johnson
On 6/14/2024 11:08 PM, Jeff Johnson wrote: > With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in > drivers/cpufreq/ppc-cbe-cpufreq.o > WARNING: modpost: missing MODULE_DESCRIPTION() in > drivers/cpufreq/powernv

Re: [PATCH] KVM: PPC: add missing MODULE_DESCRIPTION() macros

2024-06-28 Thread Jeff Johnson
On 6/15/2024 8:18 AM, Jeff Johnson wrote: > With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in > arch/powerpc/kvm/test-guest-state-buffer.o > WARNING: modpost: missing MODULE_DESCRIPTION() in arch/powerpc/kv

Re: [PATCH] powerpc: add missing MODULE_DESCRIPTION() macros

2024-06-28 Thread Jeff Johnson
On 6/15/2024 10:06 AM, Jeff Johnson wrote: > With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports: > WARNING: modpost: missing MODULE_DESCRIPTION() in > arch/powerpc/kernel/rtas_flash.o > WARNING: modpost: missing MODULE_DESCRIPTION() in > arch/powerpc/sysdev/rtc

Re: [PATCH] cpufreq: powerpc: add missing MODULE_DESCRIPTION() macros

2024-07-15 Thread Jeff Johnson
On 7/1/2024 1:33 AM, Viresh Kumar wrote: > On 14-06-24, 23:08, Jeff Johnson wrote: >> With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports: >> WARNING: modpost: missing MODULE_DESCRIPTION() in >> drivers/cpufreq/ppc-cbe-cpufreq.o >> WARNING: modpo

Re: [PATCH v2 2/3] crypto: X25519 core functions for ppc64le

2024-07-18 Thread Jeff Johnson
On 5/16/24 08:19, Danny Tsen wrote: X25519 core functions to handle scalar multiplication for ppc64le. Signed-off-by: Danny Tsen --- arch/powerpc/crypto/curve25519-ppc64le-core.c | 299 ++ 1 file changed, 299 insertions(+) create mode 100644 arch/powerpc/crypto/curve25519-p

Re: [PATCH v2 2/3] crypto: X25519 core functions for ppc64le

2024-07-18 Thread Jeff Johnson
On 7/18/2024 5:25 PM, Jeff Johnson wrote: > On 5/16/24 08:19, Danny Tsen wrote: >> X25519 core functions to handle scalar multiplication for ppc64le. >> >> Signed-off-by: Danny Tsen >> --- >> arch/powerpc/crypto/curve25519-ppc64le-core.c | 299 ++

[PATCH] crypto: ppc/curve25519 - add missing MODULE_DESCRIPTION() macro

2024-07-18 Thread Jeff Johnson
t: missing MODULE_DESCRIPTION() in arch/powerpc/crypto/curve25519-ppc64le.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson --- arch/powerpc/crypto/curve25519-ppc64le-core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/powerpc/crypto/curve255

Re: [PATCH] cpufreq: powerpc: add missing MODULE_DESCRIPTION() macros

2024-07-22 Thread Jeff Johnson
On 7/22/2024 12:13 AM, Michael Ellerman wrote: > Jeff Johnson writes: >> With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports: >> WARNING: modpost: missing MODULE_DESCRIPTION() in >> drivers/cpufreq/ppc-cbe-cpufreq.o >> WARNING: modpost: missing

[PATCH v2] cpufreq: powerpc: add missing MODULE_DESCRIPTION() macros

2024-07-22 Thread Jeff Johnson
macro to all files which have a MODULE_LICENSE(). This includes three additional files which, although they did not produce a warning with the powerpc allmodconfig configuration, may cause this warning with specific options enabled in the kernel configuration. Signed-off-by: Jeff Johnson --- Chang

[PATCH 1/5] crypto: arm/xor - add missing MODULE_DESCRIPTION() macro

2024-07-30 Thread Jeff Johnson
With ARCH=arm and CONFIG_KERNEL_MODE_NEON=y, make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in arch/arm/lib/xor-neon.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson --- arch/arm/lib/xor-neon.c | 1 + 1 file changed, 1 insertion

[PATCH 2/5] x86/mm: add testmmiotrace MODULE_DESCRIPTION()

2024-07-30 Thread Jeff Johnson
Fix the following 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in arch/x86/mm/testmmiotrace.o Signed-off-by: Jeff Johnson --- arch/x86/mm/testmmiotrace.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/mm/testmmiotrace.c b/arch/x86/mm/testmmiotra

[PATCH 4/5] fsi: add missing MODULE_DESCRIPTION() macros

2024-07-30 Thread Jeff Johnson
the copy/paste of the module description comment in fsi-master-ast-cf.c. Reviewed-by: Eddie James Signed-off-by: Jeff Johnson --- drivers/fsi/fsi-core.c | 1 + drivers/fsi/fsi-master-aspeed.c | 1 + drivers/fsi/fsi-master-ast-cf.c | 3 ++- drivers/fsi/fsi-master-gpio.c | 1 + drivers

[PATCH 5/5] locking/ww_mutex/test: add MODULE_DESCRIPTION()

2024-07-30 Thread Jeff Johnson
Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/locking/test-ww_mutex.o Signed-off-by: Jeff Johnson --- kernel/locking/test-ww_mutex.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/locking/test-ww_mutex.c b/kernel/locking/test-ww_mut

[PATCH 0/5] treewide: add missing MODULE_DESCRIPTION() macros

2024-07-30 Thread Jeff Johnson
ernel.org/all/20240605-md-drivers-fsi-v1-1-fefc82d81...@quicinc.com/ locking/ww_mutex/test: add MODULE_DESCRIPTION() https://lore.kernel.org/all/20240528-md-test-ww_mutex-v2-1-a2a19e920...@quicinc.com/ --- Jeff Johnson (5): crypto: arm/xor - add missing MODULE_DESCRIPTION() macro

[PATCH 3/5] cpufreq: powerpc: add missing MODULE_DESCRIPTION() macros

2024-07-30 Thread Jeff Johnson
Michael Ellerman Signed-off-by: Jeff Johnson --- drivers/cpufreq/maple-cpufreq.c | 1 + drivers/cpufreq/pasemi-cpufreq.c | 1 + drivers/cpufreq/pmac64-cpufreq.c | 1 + drivers/cpufreq/powernv-cpufreq.c | 1 + drivers/cpufreq/ppc_cbe_cpufreq.c | 1 + 5 files changed, 5 insertions(+) diff --git a

Re: [PATCH] crypto: ppc/curve25519 - add missing MODULE_DESCRIPTION() macro

2024-08-02 Thread Jeff Johnson
On 8/2/2024 6:15 AM, Herbert Xu wrote: > On Thu, Jul 18, 2024 at 06:14:18PM -0700, Jeff Johnson wrote: >> Since commit 1fffe7a34c89 ("script: modpost: emit a warning when the >> description is missing"), a module without a MODULE_DESCRIPTION() will >> result

Re: [PATCH] crypto: ppc/curve25519 - add missing MODULE_DESCRIPTION() macro

2024-08-02 Thread Jeff Johnson
On 8/2/2024 8:16 AM, Arnd Bergmann wrote: > On Fri, Aug 2, 2024, at 16:27, Jeff Johnson wrote: >> On 8/2/2024 6:15 AM, Herbert Xu wrote: >>> On Thu, Jul 18, 2024 at 06:14:18PM -0700, Jeff Johnson wrote: >>>> Since commit 1fffe7a34c89 ("script: modpost: emit a w

Re: [PATCHES] drm/radeon issues

2024-10-10 Thread Jeff Johnson
On 10/10/24 06:57, Christian Zigotzky wrote: > Hi All, > > There is another issue with the Radeon DRM driver but there is already a > patch available for this issue. > > Link: > https://lists.freedesktop.org/archives/dri-devel/2024-October/473314.html > > I compiled a new RC2 of kernel 6.12 wi

Re: [PATCH v2 00/21] Converge on using secs_to_jiffies()

2024-11-15 Thread Jeff Johnson
On 11/15/2024 1:29 PM, Easwar Hariharan wrote: > On 11/15/2024 1:26 PM, Easwar Hariharan wrote: >> This is a series that follows up on my previous series to introduce >> secs_to_jiffies() and convert a few initial users.[1] In the review for >> that series, Anna-Maria requested converting other use

Re: [PATCH v2 15/21] wifi: ath11k: Convert timeouts to secs_to_jiffies()

2024-11-15 Thread Jeff Johnson
ies(C) > > Signed-off-by: Easwar Hariharan Acked-by: Jeff Johnson > --- > drivers/net/wireless/ath/ath11k/debugfs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/wireless/ath/ath11k/debugfs.c > b/drivers/net/wireless/ath/ath11k/debu

Re: [PATCH 22/22] jiffies: Define secs_to_jiffies()

2024-11-15 Thread Jeff Johnson
On 11/15/2024 1:22 PM, Easwar Hariharan wrote: > secs_to_jiffies() is defined in hci_event.c and cannot be reused by > other call sites. Hoist it into the core code to allow conversion of the > ~1150 usages of msecs_to_jiffies() that either: > > - use a multiplier value of 1000 or equivalently MS

Re: [PATCH v3 00/19] Converge on using secs_to_jiffies()

2024-12-10 Thread Jeff Johnson
On 12/10/2024 2:02 PM, Easwar Hariharan wrote: > This is a series that follows up on my previous series to introduce > secs_to_jiffies() and convert a few initial users.[1] In the review for > that series, Anna-Maria requested converting other users with > Coccinelle. [2] This is part 1 that conver