Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1485239 > unrolled thread
| Started by | Knut Omang <knut.omang@oracle.com> |
|---|---|
| First post | 2016-09-16 20:40 +0200 |
| Last post | 2016-09-16 22:50 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 1/8] ib_mad: incoming sminfo SMPs gets discarded if no process_mad function is registered Knut Omang <knut.omang@oracle.com> - 2016-09-16 20:40 +0200
Re: [PATCH v2 1/8] ib_mad: incoming sminfo SMPs gets discarded if no process_mad function is registered Santosh Shilimkar <santosh.shilimkar@oracle.com> - 2016-09-16 22:30 +0200
Re: [PATCH v2 1/8] ib_mad: incoming sminfo SMPs gets discarded if no process_mad function is registered Knut Omang <knut.omang@oracle.com> - 2016-09-16 22:50 +0200
| From | Knut Omang <knut.omang@oracle.com> |
|---|---|
| Date | 2016-09-16 20:40 +0200 |
| Subject | [PATCH v2 1/8] ib_mad: incoming sminfo SMPs gets discarded if no process_mad function is registered |
| Message-ID | <si6dk-8sO-23@gated-at.bofh.it> |
From: Dag Moxnes <dag.moxnes@oracle.com>
The process_mad function is an optional IB driver entry point
allows a driver to intercept or modify MAD traffic.
This fix allows MAD traffic to flow down to the device also
when MAD traffic is completely handled by the device and
no process_mad function is provided.
SIF, the new Oracle Infiniband HCA, is the first HCA
where the device itself makes all decision wrt MAD processing.
Up till now devices either supports MAD, and do then
implement the process_mad entry point, or do not
support MAD at all, and then do not implement process_mad.
SIF introduces a 3rd case: Supports MAD
but do not terminate any MAD requests in the driver.
This case is not handled well by the current code.
The problem is that the handle_outgoing_dr_smp function
has an implicit assumption that some packets are handled
by the process_mad function itself.
There is no way to provide return values from the process_mad
function that ensures that packets are always forwarded to the device,
so the only viable solution without breaking the API
seems to be to not implement process_mad.
---
drivers/infiniband/core/mad.c | 6 ++++++
drivers/infiniband/core/smi.h | 6 ++----
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/drivers/infiniband/core/mad.c b/drivers/infiniband/core/mad.c
index 2d49228..ece33ec 100644
--- a/drivers/infiniband/core/mad.c
+++ b/drivers/infiniband/core/mad.c
@@ -813,6 +813,12 @@ static int handle_outgoing_dr_smp(struct ib_mad_agent_private *mad_agent_priv,
goto out;
}
+ /* If device does not define the optional process_mad function it means that
+ * everything is handled in hardware:
+ */
+ if (!device->process_mad)
+ goto out;
+
local = kmalloc(sizeof *local, GFP_ATOMIC);
if (!local) {
ret = -ENOMEM;
diff --git a/drivers/infiniband/core/smi.h b/drivers/infiniband/core/smi.h
index 33c91c8..16a9f9a 100644
--- a/drivers/infiniband/core/smi.h
+++ b/drivers/infiniband/core/smi.h
@@ -67,8 +67,7 @@ static inline enum smi_action smi_check_local_smp(struct ib_smp *smp,
{
/* C14-9:3 -- We're at the end of the DR segment of path */
/* C14-9:4 -- Hop Pointer = Hop Count + 1 -> give to SMA/SM */
- return ((device->process_mad &&
- !ib_get_smp_direction(smp) &&
+ return ((!ib_get_smp_direction(smp) &&
(smp->hop_ptr == smp->hop_cnt + 1)) ?
IB_SMI_HANDLE : IB_SMI_DISCARD);
}
@@ -82,8 +81,7 @@ static inline enum smi_action smi_check_local_returning_smp(struct ib_smp *smp,
{
/* C14-13:3 -- We're at the end of the DR segment of path */
/* C14-13:4 -- Hop Pointer == 0 -> give to SM */
- return ((device->process_mad &&
- ib_get_smp_direction(smp) &&
+ return ((ib_get_smp_direction(smp) &&
!smp->hop_ptr) ? IB_SMI_HANDLE : IB_SMI_DISCARD);
}
--
git-series 0.8.10
[toc] | [next] | [standalone]
| From | Santosh Shilimkar <santosh.shilimkar@oracle.com> |
|---|---|
| Date | 2016-09-16 22:30 +0200 |
| Subject | Re: [PATCH v2 1/8] ib_mad: incoming sminfo SMPs gets discarded if no process_mad function is registered |
| Message-ID | <si7VL-1eB-15@gated-at.bofh.it> |
| In reply to | #1485239 |
On 9/16/2016 11:31 AM, Knut Omang wrote: > From: Dag Moxnes <dag.moxnes@oracle.com> > > The process_mad function is an optional IB driver entry point > allows a driver to intercept or modify MAD traffic. > > This fix allows MAD traffic to flow down to the device also > when MAD traffic is completely handled by the device and > no process_mad function is provided. > > SIF, the new Oracle Infiniband HCA, is the first HCA > where the device itself makes all decision wrt MAD processing. > Up till now devices either supports MAD, and do then > implement the process_mad entry point, or do not > support MAD at all, and then do not implement process_mad. > > SIF introduces a 3rd case: Supports MAD > but do not terminate any MAD requests in the driver. > This case is not handled well by the current code. > > The problem is that the handle_outgoing_dr_smp function > has an implicit assumption that some packets are handled > by the process_mad function itself. > > There is no way to provide return values from the process_mad > function that ensures that packets are always forwarded to the device, > so the only viable solution without breaking the API > seems to be to not implement process_mad. No SOBs ?
[toc] | [prev] | [next] | [standalone]
| From | Knut Omang <knut.omang@oracle.com> |
|---|---|
| Date | 2016-09-16 22:50 +0200 |
| Subject | Re: [PATCH v2 1/8] ib_mad: incoming sminfo SMPs gets discarded if no process_mad function is registered |
| Message-ID | <si8f8-1lB-9@gated-at.bofh.it> |
| In reply to | #1485352 |
On Fri, 2016-09-16 at 13:28 -0700, Santosh Shilimkar wrote: > On 9/16/2016 11:31 AM, Knut Omang wrote: > > From: Dag Moxnes <dag.moxnes@oracle.com> > > > > The process_mad function is an optional IB driver entry point > > allows a driver to intercept or modify MAD traffic. > > > > This fix allows MAD traffic to flow down to the device also > > when MAD traffic is completely handled by the device and > > no process_mad function is provided. > > > > SIF, the new Oracle Infiniband HCA, is the first HCA > > where the device itself makes all decision wrt MAD processing. > > Up till now devices either supports MAD, and do then > > implement the process_mad entry point, or do not > > support MAD at all, and then do not implement process_mad. > > > > SIF introduces a 3rd case: Supports MAD > > but do not terminate any MAD requests in the driver. > > This case is not handled well by the current code. > > > > The problem is that the handle_outgoing_dr_smp function > > has an implicit assumption that some packets are handled > > by the process_mad function itself. > > > > There is no way to provide return values from the process_mad > > function that ensures that packets are always forwarded to the device, > > so the only viable solution without breaking the API > > seems to be to not implement process_mad. > > No SOBs ? is unfortunately recurring for several of the patches due to a missing -ns to format-patch. Will fix, Thanks, Knut
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web