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 tag 'libnvdimm-for-4.19_misc' of gitolite.kernel.org:pub/scm/li…
…nux/kernel/git/nvdimm/nvdimm Pull libnvdimm updates from Dave Jiang: "Collection of misc libnvdimm patches for 4.19 submission: - Adding support to read locked nvdimm capacity. - Change test code to make DSM failure code injection an override. - Add support for calculate maximum contiguous area for namespace. - Add support for queueing a short ARS when there is on going ARS for nvdimm. - Allow NULL to be passed in to ->direct_access() for kaddr and pfn params. - Improve smart injection support for nvdimm emulation testing. - Fix test code that supports for emulating controller temperature. - Fix hang on error before devm_memremap_pages() - Fix a bug that causes user memory corruption when data returned to user for ars_status. - Maintainer updates for Ross Zwisler emails and adding Jan Kara to fsdax" * tag 'libnvdimm-for-4.19_misc' of gitolite.kernel.org:pub/scm/linux/kernel/git/nvdimm/nvdimm: libnvdimm: fix ars_status output length calculation device-dax: avoid hang on error before devm_memremap_pages() tools/testing/nvdimm: improve emulation of smart injection filesystem-dax: Do not request kaddr and pfn when not required md/dm-writecache: Don't request pointer dummy_addr when not required dax/super: Do not request a pointer kaddr when not required tools/testing/nvdimm: kaddr and pfn can be NULL to ->direct_access() s390, dcssblk: kaddr and pfn can be NULL to ->direct_access() libnvdimm, pmem: kaddr and pfn can be NULL to ->direct_access() acpi/nfit: queue issuing of ars when an uc error notification comes in libnvdimm: Export max available extent libnvdimm: Use max contiguous area for namespace size MAINTAINERS: Add Jan Kara for filesystem DAX MAINTAINERS: update Ross Zwisler's email address tools/testing/nvdimm: Fix support for emulating controller temperature tools/testing/nvdimm: Make DSM failure code injection an override acpi, nfit: Prefer _DSM over _LSR for namespace label reads libnvdimm: Introduce locked DIMM capacity support
- Loading branch information
Showing
19 changed files
with
270 additions
and
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,6 +159,7 @@ Ralf Wildenhues <[email protected]> | |
Randy Dunlap <[email protected]> <[email protected]> | ||
Rémi Denis-Courmont <[email protected]> | ||
Ricardo Ribalda Delgado <[email protected]> | ||
Ross Zwisler <[email protected]> <[email protected]> | ||
Rudolf Marek <[email protected]> | ||
Rui Saraiva <[email protected]> | ||
Sachin P Sant <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -4364,7 +4364,8 @@ F: drivers/i2c/busses/i2c-diolan-u2c.c | |
|
||
FILESYSTEM DIRECT ACCESS (DAX) | ||
M: Matthew Wilcox <[email protected]> | ||
M: Ross Zwisler <[email protected]> | ||
M: Ross Zwisler <[email protected]> | ||
M: Jan Kara <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
F: fs/dax.c | ||
|
@@ -4374,7 +4375,7 @@ F: include/trace/events/fs_dax.h | |
DEVICE DIRECT ACCESS (DAX) | ||
M: Dan Williams <[email protected]> | ||
M: Dave Jiang <[email protected]> | ||
M: Ross Zwisler <ross.zwisler@linux.intel.com> | ||
M: Ross Zwisler <zwisler@kernel.org> | ||
M: Vishal Verma <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
|
@@ -8303,7 +8304,7 @@ S: Maintained | |
F: tools/lib/lockdep/ | ||
|
||
LIBNVDIMM BLK: MMIO-APERTURE DRIVER | ||
M: Ross Zwisler <ross.zwisler@linux.intel.com> | ||
M: Ross Zwisler <zwisler@kernel.org> | ||
M: Dan Williams <[email protected]> | ||
M: Vishal Verma <[email protected]> | ||
M: Dave Jiang <[email protected]> | ||
|
@@ -8316,15 +8317,15 @@ F: drivers/nvdimm/region_devs.c | |
LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | ||
M: Vishal Verma <[email protected]> | ||
M: Dan Williams <[email protected]> | ||
M: Ross Zwisler <ross.zwisler@linux.intel.com> | ||
M: Ross Zwisler <zwisler@kernel.org> | ||
M: Dave Jiang <[email protected]> | ||
L: [email protected] | ||
Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | ||
S: Supported | ||
F: drivers/nvdimm/btt* | ||
|
||
LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | ||
M: Ross Zwisler <ross.zwisler@linux.intel.com> | ||
M: Ross Zwisler <zwisler@kernel.org> | ||
M: Dan Williams <[email protected]> | ||
M: Vishal Verma <[email protected]> | ||
M: Dave Jiang <[email protected]> | ||
|
@@ -8343,7 +8344,7 @@ F: Documentation/devicetree/bindings/pmem/pmem-region.txt | |
|
||
LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM | ||
M: Dan Williams <[email protected]> | ||
M: Ross Zwisler <ross.zwisler@linux.intel.com> | ||
M: Ross Zwisler <zwisler@kernel.org> | ||
M: Vishal Verma <[email protected]> | ||
M: Dave Jiang <[email protected]> | ||
L: [email protected] | ||
|
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
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
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
Oops, something went wrong.