public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
To: Selvin Xavier <selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Cc: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	Sean Hefty <sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	Hal Rosenstock
	<hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Devesh Sharma
	<devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
	Somnath Kotur
	<somnath.kotur-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
	Sriharsha Basavapatna
	<sriharsha.basavapatna-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
	benve-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org,
	dgoodell-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org,
	monis-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org,
	Leon Romanovsky <leonro-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	ira.weiny-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
	dasaratharaman.chandramouli-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
	sagi-TmH2Wj2nsNJBDLzU/O5InQ@public.gmane.org,
	bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org,
	Yishai Hadas <yishaih-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v3 2/2] IB/core: Add generic function to extract IB speed from netdev
Date: Mon, 26 Jun 2017 22:12:55 +0300	[thread overview]
Message-ID: <20170626191252.GA14355@raspberrypi> (raw)
In-Reply-To: <CA+sbYW07k=UoFvJVLvjfTcuUosoJJk34mSZJAfXRaUJuHwS3cA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Wed, Jun 14, 2017 at 08:45:12PM +0530, Selvin Xavier wrote:
> On Sun, Jun 11, 2017 at 11:14 AM, Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org> wrote:
> > diff --git a/drivers/infiniband/hw/bnxt_re/ib_verbs.c b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
> > index 7ba9e69..d0e0f90 100644
> > --- a/drivers/infiniband/hw/bnxt_re/ib_verbs.c
> > +++ b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
> > @@ -181,50 +181,6 @@ int bnxt_re_modify_device(struct ib_device *ibdev,
> >         return 0;
> >  }
> >
> > -static void __to_ib_speed_width(struct net_device *netdev, u8 *speed, u8 *width)
> > -{
> > -       struct ethtool_link_ksettings lksettings;
> > -       u32 espeed;
> > -
> > -       if (netdev->ethtool_ops && netdev->ethtool_ops->get_link_ksettings) {
> > -               memset(&lksettings, 0, sizeof(lksettings));
> > -               rtnl_lock();
> > -               netdev->ethtool_ops->get_link_ksettings(netdev, &lksettings);
> > -               rtnl_unlock();
> > -               espeed = lksettings.base.speed;
> > -       } else {
> > -               espeed = SPEED_UNKNOWN;
> > -       }
> > -       switch (espeed) {
> > -       case SPEED_1000:
> > -               *speed = IB_SPEED_SDR;
> > -               *width = IB_WIDTH_1X;
> > -               break;
> > -       case SPEED_10000:
> > -               *speed = IB_SPEED_QDR;
> > -               *width = IB_WIDTH_1X;
> > -               break;
> > -       case SPEED_20000:
> > -               *speed = IB_SPEED_DDR;
> > -               *width = IB_WIDTH_4X;
> > -               break;
> > -       case SPEED_25000:
> > -               *speed = IB_SPEED_EDR;
> > -               *width = IB_WIDTH_1X;
> > -               break;
> > -       case SPEED_40000:
> > -               *speed = IB_SPEED_QDR;
> > -               *width = IB_WIDTH_4X;
> > -               break;
> > -       case SPEED_50000:
> > -               break;
> > -       default:
> > -               *speed = IB_SPEED_SDR;
> > -               *width = IB_WIDTH_1X;
> > -               break;
> > -       }
> > -}
> > -
> >  /* Port */
> >  int bnxt_re_query_port(struct ib_device *ibdev, u8 port_num,
> >                        struct ib_port_attr *port_attr)
> > @@ -266,8 +222,9 @@ int bnxt_re_query_port(struct ib_device *ibdev, u8 port_num,
> >          * IB stack to avoid race in the NETDEV_UNREG path
> >          */
> >         if (test_bit(BNXT_RE_FLAG_IBDEV_REGISTERED, &rdev->flags))
> > -               __to_ib_speed_width(rdev->netdev, &port_attr->active_speed,
> > -                                   &port_attr->active_width);
> > +               if (!ib_get_eth_speed(ibdev, port_num, &port_attr->active_speed,
> > +                                     &port_attr->active_width))
> > +                       return -EINVAL;
> >         return 0;
> >  }
> 
> The bnxt_re changes looks good to me.
> 
> But this change conflicts with one of the patches i submitted as a
> part of the bug fix series.
> 
> https://patchwork.kernel.org/patch/9786057/
> 
> Depending on the order in which Doug pulls these patches, one of us
> might have to
> re-spin the patch.

Doug, you want me to rebase v4 of the patch on top of the above?

> 
> Thanks,
> Selvin Xavier
> --
> 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

      parent reply	other threads:[~2017-06-26 19:12 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-11  5:44 [PATCH v3] IB/{core, usnic}: Add generic function to extract IB speed from netdev Yuval Shaia
     [not found] ` <20170611054450.7221-1-yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2017-06-11  5:44   ` [PATCH v3 1/2] IB/usnic: Implement get_netdev hook Yuval Shaia
     [not found]     ` <20170611054450.7221-2-yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2017-06-13  7:25       ` Leon Romanovsky
     [not found]         ` <20170613072526.GM2576-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-06-13  7:35           ` Yuval Shaia
2017-06-13 10:37             ` Leon Romanovsky
2017-06-13  7:56       ` Christian Benvenuti (benve)
2017-06-11  5:44   ` [PATCH v3 2/2] IB/core: Add generic function to extract IB speed from netdev Yuval Shaia
     [not found]     ` <20170611054450.7221-3-yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2017-06-11  6:17       ` Moni Shoua
     [not found]         ` <CAG9sBKOTmcpy=iSZZ3=PG_k5o7HNS4vNA1qaahVZeOP2d2FLBw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-06-12 18:59           ` Yuval Shaia
2017-06-13  8:07       ` Christian Benvenuti (benve)
     [not found]         ` <e58c9e7782774aa1b710b779c44f918d-NcvnDpcxJI+VcpH5Q1TwH6BKnGwkPULj@public.gmane.org>
2017-06-14 13:02           ` Yuval Shaia
2017-06-14 15:04             ` Christian Benvenuti (benve)
     [not found]               ` <e61752e6cd164574b08161ae5f4c43f6-NcvnDpcxJI+VcpH5Q1TwH6BKnGwkPULj@public.gmane.org>
2017-06-14 19:14                 ` Yuval Shaia
2017-06-14 20:00                   ` Yuval Shaia
2017-06-13 10:37       ` Leon Romanovsky
2017-06-14 15:15       ` Selvin Xavier
     [not found]         ` <CA+sbYW07k=UoFvJVLvjfTcuUosoJJk34mSZJAfXRaUJuHwS3cA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-06-26 19:12           ` Yuval Shaia [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170626191252.GA14355@raspberrypi \
    --to=yuval.shaia-qhclzuegtsvqt0dzr+alfa@public.gmane.org \
    --cc=bart.vanassche-XdAiOPVOjttBDgjK7y7TUQ@public.gmane.org \
    --cc=benve-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org \
    --cc=dasaratharaman.chandramouli-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=devesh.sharma-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
    --cc=dgoodell-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=ira.weiny-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=leonro-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=monis-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=sagi-TmH2Wj2nsNJBDLzU/O5InQ@public.gmane.org \
    --cc=sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=selvin.xavier-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
    --cc=somnath.kotur-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
    --cc=sriharsha.basavapatna-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
    --cc=yishaih-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox