*/
        union ring_type get_tx, put_tx, last_tx;
        struct nv_skb_map *get_tx_ctx, *put_tx_ctx;
-       struct nv_skb_map *first_tx_ctx, *last_tx_ctx;
+       struct nv_skb_map *last_tx_ctx;
        struct nv_skb_map *tx_skb;
 
        union ring_type tx_ring;
                np->last_tx.orig = &np->tx_ring.orig[np->tx_ring_size-1];
        else
                np->last_tx.ex = &np->tx_ring.ex[np->tx_ring_size-1];
-       np->get_tx_ctx = np->put_tx_ctx = np->first_tx_ctx = np->tx_skb;
+       np->get_tx_ctx = np->tx_skb;
+       np->put_tx_ctx = np->tx_skb;
        np->last_tx_ctx = &np->tx_skb[np->tx_ring_size-1];
        netdev_reset_queue(np->dev);
        np->tx_pkts_in_progress = 0;
                if (unlikely(put_tx++ == np->last_tx.orig))
                        put_tx = np->tx_ring.orig;
                if (unlikely(np->put_tx_ctx++ == np->last_tx_ctx))
-                       np->put_tx_ctx = np->first_tx_ctx;
+                       np->put_tx_ctx = np->tx_skb;
        } while (size);
 
        /* setup the fragments */
                                do {
                                        nv_unmap_txskb(np, start_tx_ctx);
                                        if (unlikely(tmp_tx_ctx++ == np->last_tx_ctx))
-                                               tmp_tx_ctx = np->first_tx_ctx;
+                                               tmp_tx_ctx = np->tx_skb;
                                } while (tmp_tx_ctx != np->put_tx_ctx);
                                dev_kfree_skb_any(skb);
                                np->put_tx_ctx = start_tx_ctx;
                        if (unlikely(put_tx++ == np->last_tx.orig))
                                put_tx = np->tx_ring.orig;
                        if (unlikely(np->put_tx_ctx++ == np->last_tx_ctx))
-                               np->put_tx_ctx = np->first_tx_ctx;
+                               np->put_tx_ctx = np->tx_skb;
                } while (frag_size);
        }
 
        else
                prev_tx = put_tx - 1;
 
-       if (unlikely(np->put_tx_ctx == np->first_tx_ctx))
+       if (unlikely(np->put_tx_ctx == np->tx_skb))
                prev_tx_ctx = np->last_tx_ctx;
        else
                prev_tx_ctx = np->put_tx_ctx - 1;
                if (unlikely(put_tx++ == np->last_tx.ex))
                        put_tx = np->tx_ring.ex;
                if (unlikely(np->put_tx_ctx++ == np->last_tx_ctx))
-                       np->put_tx_ctx = np->first_tx_ctx;
+                       np->put_tx_ctx = np->tx_skb;
        } while (size);
 
        /* setup the fragments */
                                do {
                                        nv_unmap_txskb(np, start_tx_ctx);
                                        if (unlikely(tmp_tx_ctx++ == np->last_tx_ctx))
-                                               tmp_tx_ctx = np->first_tx_ctx;
+                                               tmp_tx_ctx = np->tx_skb;
                                } while (tmp_tx_ctx != np->put_tx_ctx);
                                dev_kfree_skb_any(skb);
                                np->put_tx_ctx = start_tx_ctx;
                        if (unlikely(put_tx++ == np->last_tx.ex))
                                put_tx = np->tx_ring.ex;
                        if (unlikely(np->put_tx_ctx++ == np->last_tx_ctx))
-                               np->put_tx_ctx = np->first_tx_ctx;
+                               np->put_tx_ctx = np->tx_skb;
                } while (frag_size);
        }
 
        else
                prev_tx = put_tx - 1;
 
-       if (unlikely(np->put_tx_ctx == np->first_tx_ctx))
+       if (unlikely(np->put_tx_ctx == np->tx_skb))
                prev_tx_ctx = np->last_tx_ctx;
        else
                prev_tx_ctx = np->put_tx_ctx - 1;
                if (unlikely(np->get_tx.orig++ == np->last_tx.orig))
                        np->get_tx.orig = np->tx_ring.orig;
                if (unlikely(np->get_tx_ctx++ == np->last_tx_ctx))
-                       np->get_tx_ctx = np->first_tx_ctx;
+                       np->get_tx_ctx = np->tx_skb;
        }
 
        netdev_completed_queue(np->dev, tx_work, bytes_compl);
                if (unlikely(np->get_tx.ex++ == np->last_tx.ex))
                        np->get_tx.ex = np->tx_ring.ex;
                if (unlikely(np->get_tx_ctx++ == np->last_tx_ctx))
-                       np->get_tx_ctx = np->first_tx_ctx;
+                       np->get_tx_ctx = np->tx_skb;
        }
 
        netdev_completed_queue(np->dev, tx_work, bytes_cleaned);