[BACK]Return to if_axen.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / usb

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/usb/if_axen.c between version 1.11.8.8 and 1.11.8.9

version 1.11.8.8, 2019/05/13 12:40:13 version 1.11.8.9, 2020/08/28 19:44:22
Line 1097  axen_rxeof(struct usbd_xfer *xfer, void 
Line 1097  axen_rxeof(struct usbd_xfer *xfer, void 
                             pkt_count));                              pkt_count));
                         goto nextpkt;                          goto nextpkt;
                 }                  }
                   if (pkt_len > MCLBYTES) {
                           ifp->if_ierrors++;
                           DPRINTF(("%s: oversize frame %d\n",
                               device_xname(sc->axen_dev), pkt_len));
                           goto nextpkt;
                   }
   
                 /* process each packet */                  /* process each packet */
                 /* allocate mbuf */                  /* allocate mbuf */

Legend:
Removed from v.1.11.8.8  
changed lines
  Added in v.1.11.8.9

CVSweb <webmaster@jp.NetBSD.org>