remove an unused argument of ixgbe_rx_checksum()
authorbenno <benno@openbsd.org>
Tue, 30 Aug 2022 19:52:58 +0000 (19:52 +0000)
committerbenno <benno@openbsd.org>
Tue, 30 Aug 2022 19:52:58 +0000 (19:52 +0000)
ok mbuhl@

sys/dev/pci/if_ix.c

index ed50868..550fdfd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_ix.c,v 1.187 2022/08/05 13:57:16 bluhm Exp $       */
+/*     $OpenBSD: if_ix.c,v 1.188 2022/08/30 19:52:58 benno Exp $       */
 
 /******************************************************************************
 
@@ -148,7 +148,7 @@ void        ixgbe_enable_intr(struct ix_softc *);
 void   ixgbe_disable_intr(struct ix_softc *);
 int    ixgbe_txeof(struct tx_ring *);
 int    ixgbe_rxeof(struct rx_ring *);
-void   ixgbe_rx_checksum(uint32_t, struct mbuf *, uint32_t);
+void   ixgbe_rx_checksum(uint32_t, struct mbuf *);
 void   ixgbe_iff(struct ix_softc *);
 void   ixgbe_map_queue_statistics(struct ix_softc *);
 void   ixgbe_update_link_status(struct ix_softc *);
@@ -3106,7 +3106,7 @@ ixgbe_rxeof(struct rx_ring *rxr)
        struct mbuf             *mp, *sendmp;
        uint8_t                  eop = 0;
        uint16_t                 len, vtag;
-       uint32_t                 staterr = 0, ptype;
+       uint32_t                 staterr = 0;
        struct ixgbe_rx_buf     *rxbuf, *nxbuf;
        union ixgbe_adv_rx_desc *rxdesc;
        size_t                   dsize = sizeof(union ixgbe_adv_rx_desc);
@@ -3143,8 +3143,6 @@ ixgbe_rxeof(struct rx_ring *rxr)
 
                mp = rxbuf->buf;
                len = letoh16(rxdesc->wb.upper.length);
-               ptype = letoh32(rxdesc->wb.lower.lo_dword.data) &
-                   IXGBE_RXDADV_PKTTYPE_MASK;
                vtag = letoh16(rxdesc->wb.upper.vlan);
                eop = ((staterr & IXGBE_RXD_STAT_EOP) != 0);
                hash = lemtoh32(&rxdesc->wb.lower.hi_dword.rss);
@@ -3216,7 +3214,7 @@ ixgbe_rxeof(struct rx_ring *rxr)
                        sendmp = NULL;
                        mp->m_next = nxbuf->buf;
                } else { /* Sending this frame? */
-                       ixgbe_rx_checksum(staterr, sendmp, ptype);
+                       ixgbe_rx_checksum(staterr, sendmp);
 
                        if (hashtype != IXGBE_RXDADV_RSSTYPE_NONE) {
                                sendmp->m_pkthdr.ph_flowid = hash;
@@ -3254,7 +3252,7 @@ next_desc:
  *
  *********************************************************************/
 void
-ixgbe_rx_checksum(uint32_t staterr, struct mbuf * mp, uint32_t ptype)
+ixgbe_rx_checksum(uint32_t staterr, struct mbuf * mp)
 {
        uint16_t status = (uint16_t) staterr;
        uint8_t  errors = (uint8_t) (staterr >> 24);