2017-07-13 00:58:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Copyright(c) 2016-2018 Intel Corporation. All rights reserved. */
|
2018-10-29 22:52:42 +00:00
|
|
|
#include <linux/memremap.h>
|
2016-05-18 16:15:08 +00:00
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/pfn_t.h>
|
2016-07-24 22:55:42 +00:00
|
|
|
#include <linux/cdev.h>
|
2016-05-18 16:15:08 +00:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/dax.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
2018-04-19 20:39:43 +00:00
|
|
|
#include <linux/mman.h>
|
2017-04-07 22:33:36 +00:00
|
|
|
#include "dax-private.h"
|
2017-07-13 00:58:21 +00:00
|
|
|
#include "bus.h"
|
2016-05-18 16:15:08 +00:00
|
|
|
|
2017-01-31 05:43:10 +00:00
|
|
|
static int check_vma(struct dev_dax *dev_dax, struct vm_area_struct *vma,
|
2016-05-14 19:20:44 +00:00
|
|
|
const char *func)
|
|
|
|
{
|
2017-01-31 05:43:10 +00:00
|
|
|
struct device *dev = &dev_dax->dev;
|
2016-05-14 19:20:44 +00:00
|
|
|
unsigned long mask;
|
|
|
|
|
2017-04-11 16:49:49 +00:00
|
|
|
if (!dax_alive(dev_dax->dax_dev))
|
2016-05-14 19:20:44 +00:00
|
|
|
return -ENXIO;
|
|
|
|
|
2016-11-16 17:00:38 +00:00
|
|
|
/* prevent private mappings from being established */
|
2016-12-07 01:03:35 +00:00
|
|
|
if ((vma->vm_flags & VM_MAYSHARE) != VM_MAYSHARE) {
|
2018-06-27 15:43:58 +00:00
|
|
|
dev_info_ratelimited(dev,
|
|
|
|
"%s: %s: fail, attempted private mapping\n",
|
2016-05-14 19:20:44 +00:00
|
|
|
current->comm, func);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
mask = dev_dax->align - 1;
|
2016-05-14 19:20:44 +00:00
|
|
|
if (vma->vm_start & mask || vma->vm_end & mask) {
|
2018-06-27 15:43:58 +00:00
|
|
|
dev_info_ratelimited(dev,
|
|
|
|
"%s: %s: fail, unaligned vma (%#lx - %#lx, %#lx)\n",
|
2016-05-14 19:20:44 +00:00
|
|
|
current->comm, func, vma->vm_start, vma->vm_end,
|
|
|
|
mask);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vma_is_dax(vma)) {
|
2018-06-27 15:43:58 +00:00
|
|
|
dev_info_ratelimited(dev,
|
|
|
|
"%s: %s: fail, vma is not DAX capable\n",
|
2016-05-14 19:20:44 +00:00
|
|
|
current->comm, func);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-07 22:33:36 +00:00
|
|
|
/* see "strong" declaration in tools/testing/nvdimm/dax-dev.c */
|
2017-05-05 06:38:43 +00:00
|
|
|
__weak phys_addr_t dax_pgoff_to_phys(struct dev_dax *dev_dax, pgoff_t pgoff,
|
2016-05-14 19:20:44 +00:00
|
|
|
unsigned long size)
|
|
|
|
{
|
2020-10-13 23:50:39 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < dev_dax->nr_range; i++) {
|
|
|
|
struct dev_dax_range *dax_range = &dev_dax->ranges[i];
|
|
|
|
struct range *range = &dax_range->range;
|
|
|
|
unsigned long long pgoff_end;
|
|
|
|
phys_addr_t phys;
|
|
|
|
|
|
|
|
pgoff_end = dax_range->pgoff + PHYS_PFN(range_len(range)) - 1;
|
|
|
|
if (pgoff < dax_range->pgoff || pgoff > pgoff_end)
|
|
|
|
continue;
|
|
|
|
phys = PFN_PHYS(pgoff - dax_range->pgoff) + range->start;
|
2020-10-13 23:49:43 +00:00
|
|
|
if (phys + size - 1 <= range->end)
|
2016-05-14 19:20:44 +00:00
|
|
|
return phys;
|
2020-10-13 23:50:39 +00:00
|
|
|
break;
|
2016-05-14 19:20:44 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-07-14 04:49:34 +00:00
|
|
|
static vm_fault_t __dev_dax_pte_fault(struct dev_dax *dev_dax,
|
2018-07-14 04:49:40 +00:00
|
|
|
struct vm_fault *vmf, pfn_t *pfn)
|
2016-05-14 19:20:44 +00:00
|
|
|
{
|
2017-01-31 05:43:10 +00:00
|
|
|
struct device *dev = &dev_dax->dev;
|
2016-05-14 19:20:44 +00:00
|
|
|
phys_addr_t phys;
|
2017-03-10 20:24:22 +00:00
|
|
|
unsigned int fault_size = PAGE_SIZE;
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2017-01-31 05:43:10 +00:00
|
|
|
if (check_vma(dev_dax, vmf->vma, __func__))
|
2016-05-14 19:20:44 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
if (dev_dax->align > PAGE_SIZE) {
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(dev, "alignment (%#x) > fault size (%#x)\n",
|
2020-10-13 23:50:50 +00:00
|
|
|
dev_dax->align, fault_size);
|
2016-05-14 19:20:44 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
}
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
if (fault_size != dev_dax->align)
|
2017-03-10 20:24:22 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
|
2017-05-05 06:38:43 +00:00
|
|
|
phys = dax_pgoff_to_phys(dev_dax, vmf->pgoff, PAGE_SIZE);
|
2016-05-14 19:20:44 +00:00
|
|
|
if (phys == -1) {
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(dev, "pgoff_to_phys(%#lx) failed\n", vmf->pgoff);
|
2016-05-14 19:20:44 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
}
|
|
|
|
|
2020-10-13 23:49:33 +00:00
|
|
|
*pfn = phys_to_pfn_t(phys, PFN_DEV|PFN_MAP);
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2018-07-14 04:49:40 +00:00
|
|
|
return vmf_insert_mixed(vmf->vma, vmf->address, *pfn);
|
2016-05-14 19:20:44 +00:00
|
|
|
}
|
|
|
|
|
2018-07-14 04:49:34 +00:00
|
|
|
static vm_fault_t __dev_dax_pmd_fault(struct dev_dax *dev_dax,
|
2018-07-14 04:49:40 +00:00
|
|
|
struct vm_fault *vmf, pfn_t *pfn)
|
2016-05-14 19:20:44 +00:00
|
|
|
{
|
2017-02-22 23:40:03 +00:00
|
|
|
unsigned long pmd_addr = vmf->address & PMD_MASK;
|
2017-01-31 05:43:10 +00:00
|
|
|
struct device *dev = &dev_dax->dev;
|
2016-05-14 19:20:44 +00:00
|
|
|
phys_addr_t phys;
|
|
|
|
pgoff_t pgoff;
|
2017-03-10 20:24:22 +00:00
|
|
|
unsigned int fault_size = PMD_SIZE;
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2017-01-31 05:43:10 +00:00
|
|
|
if (check_vma(dev_dax, vmf->vma, __func__))
|
2016-05-14 19:20:44 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
if (dev_dax->align > PMD_SIZE) {
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(dev, "alignment (%#x) > fault size (%#x)\n",
|
2020-10-13 23:50:50 +00:00
|
|
|
dev_dax->align, fault_size);
|
2016-05-14 19:20:44 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
}
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
if (fault_size < dev_dax->align)
|
2017-03-10 20:24:22 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
2020-10-13 23:50:50 +00:00
|
|
|
else if (fault_size > dev_dax->align)
|
2017-03-10 20:24:22 +00:00
|
|
|
return VM_FAULT_FALLBACK;
|
|
|
|
|
|
|
|
/* if we are outside of the VMA */
|
|
|
|
if (pmd_addr < vmf->vma->vm_start ||
|
|
|
|
(pmd_addr + PMD_SIZE) > vmf->vma->vm_end)
|
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
|
2017-02-22 23:40:06 +00:00
|
|
|
pgoff = linear_page_index(vmf->vma, pmd_addr);
|
2017-05-05 06:38:43 +00:00
|
|
|
phys = dax_pgoff_to_phys(dev_dax, pgoff, PMD_SIZE);
|
2016-05-14 19:20:44 +00:00
|
|
|
if (phys == -1) {
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(dev, "pgoff_to_phys(%#lx) failed\n", pgoff);
|
2016-05-14 19:20:44 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
}
|
|
|
|
|
2020-10-13 23:49:33 +00:00
|
|
|
*pfn = phys_to_pfn_t(phys, PFN_DEV|PFN_MAP);
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2019-05-14 00:15:33 +00:00
|
|
|
return vmf_insert_pfn_pmd(vmf, *pfn, vmf->flags & FAULT_FLAG_WRITE);
|
2016-05-14 19:20:44 +00:00
|
|
|
}
|
|
|
|
|
2017-02-24 22:57:05 +00:00
|
|
|
#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
|
2018-07-14 04:49:34 +00:00
|
|
|
static vm_fault_t __dev_dax_pud_fault(struct dev_dax *dev_dax,
|
2018-07-14 04:49:40 +00:00
|
|
|
struct vm_fault *vmf, pfn_t *pfn)
|
2017-02-24 22:57:05 +00:00
|
|
|
{
|
|
|
|
unsigned long pud_addr = vmf->address & PUD_MASK;
|
2017-01-31 05:43:10 +00:00
|
|
|
struct device *dev = &dev_dax->dev;
|
2017-02-24 22:57:05 +00:00
|
|
|
phys_addr_t phys;
|
|
|
|
pgoff_t pgoff;
|
2017-03-10 20:24:27 +00:00
|
|
|
unsigned int fault_size = PUD_SIZE;
|
|
|
|
|
2017-02-24 22:57:05 +00:00
|
|
|
|
2017-01-31 05:43:10 +00:00
|
|
|
if (check_vma(dev_dax, vmf->vma, __func__))
|
2017-02-24 22:57:05 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
if (dev_dax->align > PUD_SIZE) {
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(dev, "alignment (%#x) > fault size (%#x)\n",
|
2020-10-13 23:50:50 +00:00
|
|
|
dev_dax->align, fault_size);
|
2017-02-24 22:57:05 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
}
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
if (fault_size < dev_dax->align)
|
2017-03-10 20:24:27 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
2020-10-13 23:50:50 +00:00
|
|
|
else if (fault_size > dev_dax->align)
|
2017-03-10 20:24:27 +00:00
|
|
|
return VM_FAULT_FALLBACK;
|
|
|
|
|
|
|
|
/* if we are outside of the VMA */
|
|
|
|
if (pud_addr < vmf->vma->vm_start ||
|
|
|
|
(pud_addr + PUD_SIZE) > vmf->vma->vm_end)
|
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
|
2017-02-24 22:57:05 +00:00
|
|
|
pgoff = linear_page_index(vmf->vma, pud_addr);
|
2017-05-05 06:38:43 +00:00
|
|
|
phys = dax_pgoff_to_phys(dev_dax, pgoff, PUD_SIZE);
|
2017-02-24 22:57:05 +00:00
|
|
|
if (phys == -1) {
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(dev, "pgoff_to_phys(%#lx) failed\n", pgoff);
|
2017-02-24 22:57:05 +00:00
|
|
|
return VM_FAULT_SIGBUS;
|
|
|
|
}
|
|
|
|
|
2020-10-13 23:49:33 +00:00
|
|
|
*pfn = phys_to_pfn_t(phys, PFN_DEV|PFN_MAP);
|
2017-02-24 22:57:05 +00:00
|
|
|
|
2019-05-14 00:15:33 +00:00
|
|
|
return vmf_insert_pfn_pud(vmf, *pfn, vmf->flags & FAULT_FLAG_WRITE);
|
2017-02-24 22:57:05 +00:00
|
|
|
}
|
|
|
|
#else
|
2018-07-14 04:49:34 +00:00
|
|
|
static vm_fault_t __dev_dax_pud_fault(struct dev_dax *dev_dax,
|
2018-07-14 04:49:40 +00:00
|
|
|
struct vm_fault *vmf, pfn_t *pfn)
|
2017-02-24 22:57:05 +00:00
|
|
|
{
|
|
|
|
return VM_FAULT_FALLBACK;
|
|
|
|
}
|
|
|
|
#endif /* !CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
|
|
|
|
|
2018-07-14 04:49:34 +00:00
|
|
|
static vm_fault_t dev_dax_huge_fault(struct vm_fault *vmf,
|
2017-02-24 22:57:08 +00:00
|
|
|
enum page_entry_size pe_size)
|
2016-05-14 19:20:44 +00:00
|
|
|
{
|
2017-02-22 23:40:06 +00:00
|
|
|
struct file *filp = vmf->vma->vm_file;
|
2018-07-14 04:49:40 +00:00
|
|
|
unsigned long fault_size;
|
2018-09-04 22:46:26 +00:00
|
|
|
vm_fault_t rc = VM_FAULT_SIGBUS;
|
|
|
|
int id;
|
2018-07-14 04:49:40 +00:00
|
|
|
pfn_t pfn;
|
2017-01-31 05:43:10 +00:00
|
|
|
struct dev_dax *dev_dax = filp->private_data;
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(&dev_dax->dev, "%s: %s (%#lx - %#lx) size = %d\n", current->comm,
|
|
|
|
(vmf->flags & FAULT_FLAG_WRITE) ? "write" : "read",
|
2017-04-11 15:59:36 +00:00
|
|
|
vmf->vma->vm_start, vmf->vma->vm_end, pe_size);
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2017-04-11 16:49:49 +00:00
|
|
|
id = dax_read_lock();
|
2017-02-24 22:57:08 +00:00
|
|
|
switch (pe_size) {
|
|
|
|
case PE_SIZE_PTE:
|
2018-07-14 04:49:40 +00:00
|
|
|
fault_size = PAGE_SIZE;
|
|
|
|
rc = __dev_dax_pte_fault(dev_dax, vmf, &pfn);
|
mm,fs,dax: change ->pmd_fault to ->huge_fault
Patch series "1G transparent hugepage support for device dax", v2.
The following series implements support for 1G trasparent hugepage on
x86 for device dax. The bulk of the code was written by Mathew Wilcox a
while back supporting transparent 1G hugepage for fs DAX. I have
forward ported the relevant bits to 4.10-rc. The current submission has
only the necessary code to support device DAX.
Comments from Dan Williams: So the motivation and intended user of this
functionality mirrors the motivation and users of 1GB page support in
hugetlbfs. Given expected capacities of persistent memory devices an
in-memory database may want to reduce tlb pressure beyond what they can
already achieve with 2MB mappings of a device-dax file. We have
customer feedback to that effect as Willy mentioned in his previous
version of these patches [1].
[1]: https://lkml.org/lkml/2016/1/31/52
Comments from Nilesh @ Oracle:
There are applications which have a process model; and if you assume
10,000 processes attempting to mmap all the 6TB memory available on a
server; we are looking at the following:
processes : 10,000
memory : 6TB
pte @ 4k page size: 8 bytes / 4K of memory * #processes = 6TB / 4k * 8 * 10000 = 1.5GB * 80000 = 120,000GB
pmd @ 2M page size: 120,000 / 512 = ~240GB
pud @ 1G page size: 240GB / 512 = ~480MB
As you can see with 2M pages, this system will use up an exorbitant
amount of DRAM to hold the page tables; but the 1G pages finally brings
it down to a reasonable level. Memory sizes will keep increasing; so
this number will keep increasing.
An argument can be made to convert the applications from process model
to thread model, but in the real world that may not be always practical.
Hopefully this helps explain the use case where this is valuable.
This patch (of 3):
In preparation for adding the ability to handle PUD pages, convert
vm_operations_struct.pmd_fault to vm_operations_struct.huge_fault. The
vm_fault structure is extended to include a union of the different page
table pointers that may be needed, and three flag bits are reserved to
indicate which type of pointer is in the union.
[ross.zwisler@linux.intel.com: remove unused function ext4_dax_huge_fault()]
Link: http://lkml.kernel.org/r/1485813172-7284-1-git-send-email-ross.zwisler@linux.intel.com
[dave.jiang@intel.com: clear PMD or PUD size flags when in fall through path]
Link: http://lkml.kernel.org/r/148589842696.5820.16078080610311444794.stgit@djiang5-desk3.ch.intel.com
Link: http://lkml.kernel.org/r/148545058784.17912.6353162518188733642.stgit@djiang5-desk3.ch.intel.com
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Jan Kara <jack@suse.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Nilesh Choudhury <nilesh.choudhury@oracle.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-02-24 22:56:59 +00:00
|
|
|
break;
|
2017-02-24 22:57:08 +00:00
|
|
|
case PE_SIZE_PMD:
|
2018-07-14 04:49:40 +00:00
|
|
|
fault_size = PMD_SIZE;
|
|
|
|
rc = __dev_dax_pmd_fault(dev_dax, vmf, &pfn);
|
2017-02-24 22:57:05 +00:00
|
|
|
break;
|
2017-02-24 22:57:08 +00:00
|
|
|
case PE_SIZE_PUD:
|
2018-07-14 04:49:40 +00:00
|
|
|
fault_size = PUD_SIZE;
|
|
|
|
rc = __dev_dax_pud_fault(dev_dax, vmf, &pfn);
|
mm,fs,dax: change ->pmd_fault to ->huge_fault
Patch series "1G transparent hugepage support for device dax", v2.
The following series implements support for 1G trasparent hugepage on
x86 for device dax. The bulk of the code was written by Mathew Wilcox a
while back supporting transparent 1G hugepage for fs DAX. I have
forward ported the relevant bits to 4.10-rc. The current submission has
only the necessary code to support device DAX.
Comments from Dan Williams: So the motivation and intended user of this
functionality mirrors the motivation and users of 1GB page support in
hugetlbfs. Given expected capacities of persistent memory devices an
in-memory database may want to reduce tlb pressure beyond what they can
already achieve with 2MB mappings of a device-dax file. We have
customer feedback to that effect as Willy mentioned in his previous
version of these patches [1].
[1]: https://lkml.org/lkml/2016/1/31/52
Comments from Nilesh @ Oracle:
There are applications which have a process model; and if you assume
10,000 processes attempting to mmap all the 6TB memory available on a
server; we are looking at the following:
processes : 10,000
memory : 6TB
pte @ 4k page size: 8 bytes / 4K of memory * #processes = 6TB / 4k * 8 * 10000 = 1.5GB * 80000 = 120,000GB
pmd @ 2M page size: 120,000 / 512 = ~240GB
pud @ 1G page size: 240GB / 512 = ~480MB
As you can see with 2M pages, this system will use up an exorbitant
amount of DRAM to hold the page tables; but the 1G pages finally brings
it down to a reasonable level. Memory sizes will keep increasing; so
this number will keep increasing.
An argument can be made to convert the applications from process model
to thread model, but in the real world that may not be always practical.
Hopefully this helps explain the use case where this is valuable.
This patch (of 3):
In preparation for adding the ability to handle PUD pages, convert
vm_operations_struct.pmd_fault to vm_operations_struct.huge_fault. The
vm_fault structure is extended to include a union of the different page
table pointers that may be needed, and three flag bits are reserved to
indicate which type of pointer is in the union.
[ross.zwisler@linux.intel.com: remove unused function ext4_dax_huge_fault()]
Link: http://lkml.kernel.org/r/1485813172-7284-1-git-send-email-ross.zwisler@linux.intel.com
[dave.jiang@intel.com: clear PMD or PUD size flags when in fall through path]
Link: http://lkml.kernel.org/r/148589842696.5820.16078080610311444794.stgit@djiang5-desk3.ch.intel.com
Link: http://lkml.kernel.org/r/148545058784.17912.6353162518188733642.stgit@djiang5-desk3.ch.intel.com
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Jan Kara <jack@suse.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Nilesh Choudhury <nilesh.choudhury@oracle.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-02-24 22:56:59 +00:00
|
|
|
break;
|
|
|
|
default:
|
2017-04-11 16:12:25 +00:00
|
|
|
rc = VM_FAULT_SIGBUS;
|
mm,fs,dax: change ->pmd_fault to ->huge_fault
Patch series "1G transparent hugepage support for device dax", v2.
The following series implements support for 1G trasparent hugepage on
x86 for device dax. The bulk of the code was written by Mathew Wilcox a
while back supporting transparent 1G hugepage for fs DAX. I have
forward ported the relevant bits to 4.10-rc. The current submission has
only the necessary code to support device DAX.
Comments from Dan Williams: So the motivation and intended user of this
functionality mirrors the motivation and users of 1GB page support in
hugetlbfs. Given expected capacities of persistent memory devices an
in-memory database may want to reduce tlb pressure beyond what they can
already achieve with 2MB mappings of a device-dax file. We have
customer feedback to that effect as Willy mentioned in his previous
version of these patches [1].
[1]: https://lkml.org/lkml/2016/1/31/52
Comments from Nilesh @ Oracle:
There are applications which have a process model; and if you assume
10,000 processes attempting to mmap all the 6TB memory available on a
server; we are looking at the following:
processes : 10,000
memory : 6TB
pte @ 4k page size: 8 bytes / 4K of memory * #processes = 6TB / 4k * 8 * 10000 = 1.5GB * 80000 = 120,000GB
pmd @ 2M page size: 120,000 / 512 = ~240GB
pud @ 1G page size: 240GB / 512 = ~480MB
As you can see with 2M pages, this system will use up an exorbitant
amount of DRAM to hold the page tables; but the 1G pages finally brings
it down to a reasonable level. Memory sizes will keep increasing; so
this number will keep increasing.
An argument can be made to convert the applications from process model
to thread model, but in the real world that may not be always practical.
Hopefully this helps explain the use case where this is valuable.
This patch (of 3):
In preparation for adding the ability to handle PUD pages, convert
vm_operations_struct.pmd_fault to vm_operations_struct.huge_fault. The
vm_fault structure is extended to include a union of the different page
table pointers that may be needed, and three flag bits are reserved to
indicate which type of pointer is in the union.
[ross.zwisler@linux.intel.com: remove unused function ext4_dax_huge_fault()]
Link: http://lkml.kernel.org/r/1485813172-7284-1-git-send-email-ross.zwisler@linux.intel.com
[dave.jiang@intel.com: clear PMD or PUD size flags when in fall through path]
Link: http://lkml.kernel.org/r/148589842696.5820.16078080610311444794.stgit@djiang5-desk3.ch.intel.com
Link: http://lkml.kernel.org/r/148545058784.17912.6353162518188733642.stgit@djiang5-desk3.ch.intel.com
Signed-off-by: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Jan Kara <jack@suse.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Nilesh Choudhury <nilesh.choudhury@oracle.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-02-24 22:56:59 +00:00
|
|
|
}
|
2018-07-14 04:49:40 +00:00
|
|
|
|
|
|
|
if (rc == VM_FAULT_NOPAGE) {
|
|
|
|
unsigned long i;
|
2018-07-14 04:49:45 +00:00
|
|
|
pgoff_t pgoff;
|
2018-07-14 04:49:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* In the device-dax case the only possibility for a
|
|
|
|
* VM_FAULT_NOPAGE result is when device-dax capacity is
|
|
|
|
* mapped. No need to consider the zero page, or racing
|
|
|
|
* conflicting mappings.
|
|
|
|
*/
|
2022-01-14 22:04:26 +00:00
|
|
|
pgoff = linear_page_index(vmf->vma,
|
|
|
|
ALIGN(vmf->address, fault_size));
|
2018-07-14 04:49:40 +00:00
|
|
|
for (i = 0; i < fault_size / PAGE_SIZE; i++) {
|
|
|
|
struct page *page;
|
|
|
|
|
|
|
|
page = pfn_to_page(pfn_t_to_pfn(pfn) + i);
|
|
|
|
if (page->mapping)
|
|
|
|
continue;
|
|
|
|
page->mapping = filp->f_mapping;
|
2018-07-14 04:49:45 +00:00
|
|
|
page->index = pgoff + i;
|
2018-07-14 04:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-11 16:49:49 +00:00
|
|
|
dax_read_unlock(id);
|
2016-05-14 19:20:44 +00:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-07-14 04:49:34 +00:00
|
|
|
static vm_fault_t dev_dax_fault(struct vm_fault *vmf)
|
2017-02-24 22:57:08 +00:00
|
|
|
{
|
2017-01-31 05:43:10 +00:00
|
|
|
return dev_dax_huge_fault(vmf, PE_SIZE_PTE);
|
2017-02-24 22:57:08 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 03:08:17 +00:00
|
|
|
static int dev_dax_may_split(struct vm_area_struct *vma, unsigned long addr)
|
2017-11-30 00:10:32 +00:00
|
|
|
{
|
|
|
|
struct file *filp = vma->vm_file;
|
|
|
|
struct dev_dax *dev_dax = filp->private_data;
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
if (!IS_ALIGNED(addr, dev_dax->align))
|
2017-11-30 00:10:32 +00:00
|
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-05 23:24:28 +00:00
|
|
|
static unsigned long dev_dax_pagesize(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct file *filp = vma->vm_file;
|
|
|
|
struct dev_dax *dev_dax = filp->private_data;
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
return dev_dax->align;
|
2018-04-05 23:24:28 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 05:43:10 +00:00
|
|
|
static const struct vm_operations_struct dax_vm_ops = {
|
|
|
|
.fault = dev_dax_fault,
|
|
|
|
.huge_fault = dev_dax_huge_fault,
|
2020-12-15 03:08:17 +00:00
|
|
|
.may_split = dev_dax_may_split,
|
2018-04-05 23:24:28 +00:00
|
|
|
.pagesize = dev_dax_pagesize,
|
2016-05-14 19:20:44 +00:00
|
|
|
};
|
|
|
|
|
2016-08-11 07:38:03 +00:00
|
|
|
static int dax_mmap(struct file *filp, struct vm_area_struct *vma)
|
2016-05-14 19:20:44 +00:00
|
|
|
{
|
2017-01-31 05:43:10 +00:00
|
|
|
struct dev_dax *dev_dax = filp->private_data;
|
2017-04-11 16:49:49 +00:00
|
|
|
int rc, id;
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(&dev_dax->dev, "trace\n");
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2017-04-11 16:49:49 +00:00
|
|
|
/*
|
|
|
|
* We lock to check dax_dev liveness and will re-check at
|
|
|
|
* fault time.
|
|
|
|
*/
|
|
|
|
id = dax_read_lock();
|
2017-01-31 05:43:10 +00:00
|
|
|
rc = check_vma(dev_dax, vma, __func__);
|
2017-04-11 16:49:49 +00:00
|
|
|
dax_read_unlock(id);
|
2016-05-14 19:20:44 +00:00
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
2017-01-31 05:43:10 +00:00
|
|
|
vma->vm_ops = &dax_vm_ops;
|
2018-08-17 22:43:40 +00:00
|
|
|
vma->vm_flags |= VM_HUGEPAGE;
|
2016-05-14 19:20:44 +00:00
|
|
|
return 0;
|
2016-08-07 15:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* return an unmapped area aligned to the dax region specified alignment */
|
2016-08-11 07:38:03 +00:00
|
|
|
static unsigned long dax_get_unmapped_area(struct file *filp,
|
2016-08-07 15:23:56 +00:00
|
|
|
unsigned long addr, unsigned long len, unsigned long pgoff,
|
|
|
|
unsigned long flags)
|
|
|
|
{
|
|
|
|
unsigned long off, off_end, off_align, len_align, addr_align, align;
|
2017-01-31 05:43:10 +00:00
|
|
|
struct dev_dax *dev_dax = filp ? filp->private_data : NULL;
|
2016-08-07 15:23:56 +00:00
|
|
|
|
2017-01-31 05:43:10 +00:00
|
|
|
if (!dev_dax || addr)
|
2016-08-07 15:23:56 +00:00
|
|
|
goto out;
|
|
|
|
|
2020-10-13 23:50:50 +00:00
|
|
|
align = dev_dax->align;
|
2016-08-07 15:23:56 +00:00
|
|
|
off = pgoff << PAGE_SHIFT;
|
|
|
|
off_end = off + len;
|
|
|
|
off_align = round_up(off, align);
|
|
|
|
|
|
|
|
if ((off_end <= off_align) || ((off_end - off_align) < align))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
len_align = len + align;
|
|
|
|
if ((off + len_align) < off)
|
|
|
|
goto out;
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2016-08-07 15:23:56 +00:00
|
|
|
addr_align = current->mm->get_unmapped_area(filp, addr, len_align,
|
|
|
|
pgoff, flags);
|
|
|
|
if (!IS_ERR_VALUE(addr_align)) {
|
|
|
|
addr_align += (off - addr_align) & (align - 1);
|
|
|
|
return addr_align;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
return current->mm->get_unmapped_area(filp, addr, len, pgoff, flags);
|
|
|
|
}
|
|
|
|
|
2018-09-10 23:18:29 +00:00
|
|
|
static const struct address_space_operations dev_dax_aops = {
|
2021-06-29 02:36:27 +00:00
|
|
|
.set_page_dirty = __set_page_dirty_no_writeback,
|
2018-09-10 23:18:29 +00:00
|
|
|
.invalidatepage = noop_invalidatepage,
|
|
|
|
};
|
|
|
|
|
2016-08-11 07:38:03 +00:00
|
|
|
static int dax_open(struct inode *inode, struct file *filp)
|
2016-08-07 15:23:56 +00:00
|
|
|
{
|
2017-04-11 16:49:49 +00:00
|
|
|
struct dax_device *dax_dev = inode_dax(inode);
|
|
|
|
struct inode *__dax_inode = dax_inode(dax_dev);
|
|
|
|
struct dev_dax *dev_dax = dax_get_private(dax_dev);
|
2016-08-07 15:23:56 +00:00
|
|
|
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(&dev_dax->dev, "trace\n");
|
2017-04-11 16:49:49 +00:00
|
|
|
inode->i_mapping = __dax_inode->i_mapping;
|
|
|
|
inode->i_mapping->host = __dax_inode;
|
2018-09-10 23:18:29 +00:00
|
|
|
inode->i_mapping->a_ops = &dev_dax_aops;
|
2016-07-25 04:55:45 +00:00
|
|
|
filp->f_mapping = inode->i_mapping;
|
fs: new infrastructure for writeback error handling and reporting
Most filesystems currently use mapping_set_error and
filemap_check_errors for setting and reporting/clearing writeback errors
at the mapping level. filemap_check_errors is indirectly called from
most of the filemap_fdatawait_* functions and from
filemap_write_and_wait*. These functions are called from all sorts of
contexts to wait on writeback to finish -- e.g. mostly in fsync, but
also in truncate calls, getattr, etc.
The non-fsync callers are problematic. We should be reporting writeback
errors during fsync, but many places spread over the tree clear out
errors before they can be properly reported, or report errors at
nonsensical times.
If I get -EIO on a stat() call, there is no reason for me to assume that
it is because some previous writeback failed. The fact that it also
clears out the error such that a subsequent fsync returns 0 is a bug,
and a nasty one since that's potentially silent data corruption.
This patch adds a small bit of new infrastructure for setting and
reporting errors during address_space writeback. While the above was my
original impetus for adding this, I think it's also the case that
current fsync semantics are just problematic for userland. Most
applications that call fsync do so to ensure that the data they wrote
has hit the backing store.
In the case where there are multiple writers to the file at the same
time, this is really hard to determine. The first one to call fsync will
see any stored error, and the rest get back 0. The processes with open
fds may not be associated with one another in any way. They could even
be in different containers, so ensuring coordination between all fsync
callers is not really an option.
One way to remedy this would be to track what file descriptor was used
to dirty the file, but that's rather cumbersome and would likely be
slow. However, there is a simpler way to improve the semantics here
without incurring too much overhead.
This set adds an errseq_t to struct address_space, and a corresponding
one is added to struct file. Writeback errors are recorded in the
mapping's errseq_t, and the one in struct file is used as the "since"
value.
This changes the semantics of the Linux fsync implementation such that
applications can now use it to determine whether there were any
writeback errors since fsync(fd) was last called (or since the file was
opened in the case of fsync having never been called).
Note that those writeback errors may have occurred when writing data
that was dirtied via an entirely different fd, but that's the case now
with the current mapping_set_error/filemap_check_error infrastructure.
This will at least prevent you from getting a false report of success.
The new behavior is still consistent with the POSIX spec, and is more
reliable for application developers. This patch just adds some basic
infrastructure for doing this, and ensures that the f_wb_err "cursor"
is properly set when a file is opened. Later patches will change the
existing code to use this new infrastructure for reporting errors at
fsync time.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Jan Kara <jack@suse.cz>
2017-07-06 11:02:25 +00:00
|
|
|
filp->f_wb_err = filemap_sample_wb_err(filp->f_mapping);
|
vfs: track per-sb writeback errors and report them to syncfs
Patch series "vfs: have syncfs() return error when there are writeback
errors", v6.
Currently, syncfs does not return errors when one of the inodes fails to
be written back. It will return errors based on the legacy AS_EIO and
AS_ENOSPC flags when syncing out the block device fails, but that's not
particularly helpful for filesystems that aren't backed by a blockdev.
It's also possible for a stray sync to lose those errors.
The basic idea in this set is to track writeback errors at the
superblock level, so that we can quickly and easily check whether
something bad happened without having to fsync each file individually.
syncfs is then changed to reliably report writeback errors after they
occur, much in the same fashion as fsync does now.
This patch (of 2):
Usually we suggest that applications call fsync when they want to ensure
that all data written to the file has made it to the backing store, but
that can be inefficient when there are a lot of open files.
Calling syncfs on the filesystem can be more efficient in some
situations, but the error reporting doesn't currently work the way most
people expect. If a single inode on a filesystem reports a writeback
error, syncfs won't necessarily return an error. syncfs only returns an
error if __sync_blockdev fails, and on some filesystems that's a no-op.
It would be better if syncfs reported an error if there were any
writeback failures. Then applications could call syncfs to see if there
are any errors on any open files, and could then call fsync on all of
the other descriptors to figure out which one failed.
This patch adds a new errseq_t to struct super_block, and has
mapping_set_error also record writeback errors there.
To report those errors, we also need to keep an errseq_t in struct file
to act as a cursor. This patch adds a dedicated field for that purpose,
which slots nicely into 4 bytes of padding at the end of struct file on
x86_64.
An earlier version of this patch used an O_PATH file descriptor to cue
the kernel that the open file should track the superblock error and not
the inode's writeback error.
I think that API is just too weird though. This is simpler and should
make syncfs error reporting "just work" even if someone is multiplexing
fsync and syncfs on the same fds.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Cc: Andres Freund <andres@anarazel.de>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Dave Chinner <david@fromorbit.com>
Cc: David Howells <dhowells@redhat.com>
Link: http://lkml.kernel.org/r/20200428135155.19223-1-jlayton@kernel.org
Link: http://lkml.kernel.org/r/20200428135155.19223-2-jlayton@kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2020-06-02 04:45:36 +00:00
|
|
|
filp->f_sb_err = file_sample_sb_err(filp);
|
2017-01-31 05:43:10 +00:00
|
|
|
filp->private_data = dev_dax;
|
2016-08-11 07:41:51 +00:00
|
|
|
inode->i_flags = S_DAX;
|
2016-08-07 15:23:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-05-14 19:20:44 +00:00
|
|
|
|
2016-08-11 07:38:03 +00:00
|
|
|
static int dax_release(struct inode *inode, struct file *filp)
|
2016-08-07 15:23:56 +00:00
|
|
|
{
|
2017-01-31 05:43:10 +00:00
|
|
|
struct dev_dax *dev_dax = filp->private_data;
|
2016-08-07 15:23:56 +00:00
|
|
|
|
2018-03-06 00:40:05 +00:00
|
|
|
dev_dbg(&dev_dax->dev, "trace\n");
|
2016-08-07 15:23:56 +00:00
|
|
|
return 0;
|
2016-05-14 19:20:44 +00:00
|
|
|
}
|
|
|
|
|
2016-05-18 16:15:08 +00:00
|
|
|
static const struct file_operations dax_fops = {
|
|
|
|
.llseek = noop_llseek,
|
|
|
|
.owner = THIS_MODULE,
|
2016-08-11 07:38:03 +00:00
|
|
|
.open = dax_open,
|
|
|
|
.release = dax_release,
|
|
|
|
.get_unmapped_area = dax_get_unmapped_area,
|
|
|
|
.mmap = dax_mmap,
|
2018-04-19 20:39:43 +00:00
|
|
|
.mmap_supported_flags = MAP_SYNC,
|
2016-05-18 16:15:08 +00:00
|
|
|
};
|
|
|
|
|
2017-07-13 00:58:21 +00:00
|
|
|
static void dev_dax_cdev_del(void *cdev)
|
2016-08-07 15:23:56 +00:00
|
|
|
{
|
2017-07-13 00:58:21 +00:00
|
|
|
cdev_del(cdev);
|
|
|
|
}
|
2016-08-07 15:23:56 +00:00
|
|
|
|
2017-07-13 00:58:21 +00:00
|
|
|
static void dev_dax_kill(void *dev_dax)
|
|
|
|
{
|
|
|
|
kill_dev_dax(dev_dax);
|
2016-08-11 07:41:51 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 23:50:08 +00:00
|
|
|
int dev_dax_probe(struct dev_dax *dev_dax)
|
2016-08-07 15:23:56 +00:00
|
|
|
{
|
2017-07-13 00:58:21 +00:00
|
|
|
struct dax_device *dax_dev = dev_dax->dax_dev;
|
2020-10-13 23:50:08 +00:00
|
|
|
struct device *dev = &dev_dax->dev;
|
2020-10-13 23:49:43 +00:00
|
|
|
struct dev_pagemap *pgmap;
|
2017-04-11 16:49:49 +00:00
|
|
|
struct inode *inode;
|
2016-07-24 22:55:42 +00:00
|
|
|
struct cdev *cdev;
|
2018-10-29 22:52:42 +00:00
|
|
|
void *addr;
|
2020-10-13 23:50:39 +00:00
|
|
|
int rc, i;
|
2018-10-29 22:52:42 +00:00
|
|
|
|
2020-10-13 23:49:43 +00:00
|
|
|
pgmap = dev_dax->pgmap;
|
2020-10-13 23:50:39 +00:00
|
|
|
if (dev_WARN_ONCE(dev, pgmap && dev_dax->nr_range > 1,
|
|
|
|
"static pgmap / multi-range device conflict\n"))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2020-10-13 23:49:43 +00:00
|
|
|
if (!pgmap) {
|
2022-01-14 22:04:29 +00:00
|
|
|
pgmap = devm_kzalloc(dev,
|
|
|
|
struct_size(pgmap, ranges, dev_dax->nr_range - 1),
|
|
|
|
GFP_KERNEL);
|
2020-10-13 23:49:43 +00:00
|
|
|
if (!pgmap)
|
|
|
|
return -ENOMEM;
|
2020-10-13 23:50:39 +00:00
|
|
|
pgmap->nr_range = dev_dax->nr_range;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < dev_dax->nr_range; i++) {
|
|
|
|
struct range *range = &dev_dax->ranges[i].range;
|
|
|
|
|
|
|
|
if (!devm_request_mem_region(dev, range->start,
|
|
|
|
range_len(range), dev_name(dev))) {
|
|
|
|
dev_warn(dev, "mapping%d: %#llx-%#llx could not reserve range\n",
|
|
|
|
i, range->start, range->end);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
/* don't update the range for static pgmap */
|
|
|
|
if (!dev_dax->pgmap)
|
|
|
|
pgmap->ranges[i] = *range;
|
2020-10-13 23:49:43 +00:00
|
|
|
}
|
2020-10-13 23:50:39 +00:00
|
|
|
|
2020-10-13 23:49:43 +00:00
|
|
|
pgmap->type = MEMORY_DEVICE_GENERIC;
|
|
|
|
addr = devm_memremap_pages(dev, pgmap);
|
2019-06-13 22:56:33 +00:00
|
|
|
if (IS_ERR(addr))
|
2018-10-29 22:52:42 +00:00
|
|
|
return PTR_ERR(addr);
|
|
|
|
|
2017-04-11 16:49:49 +00:00
|
|
|
inode = dax_inode(dax_dev);
|
|
|
|
cdev = inode->i_cdev;
|
2016-07-24 22:55:42 +00:00
|
|
|
cdev_init(cdev, &dax_fops);
|
2017-07-16 20:51:53 +00:00
|
|
|
if (dev->class) {
|
|
|
|
/* for the CONFIG_DEV_DAX_PMEM_COMPAT case */
|
|
|
|
cdev->owner = dev->parent->driver->owner;
|
|
|
|
} else
|
|
|
|
cdev->owner = dev->driver->owner;
|
2017-07-13 00:58:21 +00:00
|
|
|
cdev_set_parent(cdev, &dev->kobj);
|
|
|
|
rc = cdev_add(cdev, dev->devt, 1);
|
2016-07-20 00:51:40 +00:00
|
|
|
if (rc)
|
2017-07-13 00:58:21 +00:00
|
|
|
return rc;
|
2016-07-20 00:51:40 +00:00
|
|
|
|
2017-07-13 00:58:21 +00:00
|
|
|
rc = devm_add_action_or_reset(dev, dev_dax_cdev_del, cdev);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
2016-08-07 15:23:56 +00:00
|
|
|
|
2017-07-13 00:58:21 +00:00
|
|
|
run_dax(dax_dev);
|
|
|
|
return devm_add_action_or_reset(dev, dev_dax_kill, dev_dax);
|
|
|
|
}
|
2017-07-16 20:51:53 +00:00
|
|
|
EXPORT_SYMBOL_GPL(dev_dax_probe);
|
2016-08-07 15:23:56 +00:00
|
|
|
|
2018-11-07 23:31:23 +00:00
|
|
|
static struct dax_device_driver device_dax_driver = {
|
2020-10-13 23:50:08 +00:00
|
|
|
.probe = dev_dax_probe,
|
2021-02-05 22:28:41 +00:00
|
|
|
/* all probe actions are unwound by devm, so .remove isn't necessary */
|
2018-11-07 23:31:23 +00:00
|
|
|
.match_always = 1,
|
2017-07-13 00:58:21 +00:00
|
|
|
};
|
2016-08-07 15:23:56 +00:00
|
|
|
|
2016-05-18 16:15:08 +00:00
|
|
|
static int __init dax_init(void)
|
|
|
|
{
|
2017-07-13 00:58:21 +00:00
|
|
|
return dax_driver_register(&device_dax_driver);
|
2016-05-18 16:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit dax_exit(void)
|
|
|
|
{
|
2018-11-07 23:31:23 +00:00
|
|
|
dax_driver_unregister(&device_dax_driver);
|
2016-05-18 16:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
|
|
|
MODULE_LICENSE("GPL v2");
|
2017-07-13 00:58:21 +00:00
|
|
|
module_init(dax_init);
|
2016-05-18 16:15:08 +00:00
|
|
|
module_exit(dax_exit);
|
2017-07-13 00:58:21 +00:00
|
|
|
MODULE_ALIAS_DAX_DEVICE(0);
|