mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
brcmfmac: Reopen netdev queue on bus state data.
During suspend the bus state is put in the down state. When data is being transmitted during this state then the netdev queue will be close. This patch will wake the queue on state data if the queue was closed. Reviewed-by: Arend Van Spriel <arend@broadcom.com> Reviewed-by: Franky (Zhenhui) Lin <frankyl@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Reviewed-by: Daniel (Deognyoun) Kim <dekim@broadcom.com> Signed-off-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
a1cee865c3
commit
649f38ae9e
@ -185,13 +185,6 @@ void brcmf_bus_wowl_config(struct brcmf_bus *bus, bool enabled)
|
||||
bus->ops->wowl_config(bus->dev, enabled);
|
||||
}
|
||||
|
||||
static inline void brcmf_bus_change_state(struct brcmf_bus *bus,
|
||||
enum brcmf_bus_state new_state)
|
||||
{
|
||||
brcmf_dbg(TRACE, "%d -> %d\n", bus->state, new_state);
|
||||
bus->state = new_state;
|
||||
}
|
||||
|
||||
/*
|
||||
* interface functions from common layer
|
||||
*/
|
||||
@ -214,6 +207,9 @@ void brcmf_txflowblock(struct device *dev, bool state);
|
||||
/* Notify the bus has transferred the tx packet to firmware */
|
||||
void brcmf_txcomplete(struct device *dev, struct sk_buff *txp, bool success);
|
||||
|
||||
/* Configure the "global" bus state used by upper layers */
|
||||
void brcmf_bus_change_state(struct brcmf_bus *bus, enum brcmf_bus_state state);
|
||||
|
||||
int brcmf_bus_start(struct device *dev);
|
||||
s32 brcmf_iovar_data_set(struct device *dev, char *name, void *data, u32 len);
|
||||
void brcmf_bus_add_txhdrlen(struct device *dev, uint len);
|
||||
|
@ -1106,6 +1106,27 @@ int brcmf_netdev_wait_pend8021x(struct brcmf_if *ifp)
|
||||
return !err;
|
||||
}
|
||||
|
||||
void brcmf_bus_change_state(struct brcmf_bus *bus, enum brcmf_bus_state state)
|
||||
{
|
||||
struct brcmf_pub *drvr = bus->drvr;
|
||||
struct net_device *ndev;
|
||||
int ifidx;
|
||||
|
||||
brcmf_dbg(TRACE, "%d -> %d\n", bus->state, state);
|
||||
bus->state = state;
|
||||
|
||||
if (state == BRCMF_BUS_UP) {
|
||||
for (ifidx = 0; ifidx < BRCMF_MAX_IFS; ifidx++) {
|
||||
if ((drvr->iflist[ifidx]) &&
|
||||
(drvr->iflist[ifidx]->ndev)) {
|
||||
ndev = drvr->iflist[ifidx]->ndev;
|
||||
if (netif_queue_stopped(ndev))
|
||||
netif_wake_queue(ndev);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void brcmf_driver_register(struct work_struct *work)
|
||||
{
|
||||
#ifdef CONFIG_BRCMFMAC_SDIO
|
||||
|
Loading…
Reference in New Issue
Block a user