bnx2x: fail when try to setup unsupported features
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com> Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d92be4b166
commit
e0d904ffd0
1 changed files with 3 additions and 0 deletions
|
@ -10982,6 +10982,9 @@ static int bnx2x_set_flags(struct net_device *dev, u32 data)
|
|||
int changed = 0;
|
||||
int rc = 0;
|
||||
|
||||
if (data & ~(ETH_FLAG_LRO | ETH_FLAG_RXHASH))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
|
||||
printk(KERN_ERR "Handling parity error recovery. Try again later\n");
|
||||
return -EAGAIN;
|
||||
|
|
Loading…
Reference in a new issue