#define netif_subqueue_try_stop(dev, idx, get_desc, start_thrs)                \
        ({                                                              \
-               struct netdev_queue *txq;                               \
+               struct netdev_queue *_txq;                              \
                                                                        \
-               txq = netdev_get_tx_queue(dev, idx);                    \
-               netif_txq_try_stop(txq, get_desc, start_thrs);          \
+               _txq = netdev_get_tx_queue(dev, idx);                   \
+               netif_txq_try_stop(_txq, get_desc, start_thrs);         \
        })
 
 #define netif_subqueue_maybe_stop(dev, idx, get_desc, stop_thrs, start_thrs) \
        ({                                                              \
-               struct netdev_queue *txq;                               \
+               struct netdev_queue *_txq;                              \
                                                                        \
-               txq = netdev_get_tx_queue(dev, idx);                    \
-               netif_txq_maybe_stop(txq, get_desc, stop_thrs, start_thrs); \
+               _txq = netdev_get_tx_queue(dev, idx);                   \
+               netif_txq_maybe_stop(_txq, get_desc, stop_thrs, start_thrs); \
        })
 
 #define netif_subqueue_completed_wake(dev, idx, pkts, bytes,           \
                                      get_desc, start_thrs)             \
        ({                                                              \
-               struct netdev_queue *txq;                               \
+               struct netdev_queue *_txq;                              \
                                                                        \
-               txq = netdev_get_tx_queue(dev, idx);                    \
-               netif_txq_completed_wake(txq, pkts, bytes,              \
+               _txq = netdev_get_tx_queue(dev, idx);                   \
+               netif_txq_completed_wake(_txq, pkts, bytes,             \
                                         get_desc, start_thrs);         \
        })