Re: [PATCH v3 4/4] Documentation/powerpc/fadump: add additional parameter feature details

2025-02-09 Thread Hari Bathini
Hi Sourabh, Thanks for updating the documentation.. On 23/01/25 5:12 pm, Sourabh Jain wrote: Update the fadump document to include details about the fadump additional parameter feature. The document includes the following: - Significance of the feature - How to use it - Feature restrictions N

Re: [PATCH 2/3] bitmap: convert self-test to KUnit

2025-02-09 Thread Geert Uytterhoeven
On Fri, 7 Feb 2025 at 21:14, Tamir Duberstein wrote: > Convert the bitmap() self-test to a KUnit test. > > In the interest of keeping the patch reasonably-sized this doesn't > refactor the tests into proper parameterized tests - it's all one big > test case. > > Signed-off-by: Tamir Duberstein >

Re: [PATCH 0/3] bitmap: convert self-test to KUnit

2025-02-09 Thread Geert Uytterhoeven
Hi Yuri, On Sat, 8 Feb 2025 at 18:53, Yury Norov wrote: > On Fri, Feb 07, 2025 at 03:14:01PM -0500, Tamir Duberstein wrote: > > On 7/27/24 12:35 AM, Shuah Khan wrote: > > > Please make sure you aren't taking away the ability to run these tests > > > during > > > boot. > > > > > > It doesn't make

Re: [PATCH v2 09/12] dt-bindings: memory-controllers: Convert fsl,elbc to YAML

2025-02-09 Thread Crystal Wood
On Sun, Feb 09, 2025 at 02:31:35PM -0600, Crystal Wood wrote: > On Fri, Feb 07, 2025 at 10:30:26PM +0100, J. Neuschäfer via B4 Relay wrote: > > +simple-periph@2,0 { > > +compatible = "fsl,elbc-gpcm-uio"; > > +reg = <0x2 0x0 0x1>; > > +elbc-gpcm-br = <

Re: [PATCH v2 09/12] dt-bindings: memory-controllers: Convert fsl,elbc to YAML

2025-02-09 Thread Crystal Wood
On Fri, Feb 07, 2025 at 10:30:26PM +0100, J. Neuschäfer via B4 Relay wrote: > From: "J. Neuschäfer" > > Convert the Freescale localbus controller bindings from text form to > YAML. The updated list of compatible strings reflects current usage > in arch/powerpc/boot/dts/, except that many existing

[PATCH] powerpc/fsl_lbc: Explicitly populate bus

2025-02-09 Thread J . Neuschäfer via B4 Relay
_ENABLE); - return 0; + return devm_of_platform_populate(&dev->dev); err1: free_irq(fsl_lbc_ctrl_dev->irq[0], fsl_lbc_ctrl_dev); --- base-commit: 7ccde445dddcca030cd6ed66974bb80915ad9dd5 change-id: 20250209-localbus-94a6ebb04c12 Best regards, -- J. Neuschäfer

Re: (subset) [PATCH v2 0/2] Remove cxl and cxlflash drivers

2025-02-09 Thread Martin K. Petersen
On Mon, 03 Feb 2025 18:27:58 +1100, Andrew Donnellan wrote: > This series removes the cxl and cxlflash drivers for IBM CAPI devices. > > CAPI devices have been out of production for some time, and we're not > aware of any remaining users who are likely to want a modern kernel. > There's almost ce

[linux-next][next-20250207]Observing Kernel Softlock up's while running kselftest

2025-02-09 Thread Venkat Rao Bagalkote
Greetings!!! I am observing kernel soft lock up's while running kselftest on IBM Power Servers. Though, I colud not reporduce this consistently, but CI has detected this error twice now. Hence reporting. This error was reported firat time, while running signal component tests and second ti

Re: [PATCH v3 2/4] powerpc/fadump: fix additional param memory reservation for HASH MMU

2025-02-09 Thread Hari Bathini
Hi Sourabh, On 23/01/25 5:12 pm, Sourabh Jain wrote: Commit 683eab94da75bc ("powerpc/fadump: setup additional parameters for dump capture kernel") introduced the additional parameter feature in fadump for HASH MMU with the understanding that GRUB does not use the memory area between 640MB and 76

Re: [RESEND PATCH] fadump: Use str_yes_no() helper in fadump_show_config()

2025-02-09 Thread Christophe Leroy
Hi, Le 09/02/2025 à 09:17, Thorsten Blum a écrit : Remove hard-coded strings by using the str_yes_no() helper function. Reviewed-by: Sourabh Jain Reviewed-by: Ritesh Harjani (IBM) Signed-off-by: Thorsten Blum Any reason for resending ? Your patch is not lost, see https://patchwork.ozlabs.

