forked from mirrors/linux
		
	 a6c7f4c6ae
			
		
	
	
		a6c7f4c6ae
		
	
	
	
	
		
			
			Platform firmware like EFI/ACPI may publish "hmem" platform devices. Such a device is a performance differentiated memory range likely reserved for an application specific use case. The driver gives access to 100% of the capacity via a device-dax mmap instance by default. However, if over-subscription and other kernel memory management is desired the resulting dax device can be assigned to the core-mm via the kmem driver. This consumes "hmem" devices the producer of "hmem" devices is saved for a follow-on patch so that it can reference the new CONFIG_DEV_DAX_HMEM symbol to gate performing the enumeration work. Reported-by: kbuild test robot <lkp@intel.com> Reviewed-by: Dave Hansen <dave.hansen@linux.intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #ifndef _MEMREGION_H_
 | |
| #define _MEMREGION_H_
 | |
| #include <linux/types.h>
 | |
| #include <linux/errno.h>
 | |
| 
 | |
| struct memregion_info {
 | |
| 	int target_node;
 | |
| };
 | |
| 
 | |
| #ifdef CONFIG_MEMREGION
 | |
| int memregion_alloc(gfp_t gfp);
 | |
| void memregion_free(int id);
 | |
| #else
 | |
| static inline int memregion_alloc(gfp_t gfp)
 | |
| {
 | |
| 	return -ENOMEM;
 | |
| }
 | |
| void memregion_free(int id)
 | |
| {
 | |
| }
 | |
| #endif
 | |
| #endif /* _MEMREGION_H_ */
 |