memregion: Drop unused IORES_DESC_* parameter from cpu_cache_invalidate_memregion()
The res_desc parameter was originally introduced for documentation purposes and with the idea that with HDM-DB CXL invalidation could be triggered from the device. That has not come to pass and the continued existence of the option is confusing when we add a range in the following patch which might not be a strict subset of the res_desc. So avoid that confusion by dropping the parameter. Link: https://lore.kernel.org/linux-mm/686eedb25ed02_24471002e@dwillia2-xfh.jf.intel.com.notmuch/ Reviewed-by: Dan Williams <dan.j.williams@intel.com> Suggested-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
This commit is contained in:
committed by
Conor Dooley
parent
d52341da4d
commit
f49ae86483
@@ -368,7 +368,7 @@ bool cpu_cache_has_invalidate_memregion(void)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_NS_GPL(cpu_cache_has_invalidate_memregion, "DEVMEM");
|
EXPORT_SYMBOL_NS_GPL(cpu_cache_has_invalidate_memregion, "DEVMEM");
|
||||||
|
|
||||||
int cpu_cache_invalidate_memregion(int res_desc)
|
int cpu_cache_invalidate_memregion(void)
|
||||||
{
|
{
|
||||||
if (WARN_ON_ONCE(!cpu_cache_has_invalidate_memregion()))
|
if (WARN_ON_ONCE(!cpu_cache_has_invalidate_memregion()))
|
||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
|
|||||||
@@ -228,7 +228,7 @@ static int cxl_region_invalidate_memregion(struct cxl_region *cxlr)
|
|||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
cpu_cache_invalidate_memregion(IORES_DESC_CXL);
|
cpu_cache_invalidate_memregion();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ static void nd_region_remove(struct device *dev)
|
|||||||
* here is ok.
|
* here is ok.
|
||||||
*/
|
*/
|
||||||
if (cpu_cache_has_invalidate_memregion())
|
if (cpu_cache_has_invalidate_memregion())
|
||||||
cpu_cache_invalidate_memregion(IORES_DESC_PERSISTENT_MEMORY);
|
cpu_cache_invalidate_memregion();
|
||||||
}
|
}
|
||||||
|
|
||||||
static int child_notify(struct device *dev, void *data)
|
static int child_notify(struct device *dev, void *data)
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ static int nd_region_invalidate_memregion(struct nd_region *nd_region)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cpu_cache_invalidate_memregion(IORES_DESC_PERSISTENT_MEMORY);
|
cpu_cache_invalidate_memregion();
|
||||||
out:
|
out:
|
||||||
for (i = 0; i < nd_region->ndr_mappings; i++) {
|
for (i = 0; i < nd_region->ndr_mappings; i++) {
|
||||||
struct nd_mapping *nd_mapping = &nd_region->mapping[i];
|
struct nd_mapping *nd_mapping = &nd_region->mapping[i];
|
||||||
|
|||||||
@@ -26,8 +26,7 @@ static inline void memregion_free(int id)
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* cpu_cache_invalidate_memregion - drop any CPU cached data for
|
* cpu_cache_invalidate_memregion - drop any CPU cached data for
|
||||||
* memregions described by @res_desc
|
* memregion
|
||||||
* @res_desc: one of the IORES_DESC_* types
|
|
||||||
*
|
*
|
||||||
* Perform cache maintenance after a memory event / operation that
|
* Perform cache maintenance after a memory event / operation that
|
||||||
* changes the contents of physical memory in a cache-incoherent manner.
|
* changes the contents of physical memory in a cache-incoherent manner.
|
||||||
@@ -46,7 +45,7 @@ static inline void memregion_free(int id)
|
|||||||
* the cache maintenance.
|
* the cache maintenance.
|
||||||
*/
|
*/
|
||||||
#ifdef CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION
|
#ifdef CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION
|
||||||
int cpu_cache_invalidate_memregion(int res_desc);
|
int cpu_cache_invalidate_memregion(void);
|
||||||
bool cpu_cache_has_invalidate_memregion(void);
|
bool cpu_cache_has_invalidate_memregion(void);
|
||||||
#else
|
#else
|
||||||
static inline bool cpu_cache_has_invalidate_memregion(void)
|
static inline bool cpu_cache_has_invalidate_memregion(void)
|
||||||
@@ -54,7 +53,7 @@ static inline bool cpu_cache_has_invalidate_memregion(void)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int cpu_cache_invalidate_memregion(int res_desc)
|
static inline int cpu_cache_invalidate_memregion(void)
|
||||||
{
|
{
|
||||||
WARN_ON_ONCE("CPU cache invalidation required");
|
WARN_ON_ONCE("CPU cache invalidation required");
|
||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
|
|||||||
Reference in New Issue
Block a user