Re: [PATCH net-next] net: phy: remove unused PHY_INIT_TIMEOUT definitions

2025-02-09 Thread Christophe Leroy
Le 08/02/2025 à 22:14, Heiner Kallweit a écrit : Both identical definitions of PHY_INIT_TIMEOUT aren't used, so remove them. Would be good to say when it stopped being used, ie which commit or commits removed its use. Also why only remove PHY_INIT_TIMEOUT ? For instance PHY_FORCE_TIMEOUT

Re: [RESEND PATCH] fadump: Use str_yes_no() helper in fadump_show_config()

2025-02-09 Thread Thorsten Blum
On 9. Feb 2025, at 10:16, Christophe Leroy wrote: > Le 09/02/2025 à 09:17, Thorsten Blum a écrit : >> Remove hard-coded strings by using the str_yes_no() helper function. >> Reviewed-by: Sourabh Jain >> Reviewed-by: Ritesh Harjani (IBM) >> Signed-off-by: Thorsten Blum > > Any reason for resendi

Re: [PATCH v6 21/26] fs/dax: Properly refcount fs dax pages

2025-02-09 Thread Alistair Popple
On Thu, Feb 06, 2025 at 09:50:07PM -0800, Dan Williams wrote: > Alistair Popple wrote: > > On Mon, Jan 13, 2025 at 07:35:07PM -0800, Dan Williams wrote: > > > Alistair Popple wrote: > > > > [...] > > > > > ...and here is that aformentioned patch: > > > > This patch is different from what you ori

Re: [PATCH 3/3] bitmap: break kunit into test cases

2025-02-09 Thread Muhammad Usama Anjum
On 2/8/25 1:14 AM, Tamir Duberstein wrote: > Move some tests into `bitmap_test_cases` and parameterize > `test_bitmap_print_buf`. This gives us nicer output in the event of a > failure. > > Signed-off-by: Tamir Duberstein Reviewed-by: Muhammad Usama Anjum > --- > lib/bitmap_kunit.c | 182 > ++

Re: [PATCH 2/3] bitmap: convert self-test to KUnit

2025-02-09 Thread Muhammad Usama Anjum
On 2/8/25 1:14 AM, Tamir Duberstein wrote: > Convert the bitmap() self-test to a KUnit test. > > In the interest of keeping the patch reasonably-sized this doesn't > refactor the tests into proper parameterized tests - it's all one big > test case. > > Signed-off-by: Tamir Duberstein Thanks for

Re: [PATCH 1/3] bitmap: remove _check_eq_u32_array

2025-02-09 Thread Muhammad Usama Anjum
On 2/8/25 1:14 AM, Tamir Duberstein wrote: > This has been unused since commit 3aa56885e516 ("bitmap: replace > bitmap_{from,to}_u32array") in 2018. Remove it to avoid the need to port > it to KUnit in this series. > > Signed-off-by: Tamir Duberstein Reviewed-by: Muhammad Usama Anjum > --- > l

Re: [PATCH net-next] net: freescale: ucc_geth: remove unused PHY_INIT_TIMEOUT and PHY_CHANGE_TIME

2025-02-09 Thread Gerhard Engleder
On 09.02.25 13:27, Heiner Kallweit wrote: Both definitions are unused. Last users have been removed with: 1577ecef7666 ("netdev: Merge UCC and gianfar MDIO bus drivers") 728de4c927a3 ("ucc_geth: migrate ucc_geth to phylib") Signed-off-by: Heiner Kallweit --- drivers/net/ethernet/freescale/uc

Re: [PATCH 2/2] powerpc/fadump: fix additional param memory reservation for HASH MMU

2025-02-09 Thread Hari Bathini
On 04/02/25 2:07 pm, Avnish Chouhan wrote: On 2025-02-04 11:57, Hari Bathini wrote: On 04/02/25 10:58 am, Avnish Chouhan wrote: On 2025-01-31 20:44, Hari Bathini wrote: On 23/01/25 7:54 pm, Avnish Chouhan wrote: On 2025-01-23 15:26, Hari Bathini wrote: On 20/01/25 11:05 pm, Sourabh Jain w

Re: [PATCH 1/9] of: Add warpper function of_find_node_by_name_balanced()

