Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-28 Thread Atish Patra
On Fri, Aug 28, 2020 at 2:24 AM Jonathan Cameron wrote: > > On Fri, 14 Aug 2020 14:47:20 -0700 > Atish Patra wrote: > > > ARM64 numa implementation is generic enough that RISC-V can reuse that > > implementation with very minor cosmetic changes. This will help both > > ARM64 and RISC-V in terms o

Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-28 Thread Jonathan Cameron
On Fri, 14 Aug 2020 14:47:20 -0700 Atish Patra wrote: > ARM64 numa implementation is generic enough that RISC-V can reuse that > implementation with very minor cosmetic changes. This will help both > ARM64 and RISC-V in terms of maintanace and feature improvement > > Move the numa implementation

Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-28 Thread Jonathan Cameron
On Fri, 21 Aug 2020 14:58:22 -0700 Atish Patra wrote: > On Wed, Aug 19, 2020 at 8:20 PM Anshuman Khandual > wrote: > > > > > > > > On 08/20/2020 12:48 AM, Atish Patra wrote: > > > On Tue, Aug 18, 2020 at 8:19 PM Anshuman Khandual > > > wrote: > > >> > > >> > > >> > > >> On 08/15/2020 03:17

Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-21 Thread Atish Patra
On Wed, Aug 19, 2020 at 8:20 PM Anshuman Khandual wrote: > > > > On 08/20/2020 12:48 AM, Atish Patra wrote: > > On Tue, Aug 18, 2020 at 8:19 PM Anshuman Khandual > > wrote: > >> > >> > >> > >> On 08/15/2020 03:17 AM, Atish Patra wrote: > >>> ARM64 numa implementation is generic enough that RISC-V

Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-19 Thread Anshuman Khandual
On 08/20/2020 12:48 AM, Atish Patra wrote: > On Tue, Aug 18, 2020 at 8:19 PM Anshuman Khandual > wrote: >> >> >> >> On 08/15/2020 03:17 AM, Atish Patra wrote: >>> ARM64 numa implementation is generic enough that RISC-V can reuse that >>> implementation with very minor cosmetic changes. This wil

Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-19 Thread Atish Patra
On Tue, Aug 18, 2020 at 8:19 PM Anshuman Khandual wrote: > > > > On 08/15/2020 03:17 AM, Atish Patra wrote: > > ARM64 numa implementation is generic enough that RISC-V can reuse that > > implementation with very minor cosmetic changes. This will help both > > ARM64 and RISC-V in terms of maintanac

Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-18 Thread Anshuman Khandual
On 08/15/2020 03:17 AM, Atish Patra wrote: > ARM64 numa implementation is generic enough that RISC-V can reuse that > implementation with very minor cosmetic changes. This will help both > ARM64 and RISC-V in terms of maintanace and feature improvement > > Move the numa implementation code to c

Re: [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-14 Thread Randy Dunlap
On 8/14/20 2:47 PM, Atish Patra wrote: > diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig > index 8d7001712062..73c2151de194 100644 > --- a/drivers/base/Kconfig > +++ b/drivers/base/Kconfig > @@ -210,4 +210,10 @@ config GENERIC_ARCH_TOPOLOGY > appropriate scaling, sysfs interface fo

[RFC/RFT PATCH 1/6] numa: Move numa implementation to common code

2020-08-14 Thread Atish Patra
ARM64 numa implementation is generic enough that RISC-V can reuse that implementation with very minor cosmetic changes. This will help both ARM64 and RISC-V in terms of maintanace and feature improvement Move the numa implementation code to common directory so that both ISAs can reuse this. This d