Commit d229be4b authored by Shannon Nelson's avatar Shannon Nelson Committed by David S. Miller

ionic: use wait_on_bit_lock() rather than open code

Replace the open-coded ionic_wait_for_bit() with the
kernel's wait_on_bit_lock().
Signed-off-by: default avatarShannon Nelson <snelson@pensando.io>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent da0729e8
...@@ -453,6 +453,7 @@ static int ionic_set_ringparam(struct net_device *netdev, ...@@ -453,6 +453,7 @@ static int ionic_set_ringparam(struct net_device *netdev,
{ {
struct ionic_lif *lif = netdev_priv(netdev); struct ionic_lif *lif = netdev_priv(netdev);
bool running; bool running;
int err;
if (ring->rx_mini_pending || ring->rx_jumbo_pending) { if (ring->rx_mini_pending || ring->rx_jumbo_pending) {
netdev_info(netdev, "Changing jumbo or mini descriptors not supported\n"); netdev_info(netdev, "Changing jumbo or mini descriptors not supported\n");
...@@ -470,8 +471,9 @@ static int ionic_set_ringparam(struct net_device *netdev, ...@@ -470,8 +471,9 @@ static int ionic_set_ringparam(struct net_device *netdev,
ring->rx_pending == lif->nrxq_descs) ring->rx_pending == lif->nrxq_descs)
return 0; return 0;
if (!ionic_wait_for_bit(lif, IONIC_LIF_QUEUE_RESET)) err = ionic_wait_for_bit(lif, IONIC_LIF_QUEUE_RESET);
return -EBUSY; if (err)
return err;
running = test_bit(IONIC_LIF_UP, lif->state); running = test_bit(IONIC_LIF_UP, lif->state);
if (running) if (running)
...@@ -504,6 +506,7 @@ static int ionic_set_channels(struct net_device *netdev, ...@@ -504,6 +506,7 @@ static int ionic_set_channels(struct net_device *netdev,
{ {
struct ionic_lif *lif = netdev_priv(netdev); struct ionic_lif *lif = netdev_priv(netdev);
bool running; bool running;
int err;
if (!ch->combined_count || ch->other_count || if (!ch->combined_count || ch->other_count ||
ch->rx_count || ch->tx_count) ch->rx_count || ch->tx_count)
...@@ -512,8 +515,9 @@ static int ionic_set_channels(struct net_device *netdev, ...@@ -512,8 +515,9 @@ static int ionic_set_channels(struct net_device *netdev,
if (ch->combined_count == lif->nxqs) if (ch->combined_count == lif->nxqs)
return 0; return 0;
if (!ionic_wait_for_bit(lif, IONIC_LIF_QUEUE_RESET)) err = ionic_wait_for_bit(lif, IONIC_LIF_QUEUE_RESET);
return -EBUSY; if (err)
return err;
running = test_bit(IONIC_LIF_UP, lif->state); running = test_bit(IONIC_LIF_UP, lif->state);
if (running) if (running)
......
...@@ -1619,8 +1619,9 @@ int ionic_reset_queues(struct ionic_lif *lif) ...@@ -1619,8 +1619,9 @@ int ionic_reset_queues(struct ionic_lif *lif)
/* Put off the next watchdog timeout */ /* Put off the next watchdog timeout */
netif_trans_update(lif->netdev); netif_trans_update(lif->netdev);
if (!ionic_wait_for_bit(lif, IONIC_LIF_QUEUE_RESET)) err = ionic_wait_for_bit(lif, IONIC_LIF_QUEUE_RESET);
return -EBUSY; if (err)
return err;
running = netif_running(lif->netdev); running = netif_running(lif->netdev);
if (running) if (running)
......
...@@ -185,15 +185,10 @@ struct ionic_lif { ...@@ -185,15 +185,10 @@ struct ionic_lif {
#define lif_to_txq(lif, i) (&lif_to_txqcq((lif), i)->q) #define lif_to_txq(lif, i) (&lif_to_txqcq((lif), i)->q)
#define lif_to_rxq(lif, i) (&lif_to_txqcq((lif), i)->q) #define lif_to_rxq(lif, i) (&lif_to_txqcq((lif), i)->q)
/* return 0 if successfully set the bit, else non-zero */
static inline int ionic_wait_for_bit(struct ionic_lif *lif, int bitname) static inline int ionic_wait_for_bit(struct ionic_lif *lif, int bitname)
{ {
unsigned long tlimit = jiffies + HZ; return wait_on_bit_lock(lif->state, bitname, TASK_INTERRUPTIBLE);
while (test_and_set_bit(bitname, lif->state) &&
time_before(jiffies, tlimit))
usleep_range(100, 200);
return test_bit(bitname, lif->state);
} }
static inline u32 ionic_coal_usec_to_hw(struct ionic *ionic, u32 usecs) static inline u32 ionic_coal_usec_to_hw(struct ionic *ionic, u32 usecs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment