Message ID | 8267b19e-d6a6-ac77-6b0e-e184e690db9b@users.sourceforge.net (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
On Fri, Apr 07, 2017 at 11:05:23PM +0200, SF Markus Elfring wrote: > From: Markus Elfring <elfring@users.sourceforge.net> > Date: Fri, 7 Apr 2017 21:06:08 +0200 > > The script "checkpatch.pl" pointed information out like the following. > > WARNING: quoted string split across lines > > Thus fix affected source code places. > > Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com> > --- > drivers/infiniband/ulp/ipoib/ipoib_main.c | 13 +++++++------ > 1 file changed, 7 insertions(+), 6 deletions(-) > > diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c > index 55581417eb43..43aef0ca53ad 100644 > --- a/drivers/infiniband/ulp/ipoib/ipoib_main.c > +++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c > @@ -226,8 +226,9 @@ static int ipoib_change_mtu(struct net_device *dev, int new_mtu) > priv->admin_mtu = new_mtu; > > if (priv->mcast_mtu < priv->admin_mtu) > - ipoib_dbg(priv, "MTU must be smaller than the underlying " > - "link layer MTU - 4 (%u)\n", priv->mcast_mtu); > + ipoib_dbg(priv, > + "MTU must be smaller than the underlying link layer MTU - 4 (%u)\n", > + priv->mcast_mtu); > > dev->mtu = min(priv->mcast_mtu, priv->admin_mtu); > > @@ -480,8 +481,8 @@ int ipoib_set_mode(struct net_device *dev, const char *buf) > /* flush paths if we switch modes so that connections are restarted */ > if (IPOIB_CM_SUPPORTED(dev->dev_addr) && !strcmp(buf, "connected\n")) { > set_bit(IPOIB_FLAG_ADMIN_CM, &priv->flags); > - ipoib_warn(priv, "enabling connected mode " > - "will cause multicast packet drops\n"); > + ipoib_warn(priv, > + "enabling connected mode will cause multicast packet drops\n"); > netdev_update_features(dev); > dev_set_mtu(dev, ipoib_cm_max_mtu(dev)); > rtnl_unlock(); > @@ -1855,8 +1856,8 @@ void ipoib_set_umcast(struct net_device *ndev, int umcast_val) > > if (umcast_val > 0) { > set_bit(IPOIB_FLAG_UMCAST, &priv->flags); > - ipoib_warn(priv, "ignoring multicast groups joined directly " > - "by userspace\n"); > + ipoib_warn(priv, > + "ignoring multicast groups joined directly by userspace\n"); > } else > clear_bit(IPOIB_FLAG_UMCAST, &priv->flags); > } > -- > 2.12.2 > -- To unsubscribe from this list: send the line "unsubscribe target-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c index 55581417eb43..43aef0ca53ad 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c @@ -226,8 +226,9 @@ static int ipoib_change_mtu(struct net_device *dev, int new_mtu) priv->admin_mtu = new_mtu; if (priv->mcast_mtu < priv->admin_mtu) - ipoib_dbg(priv, "MTU must be smaller than the underlying " - "link layer MTU - 4 (%u)\n", priv->mcast_mtu); + ipoib_dbg(priv, + "MTU must be smaller than the underlying link layer MTU - 4 (%u)\n", + priv->mcast_mtu); dev->mtu = min(priv->mcast_mtu, priv->admin_mtu); @@ -480,8 +481,8 @@ int ipoib_set_mode(struct net_device *dev, const char *buf) /* flush paths if we switch modes so that connections are restarted */ if (IPOIB_CM_SUPPORTED(dev->dev_addr) && !strcmp(buf, "connected\n")) { set_bit(IPOIB_FLAG_ADMIN_CM, &priv->flags); - ipoib_warn(priv, "enabling connected mode " - "will cause multicast packet drops\n"); + ipoib_warn(priv, + "enabling connected mode will cause multicast packet drops\n"); netdev_update_features(dev); dev_set_mtu(dev, ipoib_cm_max_mtu(dev)); rtnl_unlock(); @@ -1855,8 +1856,8 @@ void ipoib_set_umcast(struct net_device *ndev, int umcast_val) if (umcast_val > 0) { set_bit(IPOIB_FLAG_UMCAST, &priv->flags); - ipoib_warn(priv, "ignoring multicast groups joined directly " - "by userspace\n"); + ipoib_warn(priv, + "ignoring multicast groups joined directly by userspace\n"); } else clear_bit(IPOIB_FLAG_UMCAST, &priv->flags); }