mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
df2798bc77
In preparation for moving more filtering of "hmem" ranges into the dax_hmem.ko module, update the initcall levels. HMAT range registration moves to subsys_initcall() to be done before Soft Reservation probing, and Soft Reservation probing is moved to device_initcall() to be done before dax_hmem.ko initialization if it is built-in. Tested-by: Fan Ni <fan.ni@samsung.com> Reviewed-by: Vishal Verma <vishal.l.verma@intel.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Link: https://lore.kernel.org/r/167602001107.1924368.11562316181038595611.stgit@dwillia2-xfh.jf.intel.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
8 lines
247 B
Makefile
8 lines
247 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# device_hmem.o deliberately precedes dax_hmem.o for initcall ordering
|
|
obj-$(CONFIG_DEV_DAX_HMEM_DEVICES) += device_hmem.o
|
|
obj-$(CONFIG_DEV_DAX_HMEM) += dax_hmem.o
|
|
|
|
device_hmem-y := device.o
|
|
dax_hmem-y := hmem.o
|