Re: [PATCH v2 6/6] ACPI: HMAT: Attach a device for each soft-reserved range

2020-03-25 Thread Will Deacon
rget_node() > implementation for arm64. > > Cc: Jonathan Cameron > Cc: Brice Goglin > Cc: Ard Biesheuvel > Cc: "Rafael J. Wysocki" > Cc: Jeff Moyer > Cc: Catalin Marinas > Cc: Will Deacon > Signed-off-by: Dan Williams >

Re: [PATCH] arm64: configurable sparsemem section size

2019-04-25 Thread Will Deacon
On Thu, Apr 25, 2019 at 05:25:50PM +0200, Michal Hocko wrote: > On Tue 23-04-19 16:38:43, Pavel Tatashin wrote: > > sparsemem section size determines the maximum size and alignment that > > is allowed to offline/online memory block. The bigger the size the less > > the clutter in

Re: [PATCH 0/6] arm64 pmem support

2017-08-07 Thread Will Deacon
rest; it just needs to come > before patch #5 to prevent that blowing up the build. Modulo my two comments: Reviewed-by: Will Deacon <will.dea...@arm.com> Will ___ Linux-nvdimm mailing list Linux-nvdimm@lists.01.org https://lists.01.org/mailman/listinfo/linux-nvdimm

Re: [PATCH 5/6] arm64: Implement pmem API support

2017-08-07 Thread Will Deacon
On Fri, Aug 04, 2017 at 04:25:42PM +0100, Catalin Marinas wrote: > Two minor comments below. > > On Tue, Jul 25, 2017 at 11:55:42AM +0100, Robin Murphy wrote: > > --- a/arch/arm64/Kconfig > > +++ b/arch/arm64/Kconfig > > @@ -960,6 +960,17 @@ config ARM64_UAO > > regular load/store

Re: [PATCH 6/6] arm64: uaccess: Implement *_flushcache variants

2017-08-07 Thread Will Deacon
On Tue, Jul 25, 2017 at 11:55:43AM +0100, Robin Murphy wrote: > Implement the set of copy functions with guarantees of a clean cache > upon completion necessary to support the pmem driver. > > Signed-off-by: Robin Murphy > --- > arch/arm64/Kconfig | 1 + >

Re: [PATCH v3 1/3] arm64: mm: add __clean_dcache_area()

2016-07-21 Thread Will Deacon
On Fri, Jul 15, 2016 at 11:46:20AM +0900, Kwangwoo Lee wrote: > Ensure D-cache lines are cleaned to the PoC(Point of Coherency). > > This function is called by arch_wb_cache_pmem() to clean the cache lines > and remain the data in cache for the next access. > > Signed-off-by: Kwangwoo Lee