2025-02-09 Thread zhangzekun (A)
Hi, Laurent, I think we all agree that of_find_node_by_name() is miused, and that it shows the API isn't optimal. What we have different opinions on is how to make the API less error-prone. I think adding a new of_find_node_by_name_balanced() function works around the issue and doesn't improve t

Re: [PATCH net-next] net: phy: remove unused PHY_INIT_TIMEOUT definitions

2025-02-09 Thread Heiner Kallweit
On 09.02.2025 10:28, Christophe Leroy wrote: > > > Le 08/02/2025 à 22:14, Heiner Kallweit a écrit : >> Both identical definitions of PHY_INIT_TIMEOUT aren't used, >> so remove them. > > Would be good to say when it stopped being used, ie which commit or commits > removed its use. > > Also why

Re: [PATCH v3 5/9] powerpc: Use preempt_model_str().

2025-02-09 Thread Shrikanth Hegde
On 2/8/25 23:25, Christophe Leroy wrote: Le 08/02/2025 à 14:42, Shrikanth Hegde a écrit : On 2/8/25 18:25, Christophe Leroy wrote: Le 08/02/2025 à 08:35, Shrikanth Hegde a écrit : On 2/4/25 13:52, Sebastian Andrzej Siewior wrote: Use preempt_model_str() instead of manually conducti

[PATCH net-next] net: freescale: ucc_geth: remove unused PHY_INIT_TIMEOUT and PHY_CHANGE_TIME

2025-02-09 Thread Heiner Kallweit
Both definitions are unused. Last users have been removed with: 1577ecef7666 ("netdev: Merge UCC and gianfar MDIO bus drivers") 728de4c927a3 ("ucc_geth: migrate ucc_geth to phylib") Signed-off-by: Heiner Kallweit --- drivers/net/ethernet/freescale/ucc_geth.h | 2 -- 1 file changed, 2 deletions(

[RESEND PATCH] fadump: Use str_yes_no() helper in fadump_show_config()

2025-02-09 Thread Thorsten Blum
Remove hard-coded strings by using the str_yes_no() helper function. Reviewed-by: Sourabh Jain Reviewed-by: Ritesh Harjani (IBM) Signed-off-by: Thorsten Blum --- arch/powerpc/kernel/fadump.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/powerpc/kernel/fadump.c

Re: [PATCH v2 09/12] dt-bindings: memory-controllers: Convert fsl,elbc to YAML

2025-02-09 Thread J . Neuschäfer
On Sun, Feb 09, 2025 at 06:30:44PM +0100, Krzysztof Kozlowski wrote: > On 09/02/2025 18:28, J. Neuschäfer wrote: > > On Fri, Feb 07, 2025 at 05:44:59PM -0600, Rob Herring (Arm) wrote: > >> On Fri, 07 Feb 2025 22:30:26 +0100, J. Neuschäfer wrote: > > [...] > >>> .../bindings/memory-controllers/fsl,

Re: [PATCH v2 09/12] dt-bindings: memory-controllers: Convert fsl,elbc to YAML

2025-02-09 Thread J . Neuschäfer
On Fri, Feb 07, 2025 at 05:44:59PM -0600, Rob Herring (Arm) wrote: > On Fri, 07 Feb 2025 22:30:26 +0100, J. Neuschäfer wrote: [...] > > .../bindings/memory-controllers/fsl,elbc.yaml | 146 > > + > > .../devicetree/bindings/powerpc/fsl/lbc.txt| 43 -- > > 2 fi

Re: [PATCH v2 09/12] dt-bindings: memory-controllers: Convert fsl,elbc to YAML

2025-02-09 Thread Krzysztof Kozlowski
On 09/02/2025 18:28, J. Neuschäfer wrote: > On Fri, Feb 07, 2025 at 05:44:59PM -0600, Rob Herring (Arm) wrote: >> On Fri, 07 Feb 2025 22:30:26 +0100, J. Neuschäfer wrote: > [...] >>> .../bindings/memory-controllers/fsl,elbc.yaml | 146 >>> + >>> .../devicetree/bindings/po

Re: [PATCH v3 5/9] powerpc: Use preempt_model_str().

2025-02-09 Thread Christophe Leroy
Le 09/02/2025 à 15:38, Shrikanth Hegde a écrit : On 2/8/25 23:25, Christophe Leroy wrote: Le 08/02/2025 à 14:42, Shrikanth Hegde a écrit : On 2/8/25 18:25, Christophe Leroy wrote: Le 08/02/2025 à 08:35, Shrikanth Hegde a écrit : On 2/4/25 13:52, Sebastian Andrzej Siewior wrote: