Skip to content

Commit

Permalink
be2net: cleanup wake-on-lan code
Browse files Browse the repository at this point in the history
This patch cleans-up wake-on-lan code in the following ways:
1) Removes some driver hacks in be_cmd_get_acpi_wol_cap() that were based
on incorrect assumptions.
2) Uses the adapter->wol_en and wol_cap variables for checking if WoL
is supported and enabled on an interface instead of referring to the
exclusion list via the macro be_is_wol_supported()

Signed-off-by: Suresh Reddy <suresh.reddy@emulex.com>
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Suresh Reddy authored and David S. Miller committed Jan 15, 2014
1 parent b188f09 commit 76a9e08
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 35 deletions.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/emulex/benet/be.h
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ struct be_adapter {
u16 pvid;
struct phy_info phy;
u8 wol_cap;
bool wol;
bool wol_en;
u32 uc_macs; /* Count of secondary UC MAC programmed */
u16 asic_rev;
u16 qnq_vid;
Expand Down
16 changes: 7 additions & 9 deletions drivers/net/ethernet/emulex/benet/be_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -3040,14 +3040,16 @@ int be_cmd_get_acpi_wol_cap(struct be_adapter *adapter)
{
struct be_mcc_wrb *wrb;
struct be_cmd_req_acpi_wol_magic_config_v1 *req;
int status;
int payload_len = sizeof(*req);
int status = 0;
struct be_dma_mem cmd;

if (!be_cmd_allowed(adapter, OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG,
CMD_SUBSYSTEM_ETH))
return -EPERM;

if (be_is_wol_excluded(adapter))
return status;

if (mutex_lock_interruptible(&adapter->mbox_lock))
return -1;

Expand All @@ -3072,7 +3074,7 @@ int be_cmd_get_acpi_wol_cap(struct be_adapter *adapter)

be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG,
payload_len, wrb, &cmd);
sizeof(*req), wrb, &cmd);

req->hdr.version = 1;
req->query_options = BE_GET_WOL_CAP;
Expand All @@ -3082,13 +3084,9 @@ int be_cmd_get_acpi_wol_cap(struct be_adapter *adapter)
struct be_cmd_resp_acpi_wol_magic_config_v1 *resp;
resp = (struct be_cmd_resp_acpi_wol_magic_config_v1 *) cmd.va;

/* the command could succeed misleadingly on old f/w
* which is not aware of the V1 version. fake an error. */
if (resp->hdr.response_length < payload_len) {
status = -1;
goto err;
}
adapter->wol_cap = resp->wol_settings;
if (adapter->wol_cap & BE_WOL_CAP)
adapter->wol_en = true;
}
err:
mutex_unlock(&adapter->mbox_lock);
Expand Down
13 changes: 7 additions & 6 deletions drivers/net/ethernet/emulex/benet/be_ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -713,12 +713,13 @@ be_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
{
struct be_adapter *adapter = netdev_priv(netdev);

if (be_is_wol_supported(adapter)) {
if (adapter->wol_cap & BE_WOL_CAP) {
wol->supported |= WAKE_MAGIC;
if (adapter->wol)
if (adapter->wol_en)
wol->wolopts |= WAKE_MAGIC;
} else
} else {
wol->wolopts = 0;
}
memset(&wol->sopass, 0, sizeof(wol->sopass));
}

Expand All @@ -730,15 +731,15 @@ be_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
if (wol->wolopts & ~WAKE_MAGIC)
return -EOPNOTSUPP;

if (!be_is_wol_supported(adapter)) {
if (!(adapter->wol_cap & BE_WOL_CAP)) {
dev_warn(&adapter->pdev->dev, "WOL not supported\n");
return -EOPNOTSUPP;
}

if (wol->wolopts & WAKE_MAGIC)
adapter->wol = true;
adapter->wol_en = true;
else
adapter->wol = false;
adapter->wol_en = false;

return 0;
}
Expand Down
23 changes: 4 additions & 19 deletions drivers/net/ethernet/emulex/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3408,6 +3408,8 @@ static int be_setup(struct be_adapter *adapter)

be_set_rx_mode(adapter->netdev);

be_cmd_get_acpi_wol_cap(adapter);

be_cmd_get_flow_control(adapter, &tx_fc, &rx_fc);

if (rx_fc != adapter->rx_fc || tx_fc != adapter->tx_fc)
Expand Down Expand Up @@ -4277,12 +4279,6 @@ static void be_remove(struct pci_dev *pdev)
free_netdev(adapter->netdev);
}

bool be_is_wol_supported(struct be_adapter *adapter)
{
return ((adapter->wol_cap & BE_WOL_CAP) &&
!be_is_wol_excluded(adapter)) ? true : false;
}

static int be_get_initial_config(struct be_adapter *adapter)
{
int status, level;
Expand All @@ -4291,17 +4287,6 @@ static int be_get_initial_config(struct be_adapter *adapter)
if (status)
return status;

status = be_cmd_get_acpi_wol_cap(adapter);
if (status) {
/* in case of a failure to get wol capabillities
* check the exclusion list to determine WOL capability */
if (!be_is_wol_excluded(adapter))
adapter->wol_cap |= BE_WOL_CAP;
}

if (be_is_wol_supported(adapter))
adapter->wol = true;

/* Must be a power of 2 or else MODULO will BUG_ON */
adapter->be_get_temp_freq = 64;

Expand Down Expand Up @@ -4572,7 +4557,7 @@ static int be_suspend(struct pci_dev *pdev, pm_message_t state)
struct be_adapter *adapter = pci_get_drvdata(pdev);
struct net_device *netdev = adapter->netdev;

if (adapter->wol)
if (adapter->wol_en)
be_setup_wol(adapter, true);

be_intr_set(adapter, false);
Expand Down Expand Up @@ -4628,7 +4613,7 @@ static int be_resume(struct pci_dev *pdev)
msecs_to_jiffies(1000));
netif_device_attach(netdev);

if (adapter->wol)
if (adapter->wol_en)
be_setup_wol(adapter, false);

return 0;
Expand Down

0 comments on commit 76a9e08

Please sign in to comment.