All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
@ 2017-03-07 22:56 Bart Van Assche
  2017-03-08 17:48 ` Parav Pandit
       [not found] ` <1D08B61A9CF0974AA09887BE32D889DA0DBFCB-fxMRTlsoH6pS59oDqloDyoaX4dThiank9m7AsFVS2+l8Oh6FZyoiAQ@public.gmane.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Bart Van Assche @ 2017-03-07 22:56 UTC (permalink / raw)
  To: Doug Ledford
  Cc: Sebastian Ott, Parav Pandit, linux-rdma-u79uwXL29TY76Z2rM5mHXA

Avoid that the following error message is reported on the console
while loading an RDMA driver with I/O MMU support enabled:

DMAR: Allocating domain for mlx5_0 failed

Ensure that DMA mapping operations that use to_pci_dev() to
access to struct pci_dev see the correct PCI device. E.g. the s390
and powerpc DMA mapping operations use to_pci_dev() even with I/O
MMU support disabled.

This patch preserves the following changes of the DMA mapping updates
patch series:
- Introduction of dma_virt_ops.
- Removal of ib_device.dma_ops.
- Removal of struct ib_dma_mapping_ops.
- Removal of an if-statement from each ib_dma_*() operation.
- IB HW drivers no longer set dma_device directly.

Reported-by: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Reported-by: Parav Pandit <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Fixes: commit 99db9494035f ("IB/core: Remove ib_device.dma_device")
Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
---
 drivers/infiniband/core/device.c | 26 ++++++++++++++++++++------
 include/rdma/ib_verbs.h          | 30 +++++++++++++++++-------------
 2 files changed, 37 insertions(+), 19 deletions(-)

diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
index 593d2ce6ec7c..addf869045cc 100644
--- a/drivers/infiniband/core/device.c
+++ b/drivers/infiniband/core/device.c
@@ -336,12 +336,26 @@ int ib_register_device(struct ib_device *device,
 	struct device *parent = device->dev.parent;
 
 	WARN_ON_ONCE(!parent);
-	if (!device->dev.dma_ops)
-		device->dev.dma_ops = parent->dma_ops;
-	if (!device->dev.dma_mask)
-		device->dev.dma_mask = parent->dma_mask;
-	if (!device->dev.coherent_dma_mask)
-		device->dev.coherent_dma_mask = parent->coherent_dma_mask;
+	WARN_ON_ONCE(device->dma_device);
+	if (device->dev.dma_ops) {
+		/*
+		 * The caller provided custom DMA operations. Copy the
+		 * DMA-related fields that are used by e.g. dma_alloc_coherent()
+		 * into device->dev.
+		 */
+		device->dma_device = &device->dev;
+		if (!device->dev.dma_mask)
+			device->dev.dma_mask = parent->dma_mask;
+		if (!device->dev.coherent_dma_mask)
+			device->dev.coherent_dma_mask =
+				parent->coherent_dma_mask;
+	} else {
+		/*
+		 * The caller did not provide custom DMA operations. Use the
+		 * DMA mapping operations of the parent device.
+		 */
+		device->dma_device = parent;
+	}
 
 	mutex_lock(&device_mutex);
 
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
index 0f1813c13687..99e4423eb2b8 100644
--- a/include/rdma/ib_verbs.h
+++ b/include/rdma/ib_verbs.h
@@ -1863,6 +1863,9 @@ struct ib_port_immutable {
 };
 
 struct ib_device {
+	/* Do not access @dma_device directly from ULP nor from HW drivers. */
+	struct device                *dma_device;
+
 	char                          name[IB_DEVICE_NAME_MAX];
 
 	struct list_head              event_handler_list;
@@ -3007,7 +3010,7 @@ static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
  */
 static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
 {
-	return dma_mapping_error(&dev->dev, dma_addr);
+	return dma_mapping_error(dev->dma_device, dma_addr);
 }
 
 /**
@@ -3021,7 +3024,7 @@ static inline u64 ib_dma_map_single(struct ib_device *dev,
 				    void *cpu_addr, size_t size,
 				    enum dma_data_direction direction)
 {
-	return dma_map_single(&dev->dev, cpu_addr, size, direction);
+	return dma_map_single(dev->dma_device, cpu_addr, size, direction);
 }
 
 /**
@@ -3035,7 +3038,7 @@ static inline void ib_dma_unmap_single(struct ib_device *dev,
 				       u64 addr, size_t size,
 				       enum dma_data_direction direction)
 {
-	dma_unmap_single(&dev->dev, addr, size, direction);
+	dma_unmap_single(dev->dma_device, addr, size, direction);
 }
 
 /**
@@ -3052,7 +3055,7 @@ static inline u64 ib_dma_map_page(struct ib_device *dev,
 				  size_t size,
 					 enum dma_data_direction direction)
 {
-	return dma_map_page(&dev->dev, page, offset, size, direction);
+	return dma_map_page(dev->dma_device, page, offset, size, direction);
 }
 
 /**
@@ -3066,7 +3069,7 @@ static inline void ib_dma_unmap_page(struct ib_device *dev,
 				     u64 addr, size_t size,
 				     enum dma_data_direction direction)
 {
-	dma_unmap_page(&dev->dev, addr, size, direction);
+	dma_unmap_page(dev->dma_device, addr, size, direction);
 }
 
 /**
@@ -3080,7 +3083,7 @@ static inline int ib_dma_map_sg(struct ib_device *dev,
 				struct scatterlist *sg, int nents,
 				enum dma_data_direction direction)
 {
-	return dma_map_sg(&dev->dev, sg, nents, direction);
+	return dma_map_sg(dev->dma_device, sg, nents, direction);
 }
 
 /**
@@ -3094,7 +3097,7 @@ static inline void ib_dma_unmap_sg(struct ib_device *dev,
 				   struct scatterlist *sg, int nents,
 				   enum dma_data_direction direction)
 {
-	dma_unmap_sg(&dev->dev, sg, nents, direction);
+	dma_unmap_sg(dev->dma_device, sg, nents, direction);
 }
 
 static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
@@ -3102,7 +3105,8 @@ static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
 				      enum dma_data_direction direction,
 				      unsigned long dma_attrs)
 {
-	return dma_map_sg_attrs(&dev->dev, sg, nents, direction, dma_attrs);
+	return dma_map_sg_attrs(dev->dma_device, sg, nents, direction,
+				dma_attrs);
 }
 
 static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
@@ -3110,7 +3114,7 @@ static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
 					 enum dma_data_direction direction,
 					 unsigned long dma_attrs)
 {
-	dma_unmap_sg_attrs(&dev->dev, sg, nents, direction, dma_attrs);
+	dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, dma_attrs);
 }
 /**
  * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
@@ -3152,7 +3156,7 @@ static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
 					      size_t size,
 					      enum dma_data_direction dir)
 {
-	dma_sync_single_for_cpu(&dev->dev, addr, size, dir);
+	dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
 }
 
 /**
@@ -3167,7 +3171,7 @@ static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
 						 size_t size,
 						 enum dma_data_direction dir)
 {
-	dma_sync_single_for_device(&dev->dev, addr, size, dir);
+	dma_sync_single_for_device(dev->dma_device, addr, size, dir);
 }
 
 /**
@@ -3182,7 +3186,7 @@ static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
 					   dma_addr_t *dma_handle,
 					   gfp_t flag)
 {
-	return dma_alloc_coherent(&dev->dev, size, dma_handle, flag);
+	return dma_alloc_coherent(dev->dma_device, size, dma_handle, flag);
 }
 
 /**
@@ -3196,7 +3200,7 @@ static inline void ib_dma_free_coherent(struct ib_device *dev,
 					size_t size, void *cpu_addr,
 					dma_addr_t dma_handle)
 {
-	dma_free_coherent(&dev->dev, size, cpu_addr, dma_handle);
+	dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
 }
 
 /**
-- 
2.12.0

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* RE: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
       [not found] ` <1D08B61A9CF0974AA09887BE32D889DA0DBFCB-fxMRTlsoH6pS59oDqloDyoaX4dThiank9m7AsFVS2+l8Oh6FZyoiAQ@public.gmane.org>
@ 2017-03-08  0:50   ` Parav Pandit
  2017-03-13  9:30   ` Leon Romanovsky
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Parav Pandit @ 2017-03-08  0:50 UTC (permalink / raw)
  To: Bart Van Assche, Doug Ledford
  Cc: Sebastian Ott, linux-rdma-u79uwXL29TY76Z2rM5mHXA

Hi Bart,

This fix looks good to me.
I haven't had chance to test it yet.

Parav

> -----Original Message-----
> From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Bart Van Assche
> Sent: Tuesday, March 7, 2017 4:57 PM
> To: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> Cc: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>; Parav Pandit
> <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>; linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Subject: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
> 
> Avoid that the following error message is reported on the console while
> loading an RDMA driver with I/O MMU support enabled:
> 
> DMAR: Allocating domain for mlx5_0 failed
> 
> Ensure that DMA mapping operations that use to_pci_dev() to access to
> struct pci_dev see the correct PCI device. E.g. the s390 and powerpc DMA
> mapping operations use to_pci_dev() even with I/O MMU support disabled.
> 
> This patch preserves the following changes of the DMA mapping updates
> patch series:
> - Introduction of dma_virt_ops.
> - Removal of ib_device.dma_ops.
> - Removal of struct ib_dma_mapping_ops.
> - Removal of an if-statement from each ib_dma_*() operation.
> - IB HW drivers no longer set dma_device directly.
> 
> Reported-by: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> Reported-by: Parav Pandit <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Fixes: commit 99db9494035f ("IB/core: Remove ib_device.dma_device")
> Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> ---
>  drivers/infiniband/core/device.c | 26 ++++++++++++++++++++------
>  include/rdma/ib_verbs.h          | 30 +++++++++++++++++-------------
>  2 files changed, 37 insertions(+), 19 deletions(-)
> 
> diff --git a/drivers/infiniband/core/device.c
> b/drivers/infiniband/core/device.c
> index 593d2ce6ec7c..addf869045cc 100644
> --- a/drivers/infiniband/core/device.c
> +++ b/drivers/infiniband/core/device.c
> @@ -336,12 +336,26 @@ int ib_register_device(struct ib_device *device,
>  	struct device *parent = device->dev.parent;
> 
>  	WARN_ON_ONCE(!parent);
> -	if (!device->dev.dma_ops)
> -		device->dev.dma_ops = parent->dma_ops;
> -	if (!device->dev.dma_mask)
> -		device->dev.dma_mask = parent->dma_mask;
> -	if (!device->dev.coherent_dma_mask)
> -		device->dev.coherent_dma_mask = parent-
> >coherent_dma_mask;
> +	WARN_ON_ONCE(device->dma_device);
> +	if (device->dev.dma_ops) {
> +		/*
> +		 * The caller provided custom DMA operations. Copy the
> +		 * DMA-related fields that are used by e.g.
> dma_alloc_coherent()
> +		 * into device->dev.
> +		 */
> +		device->dma_device = &device->dev;
> +		if (!device->dev.dma_mask)
> +			device->dev.dma_mask = parent->dma_mask;
> +		if (!device->dev.coherent_dma_mask)
> +			device->dev.coherent_dma_mask =
> +				parent->coherent_dma_mask;
> +	} else {
> +		/*
> +		 * The caller did not provide custom DMA operations. Use the
> +		 * DMA mapping operations of the parent device.
> +		 */
> +		device->dma_device = parent;
> +	}
> 
>  	mutex_lock(&device_mutex);
> 
> diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index
> 0f1813c13687..99e4423eb2b8 100644
> --- a/include/rdma/ib_verbs.h
> +++ b/include/rdma/ib_verbs.h
> @@ -1863,6 +1863,9 @@ struct ib_port_immutable {  };
> 
>  struct ib_device {
> +	/* Do not access @dma_device directly from ULP nor from HW
> drivers. */
> +	struct device                *dma_device;
> +
>  	char                          name[IB_DEVICE_NAME_MAX];
> 
>  	struct list_head              event_handler_list;
> @@ -3007,7 +3010,7 @@ static inline int ib_req_ncomp_notif(struct ib_cq
> *cq, int wc_cnt)
>   */
>  static inline int ib_dma_mapping_error(struct ib_device *dev, u64
> dma_addr)  {
> -	return dma_mapping_error(&dev->dev, dma_addr);
> +	return dma_mapping_error(dev->dma_device, dma_addr);
>  }
> 
>  /**
> @@ -3021,7 +3024,7 @@ static inline u64 ib_dma_map_single(struct
> ib_device *dev,
>  				    void *cpu_addr, size_t size,
>  				    enum dma_data_direction direction)  {
> -	return dma_map_single(&dev->dev, cpu_addr, size, direction);
> +	return dma_map_single(dev->dma_device, cpu_addr, size,
> direction);
>  }
> 
>  /**
> @@ -3035,7 +3038,7 @@ static inline void ib_dma_unmap_single(struct
> ib_device *dev,
>  				       u64 addr, size_t size,
>  				       enum dma_data_direction direction)  {
> -	dma_unmap_single(&dev->dev, addr, size, direction);
> +	dma_unmap_single(dev->dma_device, addr, size, direction);
>  }
> 
>  /**
> @@ -3052,7 +3055,7 @@ static inline u64 ib_dma_map_page(struct
> ib_device *dev,
>  				  size_t size,
>  					 enum dma_data_direction direction)
> {
> -	return dma_map_page(&dev->dev, page, offset, size, direction);
> +	return dma_map_page(dev->dma_device, page, offset, size,
> direction);
>  }
> 
>  /**
> @@ -3066,7 +3069,7 @@ static inline void ib_dma_unmap_page(struct
> ib_device *dev,
>  				     u64 addr, size_t size,
>  				     enum dma_data_direction direction)  {
> -	dma_unmap_page(&dev->dev, addr, size, direction);
> +	dma_unmap_page(dev->dma_device, addr, size, direction);
>  }
> 
>  /**
> @@ -3080,7 +3083,7 @@ static inline int ib_dma_map_sg(struct ib_device
> *dev,
>  				struct scatterlist *sg, int nents,
>  				enum dma_data_direction direction)
>  {
> -	return dma_map_sg(&dev->dev, sg, nents, direction);
> +	return dma_map_sg(dev->dma_device, sg, nents, direction);
>  }
> 
>  /**
> @@ -3094,7 +3097,7 @@ static inline void ib_dma_unmap_sg(struct
> ib_device *dev,
>  				   struct scatterlist *sg, int nents,
>  				   enum dma_data_direction direction)  {
> -	dma_unmap_sg(&dev->dev, sg, nents, direction);
> +	dma_unmap_sg(dev->dma_device, sg, nents, direction);
>  }
> 
>  static inline int ib_dma_map_sg_attrs(struct ib_device *dev, @@ -3102,7
> +3105,8 @@ static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
>  				      enum dma_data_direction direction,
>  				      unsigned long dma_attrs)
>  {
> -	return dma_map_sg_attrs(&dev->dev, sg, nents, direction,
> dma_attrs);
> +	return dma_map_sg_attrs(dev->dma_device, sg, nents, direction,
> +				dma_attrs);
>  }
> 
>  static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev, @@ -
> 3110,7 +3114,7 @@ static inline void ib_dma_unmap_sg_attrs(struct
> ib_device *dev,
>  					 enum dma_data_direction direction,
>  					 unsigned long dma_attrs)
>  {
> -	dma_unmap_sg_attrs(&dev->dev, sg, nents, direction, dma_attrs);
> +	dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction,
> dma_attrs);
>  }
>  /**
>   * ib_sg_dma_address - Return the DMA address from a scatter/gather
> entry @@ -3152,7 +3156,7 @@ static inline void
> ib_dma_sync_single_for_cpu(struct ib_device *dev,
>  					      size_t size,
>  					      enum dma_data_direction dir)  {
> -	dma_sync_single_for_cpu(&dev->dev, addr, size, dir);
> +	dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
>  }
> 
>  /**
> @@ -3167,7 +3171,7 @@ static inline void
> ib_dma_sync_single_for_device(struct ib_device *dev,
>  						 size_t size,
>  						 enum dma_data_direction
> dir)
>  {
> -	dma_sync_single_for_device(&dev->dev, addr, size, dir);
> +	dma_sync_single_for_device(dev->dma_device, addr, size, dir);
>  }
> 
>  /**
> @@ -3182,7 +3186,7 @@ static inline void *ib_dma_alloc_coherent(struct
> ib_device *dev,
>  					   dma_addr_t *dma_handle,
>  					   gfp_t flag)
>  {
> -	return dma_alloc_coherent(&dev->dev, size, dma_handle, flag);
> +	return dma_alloc_coherent(dev->dma_device, size, dma_handle,
> flag);
>  }
> 
>  /**
> @@ -3196,7 +3200,7 @@ static inline void ib_dma_free_coherent(struct
> ib_device *dev,
>  					size_t size, void *cpu_addr,
>  					dma_addr_t dma_handle)
>  {
> -	dma_free_coherent(&dev->dev, size, cpu_addr, dma_handle);
> +	dma_free_coherent(dev->dma_device, size, cpu_addr,
> dma_handle);
>  }
> 
>  /**
> --
> 2.12.0
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the
> body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
  2017-03-07 22:56 [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support Bart Van Assche
@ 2017-03-08 17:48 ` Parav Pandit
       [not found] ` <1D08B61A9CF0974AA09887BE32D889DA0DBFCB-fxMRTlsoH6pS59oDqloDyoaX4dThiank9m7AsFVS2+l8Oh6FZyoiAQ@public.gmane.org>
  1 sibling, 0 replies; 8+ messages in thread
From: Parav Pandit @ 2017-03-08 17:48 UTC (permalink / raw)
  To: Bart Van Assche, Doug Ledford
  Cc: Sebastian Ott, linux-rdma-u79uwXL29TY76Z2rM5mHXA

Hi Bart,

I tested with mlx5 with/without enabling iommu.
I haven't tested rxe.

Reviewed-by: parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
Tested-by: parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org

Parav

> -----Original Message-----
> From: Parav Pandit
> Sent: Tuesday, March 7, 2017 6:51 PM
> To: 'Bart Van Assche' <Bart.VanAssche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>; Doug Ledford
> <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> Cc: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>; linux-
> rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Subject: RE: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
> 
> Hi Bart,
> 
> This fix looks good to me.
> I haven't had chance to test it yet.
> 
> Parav
> 
> > -----Original Message-----
> > From: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-rdma-
> > owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Bart Van Assche
> > Sent: Tuesday, March 7, 2017 4:57 PM
> > To: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> > Cc: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>; Parav Pandit
> > <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>; linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > Subject: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
> >
> > Avoid that the following error message is reported on the console
> > while loading an RDMA driver with I/O MMU support enabled:
> >
> > DMAR: Allocating domain for mlx5_0 failed
> >
> > Ensure that DMA mapping operations that use to_pci_dev() to access to
> > struct pci_dev see the correct PCI device. E.g. the s390 and powerpc
> > DMA mapping operations use to_pci_dev() even with I/O MMU support
> disabled.
> >
> > This patch preserves the following changes of the DMA mapping updates
> > patch series:
> > - Introduction of dma_virt_ops.
> > - Removal of ib_device.dma_ops.
> > - Removal of struct ib_dma_mapping_ops.
> > - Removal of an if-statement from each ib_dma_*() operation.
> > - IB HW drivers no longer set dma_device directly.
> >
> > Reported-by: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> > Reported-by: Parav Pandit <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> > Fixes: commit 99db9494035f ("IB/core: Remove ib_device.dma_device")
> > Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> > ---
> >  drivers/infiniband/core/device.c | 26 ++++++++++++++++++++------
> >  include/rdma/ib_verbs.h          | 30 +++++++++++++++++-------------
> >  2 files changed, 37 insertions(+), 19 deletions(-)
> >
> > diff --git a/drivers/infiniband/core/device.c
> > b/drivers/infiniband/core/device.c
> > index 593d2ce6ec7c..addf869045cc 100644
> > --- a/drivers/infiniband/core/device.c
> > +++ b/drivers/infiniband/core/device.c
> > @@ -336,12 +336,26 @@ int ib_register_device(struct ib_device *device,
> >  	struct device *parent = device->dev.parent;
> >
> >  	WARN_ON_ONCE(!parent);
> > -	if (!device->dev.dma_ops)
> > -		device->dev.dma_ops = parent->dma_ops;
> > -	if (!device->dev.dma_mask)
> > -		device->dev.dma_mask = parent->dma_mask;
> > -	if (!device->dev.coherent_dma_mask)
> > -		device->dev.coherent_dma_mask = parent-
> > >coherent_dma_mask;
> > +	WARN_ON_ONCE(device->dma_device);
> > +	if (device->dev.dma_ops) {
> > +		/*
> > +		 * The caller provided custom DMA operations. Copy the
> > +		 * DMA-related fields that are used by e.g.
> > dma_alloc_coherent()
> > +		 * into device->dev.
> > +		 */
> > +		device->dma_device = &device->dev;
> > +		if (!device->dev.dma_mask)
> > +			device->dev.dma_mask = parent->dma_mask;
> > +		if (!device->dev.coherent_dma_mask)
> > +			device->dev.coherent_dma_mask =
> > +				parent->coherent_dma_mask;
> > +	} else {
> > +		/*
> > +		 * The caller did not provide custom DMA operations. Use the
> > +		 * DMA mapping operations of the parent device.
> > +		 */
> > +		device->dma_device = parent;
> > +	}
> >
> >  	mutex_lock(&device_mutex);
> >
> > diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index
> > 0f1813c13687..99e4423eb2b8 100644
> > --- a/include/rdma/ib_verbs.h
> > +++ b/include/rdma/ib_verbs.h
> > @@ -1863,6 +1863,9 @@ struct ib_port_immutable {  };
> >
> >  struct ib_device {
> > +	/* Do not access @dma_device directly from ULP nor from HW
> > drivers. */
> > +	struct device                *dma_device;
> > +
> >  	char                          name[IB_DEVICE_NAME_MAX];
> >
> >  	struct list_head              event_handler_list;
> > @@ -3007,7 +3010,7 @@ static inline int ib_req_ncomp_notif(struct
> > ib_cq *cq, int wc_cnt)
> >   */
> >  static inline int ib_dma_mapping_error(struct ib_device *dev, u64
> > dma_addr)  {
> > -	return dma_mapping_error(&dev->dev, dma_addr);
> > +	return dma_mapping_error(dev->dma_device, dma_addr);
> >  }
> >
> >  /**
> > @@ -3021,7 +3024,7 @@ static inline u64 ib_dma_map_single(struct
> > ib_device *dev,
> >  				    void *cpu_addr, size_t size,
> >  				    enum dma_data_direction direction)  {
> > -	return dma_map_single(&dev->dev, cpu_addr, size, direction);
> > +	return dma_map_single(dev->dma_device, cpu_addr, size,
> > direction);
> >  }
> >
> >  /**
> > @@ -3035,7 +3038,7 @@ static inline void ib_dma_unmap_single(struct
> > ib_device *dev,
> >  				       u64 addr, size_t size,
> >  				       enum dma_data_direction direction)  {
> > -	dma_unmap_single(&dev->dev, addr, size, direction);
> > +	dma_unmap_single(dev->dma_device, addr, size, direction);
> >  }
> >
> >  /**
> > @@ -3052,7 +3055,7 @@ static inline u64 ib_dma_map_page(struct
> > ib_device *dev,
> >  				  size_t size,
> >  					 enum dma_data_direction direction)
> {
> > -	return dma_map_page(&dev->dev, page, offset, size, direction);
> > +	return dma_map_page(dev->dma_device, page, offset, size,
> > direction);
> >  }
> >
> >  /**
> > @@ -3066,7 +3069,7 @@ static inline void ib_dma_unmap_page(struct
> > ib_device *dev,
> >  				     u64 addr, size_t size,
> >  				     enum dma_data_direction direction)  {
> > -	dma_unmap_page(&dev->dev, addr, size, direction);
> > +	dma_unmap_page(dev->dma_device, addr, size, direction);
> >  }
> >
> >  /**
> > @@ -3080,7 +3083,7 @@ static inline int ib_dma_map_sg(struct ib_device
> > *dev,
> >  				struct scatterlist *sg, int nents,
> >  				enum dma_data_direction direction)  {
> > -	return dma_map_sg(&dev->dev, sg, nents, direction);
> > +	return dma_map_sg(dev->dma_device, sg, nents, direction);
> >  }
> >
> >  /**
> > @@ -3094,7 +3097,7 @@ static inline void ib_dma_unmap_sg(struct
> > ib_device *dev,
> >  				   struct scatterlist *sg, int nents,
> >  				   enum dma_data_direction direction)  {
> > -	dma_unmap_sg(&dev->dev, sg, nents, direction);
> > +	dma_unmap_sg(dev->dma_device, sg, nents, direction);
> >  }
> >
> >  static inline int ib_dma_map_sg_attrs(struct ib_device *dev, @@
> > -3102,7
> > +3105,8 @@ static inline int ib_dma_map_sg_attrs(struct ib_device
> > +*dev,
> >  				      enum dma_data_direction direction,
> >  				      unsigned long dma_attrs)
> >  {
> > -	return dma_map_sg_attrs(&dev->dev, sg, nents, direction,
> > dma_attrs);
> > +	return dma_map_sg_attrs(dev->dma_device, sg, nents, direction,
> > +				dma_attrs);
> >  }
> >
> >  static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev, @@ -
> > 3110,7 +3114,7 @@ static inline void ib_dma_unmap_sg_attrs(struct
> > ib_device *dev,
> >  					 enum dma_data_direction direction,
> >  					 unsigned long dma_attrs)
> >  {
> > -	dma_unmap_sg_attrs(&dev->dev, sg, nents, direction, dma_attrs);
> > +	dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction,
> > dma_attrs);
> >  }
> >  /**
> >   * ib_sg_dma_address - Return the DMA address from a scatter/gather
> > entry @@ -3152,7 +3156,7 @@ static inline void
> > ib_dma_sync_single_for_cpu(struct ib_device *dev,
> >  					      size_t size,
> >  					      enum dma_data_direction dir)  {
> > -	dma_sync_single_for_cpu(&dev->dev, addr, size, dir);
> > +	dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
> >  }
> >
> >  /**
> > @@ -3167,7 +3171,7 @@ static inline void
> > ib_dma_sync_single_for_device(struct ib_device *dev,
> >  						 size_t size,
> >  						 enum dma_data_direction
> > dir)
> >  {
> > -	dma_sync_single_for_device(&dev->dev, addr, size, dir);
> > +	dma_sync_single_for_device(dev->dma_device, addr, size, dir);
> >  }
> >
> >  /**
> > @@ -3182,7 +3186,7 @@ static inline void *ib_dma_alloc_coherent(struct
> > ib_device *dev,
> >  					   dma_addr_t *dma_handle,
> >  					   gfp_t flag)
> >  {
> > -	return dma_alloc_coherent(&dev->dev, size, dma_handle, flag);
> > +	return dma_alloc_coherent(dev->dma_device, size, dma_handle,
> > flag);
> >  }
> >
> >  /**
> > @@ -3196,7 +3200,7 @@ static inline void ib_dma_free_coherent(struct
> > ib_device *dev,
> >  					size_t size, void *cpu_addr,
> >  					dma_addr_t dma_handle)
> >  {
> > -	dma_free_coherent(&dev->dev, size, cpu_addr, dma_handle);
> > +	dma_free_coherent(dev->dma_device, size, cpu_addr,
> > dma_handle);
> >  }
> >
> >  /**
> > --
> > 2.12.0
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-rdma"
> > in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More
> majordomo
> > info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
       [not found] ` <1D08B61A9CF0974AA09887BE32D889DA0DBFCB-fxMRTlsoH6pS59oDqloDyoaX4dThiank9m7AsFVS2+l8Oh6FZyoiAQ@public.gmane.org>
  2017-03-08  0:50   ` Parav Pandit
@ 2017-03-13  9:30   ` Leon Romanovsky
  2017-03-13 17:04   ` Bart Van Assche
  2017-03-19  9:26   ` Leon Romanovsky
  3 siblings, 0 replies; 8+ messages in thread
From: Leon Romanovsky @ 2017-03-13  9:30 UTC (permalink / raw)
  To: Bart Van Assche
  Cc: Doug Ledford, Sebastian Ott, Parav Pandit,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 1396 bytes --]

On Tue, Mar 07, 2017 at 10:56:53PM +0000, Bart Van Assche wrote:
> Avoid that the following error message is reported on the console
> while loading an RDMA driver with I/O MMU support enabled:
>
> DMAR: Allocating domain for mlx5_0 failed
>
> Ensure that DMA mapping operations that use to_pci_dev() to
> access to struct pci_dev see the correct PCI device. E.g. the s390
> and powerpc DMA mapping operations use to_pci_dev() even with I/O
> MMU support disabled.
>
> This patch preserves the following changes of the DMA mapping updates
> patch series:
> - Introduction of dma_virt_ops.
> - Removal of ib_device.dma_ops.
> - Removal of struct ib_dma_mapping_ops.
> - Removal of an if-statement from each ib_dma_*() operation.
> - IB HW drivers no longer set dma_device directly.
>
> Reported-by: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> Reported-by: Parav Pandit <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Fixes: commit 99db9494035f ("IB/core: Remove ib_device.dma_device")
> Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> ---
>  drivers/infiniband/core/device.c | 26 ++++++++++++++++++++------
>  include/rdma/ib_verbs.h          | 30 +++++++++++++++++-------------
>  2 files changed, 37 insertions(+), 19 deletions(-)
>

Thanks,
Reviewed-by: Leon Romanovsky <leonro-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
       [not found] ` <1D08B61A9CF0974AA09887BE32D889DA0DBFCB-fxMRTlsoH6pS59oDqloDyoaX4dThiank9m7AsFVS2+l8Oh6FZyoiAQ@public.gmane.org>
  2017-03-08  0:50   ` Parav Pandit
  2017-03-13  9:30   ` Leon Romanovsky
@ 2017-03-13 17:04   ` Bart Van Assche
       [not found]     ` <1489424634.2658.3.camel-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
  2017-03-19  9:26   ` Leon Romanovsky
  3 siblings, 1 reply; 8+ messages in thread
From: Bart Van Assche @ 2017-03-13 17:04 UTC (permalink / raw)
  To: sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
  Cc: parav-VPRAkNaXOzVWk0Htik3J/w, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	dledford-H+wXaHxf7aLQT0dZR+AlfA

On Tue, 2017-03-07 at 22:56 +0000, Bart Van Assche wrote:
> [ ... ]
> Ensure that DMA mapping operations that use to_pci_dev() to
> access to struct pci_dev see the correct PCI device. E.g. the s390
> and powerpc DMA mapping operations use to_pci_dev() even with I/O
> MMU support disabled.
> [ ... ]

Hello Sebastian,

Have you already been able to test this patch?

Thanks,

Bart.--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
       [not found]     ` <1489424634.2658.3.camel-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
@ 2017-03-13 17:15       ` Sebastian Ott
  0 siblings, 0 replies; 8+ messages in thread
From: Sebastian Ott @ 2017-03-13 17:15 UTC (permalink / raw)
  To: Bart Van Assche
  Cc: parav-VPRAkNaXOzVWk0Htik3J/w, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	dledford-H+wXaHxf7aLQT0dZR+AlfA

Hi,

On Mon, 13 Mar 2017, Bart Van Assche wrote:
> On Tue, 2017-03-07 at 22:56 +0000, Bart Van Assche wrote:
> > [ ... ]
> > Ensure that DMA mapping operations that use to_pci_dev() to
> > access to struct pci_dev see the correct PCI device. E.g. the s390
> > and powerpc DMA mapping operations use to_pci_dev() even with I/O
> > MMU support disabled.
> > [ ... ]
> 
> Have you already been able to test this patch?

Yes. I've tested this one this morning on top of v4.11-rc2 and can confirm
that everything works as expected.

Thanks!

Sebastian

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
       [not found] ` <1D08B61A9CF0974AA09887BE32D889DA0DBFCB-fxMRTlsoH6pS59oDqloDyoaX4dThiank9m7AsFVS2+l8Oh6FZyoiAQ@public.gmane.org>
                     ` (2 preceding siblings ...)
  2017-03-13 17:04   ` Bart Van Assche
@ 2017-03-19  9:26   ` Leon Romanovsky
       [not found]     ` <20170319092605.GS2079-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
  3 siblings, 1 reply; 8+ messages in thread
From: Leon Romanovsky @ 2017-03-19  9:26 UTC (permalink / raw)
  To: Doug Ledford, Bart Van Assche
  Cc: Sebastian Ott, Parav Pandit, linux-rdma-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 1414 bytes --]

On Tue, Mar 07, 2017 at 10:56:53PM +0000, Bart Van Assche wrote:
> Avoid that the following error message is reported on the console
> while loading an RDMA driver with I/O MMU support enabled:
>
> DMAR: Allocating domain for mlx5_0 failed
>
> Ensure that DMA mapping operations that use to_pci_dev() to
> access to struct pci_dev see the correct PCI device. E.g. the s390
> and powerpc DMA mapping operations use to_pci_dev() even with I/O
> MMU support disabled.
>
> This patch preserves the following changes of the DMA mapping updates
> patch series:
> - Introduction of dma_virt_ops.
> - Removal of ib_device.dma_ops.
> - Removal of struct ib_dma_mapping_ops.
> - Removal of an if-statement from each ib_dma_*() operation.
> - IB HW drivers no longer set dma_device directly.
>
> Reported-by: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> Reported-by: Parav Pandit <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Fixes: commit 99db9494035f ("IB/core: Remove ib_device.dma_device")
> Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> ---
>  drivers/infiniband/core/device.c | 26 ++++++++++++++++++++------
>  include/rdma/ib_verbs.h          | 30 +++++++++++++++++-------------
>  2 files changed, 37 insertions(+), 19 deletions(-)
>

Hi Doug,

Can you please forward this patch to Linus? The IB/core is broken
without this patch.

Thanks

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support
       [not found]     ` <20170319092605.GS2079-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
@ 2017-03-25  2:11       ` Doug Ledford
  0 siblings, 0 replies; 8+ messages in thread
From: Doug Ledford @ 2017-03-25  2:11 UTC (permalink / raw)
  To: Leon Romanovsky, Bart Van Assche
  Cc: Sebastian Ott, Parav Pandit, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On Sun, 2017-03-19 at 11:26 +0200, Leon Romanovsky wrote:
> On Tue, Mar 07, 2017 at 10:56:53PM +0000, Bart Van Assche wrote:
> > 
> > Avoid that the following error message is reported on the console
> > while loading an RDMA driver with I/O MMU support enabled:
> > 
> > DMAR: Allocating domain for mlx5_0 failed
> > 
> > Ensure that DMA mapping operations that use to_pci_dev() to
> > access to struct pci_dev see the correct PCI device. E.g. the s390
> > and powerpc DMA mapping operations use to_pci_dev() even with I/O
> > MMU support disabled.
> > 
> > This patch preserves the following changes of the DMA mapping
> > updates
> > patch series:
> > - Introduction of dma_virt_ops.
> > - Removal of ib_device.dma_ops.
> > - Removal of struct ib_dma_mapping_ops.
> > - Removal of an if-statement from each ib_dma_*() operation.
> > - IB HW drivers no longer set dma_device directly.
> > 
> > Reported-by: Sebastian Ott <sebott-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> > Reported-by: Parav Pandit <parav-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> > Fixes: commit 99db9494035f ("IB/core: Remove ib_device.dma_device")
> > Signed-off-by: Bart Van Assche <bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
> > ---
> >  drivers/infiniband/core/device.c | 26 ++++++++++++++++++++------
> >  include/rdma/ib_verbs.h          | 30 +++++++++++++++++-----------
> > --
> >  2 files changed, 37 insertions(+), 19 deletions(-)
> > 
> 
> Hi Doug,
> 
> Can you please forward this patch to Linus? The IB/core is broken
> without this patch.
> 

It's been applied, thanks.

-- 
Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    GPG KeyID: B826A3330E572FDD
   
Key fingerprint = AE6B 1BDA 122B 23B4 265B  1274 B826 A333 0E57 2FDD

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-03-25  2:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-07 22:56 [PATCH] IB/core: Restore I/O MMU, s390 and powerpc support Bart Van Assche
2017-03-08 17:48 ` Parav Pandit
     [not found] ` <1D08B61A9CF0974AA09887BE32D889DA0DBFCB-fxMRTlsoH6pS59oDqloDyoaX4dThiank9m7AsFVS2+l8Oh6FZyoiAQ@public.gmane.org>
2017-03-08  0:50   ` Parav Pandit
2017-03-13  9:30   ` Leon Romanovsky
2017-03-13 17:04   ` Bart Van Assche
     [not found]     ` <1489424634.2658.3.camel-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org>
2017-03-13 17:15       ` Sebastian Ott
2017-03-19  9:26   ` Leon Romanovsky
     [not found]     ` <20170319092605.GS2079-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-03-25  2:11       ` Doug Ledford

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.