diff options
author | Ajit Khaparde | 2009-11-06 02:06:59 +0000 |
---|---|---|
committer | David S. Miller | 2009-11-06 20:26:03 -0800 |
commit | 9e90c961134929678022aee0c68b16c1ed520614 (patch) | |
tree | fee2dad0fcbfe8e5168edf9a394ecfa8061cc386 /drivers/net/benet/be.h | |
parent | bb7b22840141a4fab8f232ee90d30cdf728bb032 (diff) |
be2net: fix to set proper flow control on resume
If be2 goes into suspend after a user changes the flow control settings,
we are not programming them back after resume. This patch takes care of it.
We now get the flow control settings before going to suspend mode and
then apply them during resume.
Signed-off-by: Ajit Khaparde <ajitk@serverengines.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/benet/be.h')
-rw-r--r-- | drivers/net/benet/be.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/benet/be.h b/drivers/net/benet/be.h index a80da0e14a52..3b79a225628a 100644 --- a/drivers/net/benet/be.h +++ b/drivers/net/benet/be.h @@ -259,6 +259,8 @@ struct be_adapter { u32 port_num; bool promiscuous; u32 cap; + u32 rx_fc; /* Rx flow control */ + u32 tx_fc; /* Tx flow control */ }; extern const struct ethtool_ops be_ethtool_ops; |