[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Z-7WImoc5Dg3Xtyq@smile.fi.intel.com>
Date: Thu, 3 Apr 2025 21:40:34 +0300
From: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
To: Terry Bowman <terry.bowman@....com>
Cc: dave@...olabs.net, jonathan.cameron@...wei.com, dave.jiang@...el.com,
alison.schofield@...el.com, vishal.l.verma@...el.com,
ira.weiny@...el.com, dan.j.williams@...el.com, willy@...radead.org,
jack@...e.cz, rafael@...nel.org, len.brown@...el.com, pavel@....cz,
ming.li@...omail.com, nathan.fontenot@....com,
Smita.KoralahalliChannabasappa@....com,
huang.ying.caritas@...il.com, yaoxt.fnst@...itsu.com,
peterz@...radead.org, gregkh@...uxfoundation.org,
quic_jjohnson@...cinc.com, ilpo.jarvinen@...ux.intel.com,
bhelgaas@...gle.com, mika.westerberg@...ux.intel.com,
akpm@...ux-foundation.org, gourry@...rry.net,
linux-cxl@...r.kernel.org, linux-kernel@...r.kernel.org,
nvdimm@...ts.linux.dev, linux-fsdevel@...r.kernel.org,
linux-pm@...r.kernel.org, rrichter@....com,
benjamin.cheatham@....com, PradeepVineshReddy.Kodamati@....com,
lizhijian@...itsu.com
Subject: Re: [PATCH v3 1/4] kernel/resource: Provide mem region release for
SOFT RESERVES
On Thu, Apr 03, 2025 at 01:33:12PM -0500, Terry Bowman wrote:
> From: Nathan Fontenot <nathan.fontenot@....com>
>
> Add a release_Sam_region_adjustable() interface to allow for
> removing SOFT RESERVE memory resources. This extracts out the code
> to remove a mem region into a common __release_mem_region_adjustable()
> routine, this routine takes additional parameters of an IORES
> descriptor type to add checks for IORES_DESC_* and a flag to check
> for IORESOURCE_BUSY to control it's behavior.
>
> The existing release_mem_region_adjustable() is a front end to the
> common code and a new release_srmem_region_adjustable() is added to
> release SOFT RESERVE resources.
...
> +void release_mem_region_adjustable(resource_size_t start, resource_size_t size)
> +{
> + return __release_mem_region_adjustable(start, size,
You have still room on the previous line for the parameters.
> + true, IORES_DESC_NONE);
Return on void?! Interesting... What do you want to do here?
> +}
> +EXPORT_SYMBOL(release_mem_region_adjustable);
> +#endif
> +
> +#ifdef CONFIG_CXL_REGION
> +void release_srmem_region_adjustable(resource_size_t start,
> + resource_size_t size)
This can be put on a single line.
> +{
> + return __release_mem_region_adjustable(start, size,
> + false, IORES_DESC_SOFT_RESERVED);
Same comments as per above function.
> +}
> +EXPORT_SYMBOL(release_srmem_region_adjustable);
> +#endif
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists