All of lore.kernel.org
 help / color / mirror / Atom feed
* RE: [PATCH] qede: fix general protection fault may occur on probe
@ 2016-11-23  8:05 Amrani, Ram
  0 siblings, 0 replies; 5+ messages in thread
From: Amrani, Ram @ 2016-11-23  8:05 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: Elior, Ariel, Kalderon, Michal, Mintz, Yuval,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA

> The recent introduction of qedr driver support in qede causes a GPF when
> probing the driver in a server without a RoCE enabled QLogic NIC. This fix avoids
> using an uninitialized pointer in such a case. Caught by the kernel test robot.
> 
> ...

Hi Doug,
Note that I've previously sent this patch wrongfully as [PATCH rdma-core].
I guess this made you miss it.
It's an important bug fix that I hope will make it into 4.9.

Thanks,
Ram

--
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] 5+ messages in thread

* RE: [PATCH] qede: fix general protection fault may occur on probe
       [not found]     ` <50c75e84-ff6b-a06f-a4c3-4d004d1b56b2-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2016-12-14 20:31       ` Amrani, Ram
  0 siblings, 0 replies; 5+ messages in thread
From: Amrani, Ram @ 2016-12-14 20:31 UTC (permalink / raw)
  To: Doug Ledford
  Cc: Elior, Ariel, Kalderon, Michal, Mintz, Yuval,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA

> This patch was seriously malformed (spaces instead of tabs, no space
> beginning the line that ends the patch, etc).  I redid it by hand, it's now
> applied.
> 

Hmmm, probably resending it via Outlook and not via git was the cause. Sorry for that. I'll avoid this in the future.
I appreciate this, thank you.

Ram

--
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] 5+ messages in thread

* Re: [PATCH] qede: fix general protection fault may occur on probe
       [not found] ` <SN1PR07MB220763908ED050AAFE840CEAF8B70-mikhvbZlbf8TSoR2DauN2+FPX92sqiQdvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
@ 2016-12-14 19:17   ` Doug Ledford
       [not found]     ` <50c75e84-ff6b-a06f-a4c3-4d004d1b56b2-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Doug Ledford @ 2016-12-14 19:17 UTC (permalink / raw)
  To: Amrani, Ram
  Cc: Elior, Ariel, Kalderon, Michal, Mintz, Yuval,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA


[-- Attachment #1.1: Type: text/plain, Size: 1463 bytes --]

On 11/23/2016 3:03 AM, Amrani, Ram wrote:
> The recent introduction of qedr driver support in qede causes a GPF when probing the driver in a server without a RoCE enabled QLogic NIC. This fix avoids using an uninitialized pointer in such a case. Caught by the kernel test robot.
> 
> Signed-off-by: Ram Amrani <Ram.Amrani-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org>
> ---
> drivers/net/ethernet/qlogic/qede/qede_roce.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ethernet/qlogic/qede/qede_roce.c b/drivers/net/ethernet/qlogic/qede/qede_roce.c
> index 9867f96..4927271 100644
> --- a/drivers/net/ethernet/qlogic/qede/qede_roce.c
> +++ b/drivers/net/ethernet/qlogic/qede/qede_roce.c
> @@ -191,8 +191,8 @@ int qede_roce_register_driver(struct qedr_driver *drv)
>               }
>               mutex_unlock(&qedr_dev_list_lock);
> 
> -              DP_INFO(edev, "qedr: discovered and registered %d RoCE funcs\n",
> -                             qedr_counter);
> +             pr_notice("qedr: discovered and registered %d RoCE funcs\n",
> +                              qedr_counter);
> 
>                return 0;
> }
> --
> 1.8.3.1
> 

This patch was seriously malformed (spaces instead of tabs, no space
beginning the line that ends the patch, etc).  I redid it by hand, it's
now applied.

-- 
Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    GPG Key ID: 0E572FDD


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]

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

* [PATCH] qede: fix general protection fault may occur on probe
@ 2016-11-23  8:03 Amrani, Ram
       [not found] ` <SN1PR07MB220763908ED050AAFE840CEAF8B70-mikhvbZlbf8TSoR2DauN2+FPX92sqiQdvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Amrani, Ram @ 2016-11-23  8:03 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: Elior, Ariel, Kalderon, Michal, Mintz, Yuval,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA

The recent introduction of qedr driver support in qede causes a GPF when probing the driver in a server without a RoCE enabled QLogic NIC. This fix avoids using an uninitialized pointer in such a case. Caught by the kernel test robot.

Signed-off-by: Ram Amrani <Ram.Amrani-YGCgFSpz5w/QT0dZR+AlfA@public.gmane.org>
---
drivers/net/ethernet/qlogic/qede/qede_roce.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/qlogic/qede/qede_roce.c b/drivers/net/ethernet/qlogic/qede/qede_roce.c
index 9867f96..4927271 100644
--- a/drivers/net/ethernet/qlogic/qede/qede_roce.c
+++ b/drivers/net/ethernet/qlogic/qede/qede_roce.c
@@ -191,8 +191,8 @@ int qede_roce_register_driver(struct qedr_driver *drv)
              }
              mutex_unlock(&qedr_dev_list_lock);

-              DP_INFO(edev, "qedr: discovered and registered %d RoCE funcs\n",
-                             qedr_counter);
+             pr_notice("qedr: discovered and registered %d RoCE funcs\n",
+                              qedr_counter);

               return 0;
}
--
1.8.3.1
--
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] 5+ messages in thread

* RE: [PATCH] qede: fix general protection fault may occur on probe
@ 2016-11-23  8:01 Amrani, Ram
  0 siblings, 0 replies; 5+ messages in thread
From: Amrani, Ram @ 2016-11-23  8:01 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA
  Cc: Elior, Ariel, Kalderon, Michal, Mintz, Yuval,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA

> The recent introduction of qedr driver support in qede causes a GPF when
> probing the driver in a server without a RoCE enabled QLogic NIC. This fix avoids
> using an uninitialized pointer in such a case. Caught by the kernel test robot.
> 
> ...

This e-mail was wrongly sent as HTML.
I'll resend correctly.

Ram


--
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] 5+ messages in thread

end of thread, other threads:[~2016-12-14 20:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-23  8:05 [PATCH] qede: fix general protection fault may occur on probe Amrani, Ram
  -- strict thread matches above, loose matches on Subject: below --
2016-11-23  8:03 Amrani, Ram
     [not found] ` <SN1PR07MB220763908ED050AAFE840CEAF8B70-mikhvbZlbf8TSoR2DauN2+FPX92sqiQdvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2016-12-14 19:17   ` Doug Ledford
     [not found]     ` <50c75e84-ff6b-a06f-a4c3-4d004d1b56b2-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-12-14 20:31       ` Amrani, Ram
2016-11-23  8:01 Amrani, Ram

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.