forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-4.7/dax' into libnvdimm-for-next
- Loading branch information
Showing
26 changed files
with
935 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
menuconfig DEV_DAX | ||
tristate "DAX: direct access to differentiated memory" | ||
default m if NVDIMM_DAX | ||
depends on TRANSPARENT_HUGEPAGE | ||
help | ||
Support raw access to differentiated (persistence, bandwidth, | ||
latency...) memory via an mmap(2) capable character | ||
device. Platform firmware or a device driver may identify a | ||
platform memory resource that is differentiated from the | ||
baseline memory pool. Mappings of a /dev/daxX.Y device impose | ||
restrictions that make the mapping behavior deterministic. | ||
|
||
if DEV_DAX | ||
|
||
config DEV_DAX_PMEM | ||
tristate "PMEM DAX: direct access to persistent memory" | ||
depends on NVDIMM_DAX | ||
default DEV_DAX | ||
help | ||
Support raw access to persistent memory. Note that this | ||
driver consumes memory ranges allocated and exported by the | ||
libnvdimm sub-system. | ||
|
||
Say Y if unsure | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
obj-$(CONFIG_DEV_DAX) += dax.o | ||
obj-$(CONFIG_DEV_DAX_PMEM) += dax_pmem.o | ||
|
||
dax_pmem-y := pmem.o |
Oops, something went wrong.