From: Greg Kroah-Hartman Date: Mon, 28 Sep 2015 14:05:12 +0000 (-0700) Subject: 3.14 network patch fix X-Git-Tag: v4.1.9~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b9edc4a02e1302c1a1836ba821d539e187bafc05;p=thirdparty%2Fkernel%2Fstable-queue.git 3.14 network patch fix --- diff --git a/queue-3.14/net-mlx4_core-fix-wrong-index-in-propagating-port-change-event-to-vfs.patch b/queue-3.14/net-mlx4_core-fix-wrong-index-in-propagating-port-change-event-to-vfs.patch index 451dd6258da..f0344554892 100644 --- a/queue-3.14/net-mlx4_core-fix-wrong-index-in-propagating-port-change-event-to-vfs.patch +++ b/queue-3.14/net-mlx4_core-fix-wrong-index-in-propagating-port-change-event-to-vfs.patch @@ -39,7 +39,7 @@ Signed-off-by: Greg Kroah-Hartman if (i == mlx4_master_func_num(dev)) continue; - s_info = &priv->mfunc.master.vf_oper[slave].vport[port].state; -+ s_info = &priv->mfunc.master.vf_oper[slave].vport[i].state; ++ s_info = &priv->mfunc.master.vf_oper[i].vport[port].state; if (IFLA_VF_LINK_STATE_AUTO == s_info->link_state) mlx4_slave_event(dev, i, eqe); }