summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJianxiong Gao <jxgao@google.com>2021-04-29 20:33:15 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-05-07 12:04:32 +0300
commit2fa0387fa2d00924aca0a5fa4c48eb6a4b3f8731 (patch)
tree75f19d216b0a1d5617825ca2cbdb3fa2a5b0b097
parentf8e71c667ee12094b50f5a935133d080740cd66b (diff)
downloadlinux-2fa0387fa2d00924aca0a5fa4c48eb6a4b3f8731.tar.xz
nvme-pci: set min_align_mask
commit: 3d2d861eb03e8ee96dc430a54361c900cbe28afd The PRP addressing scheme requires all PRP entries except for the first one to have a zero offset into the NVMe controller pages (which can be different from the Linux PAGE_SIZE). Use the min_align_mask device parameter to ensure that swiotlb does not change the address of the buffer modulo the device page size to ensure that the PRPs won't be malformed. Signed-off-by: Jianxiong Gao <jxgao@google.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Tested-by: Jianxiong Gao <jxgao@google.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/nvme/host/pci.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 4dca58f4afdf..716039ea4450 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2634,6 +2634,7 @@ static void nvme_reset_work(struct work_struct *work)
* Don't limit the IOMMU merged segment size.
*/
dma_set_max_seg_size(dev->dev, 0xffffffff);
+ dma_set_min_align_mask(dev->dev, NVME_CTRL_PAGE_SIZE - 1);
mutex_unlock(&dev->shutdown_lock);