Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband: IB/ehca: Fix static rate if path faster than link IPoIB: Fix oops if xmit is called when priv->broadcast is NULL
This commit is contained in:
commit
92d499d991
|
@ -76,8 +76,12 @@ int ehca_calc_ipd(struct ehca_shca *shca, int port,
|
|||
|
||||
link = ib_width_enum_to_int(pa.active_width) * pa.active_speed;
|
||||
|
||||
/* IPD = round((link / path) - 1) */
|
||||
*ipd = ((link + (path >> 1)) / path) - 1;
|
||||
if (path >= link)
|
||||
/* no need to throttle if path faster than link */
|
||||
*ipd = 0;
|
||||
else
|
||||
/* IPD = round((link / path) - 1) */
|
||||
*ipd = ((link + (path >> 1)) / path) - 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -460,6 +460,9 @@ static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
|
|||
struct ipoib_dev_priv *priv = netdev_priv(dev);
|
||||
struct ipoib_path *path;
|
||||
|
||||
if (!priv->broadcast)
|
||||
return NULL;
|
||||
|
||||
path = kzalloc(sizeof *path, GFP_ATOMIC);
|
||||
if (!path)
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue