mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
ixgbe: use correct FCoE DDP max check
Use fcoe_ddp_xid from netdev as this is correctly set for different device IDs to avoid DDP skip error on X550 as "xid=0x20b out-of-range" Signed-off-by: Vasu Dev <vasu.dev@intel.com> Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
3efcb86e2d
commit
f10166aba2
@ -77,7 +77,7 @@ int ixgbe_fcoe_ddp_put(struct net_device *netdev, u16 xid)
|
||||
if (!netdev)
|
||||
return 0;
|
||||
|
||||
if (xid >= IXGBE_FCOE_DDP_MAX)
|
||||
if (xid >= netdev->fcoe_ddp_xid)
|
||||
return 0;
|
||||
|
||||
adapter = netdev_priv(netdev);
|
||||
@ -177,7 +177,7 @@ static int ixgbe_fcoe_ddp_setup(struct net_device *netdev, u16 xid,
|
||||
return 0;
|
||||
|
||||
adapter = netdev_priv(netdev);
|
||||
if (xid >= IXGBE_FCOE_DDP_MAX) {
|
||||
if (xid >= netdev->fcoe_ddp_xid) {
|
||||
e_warn(drv, "xid=0x%x out-of-range\n", xid);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user