mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
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
@ -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 New Issue
Block a user