[BACK]Return to if_ethersubr.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / net

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

Diff for /src/sys/net/if_ethersubr.c between version 1.227 and 1.228

version 1.227, 2016/08/01 03:15:30 version 1.228, 2016/10/03 11:06:06
Line 896  ether_input(struct ifnet *ifp, struct mb
Line 896  ether_input(struct ifnet *ifp, struct mb
                 m_freem(m);                  m_freem(m);
                 return;                  return;
         }          }
   
           IFQ_LOCK(inq);
         if (IF_QFULL(inq)) {          if (IF_QFULL(inq)) {
                 IF_DROP(inq);                  IF_DROP(inq);
                   IFQ_UNLOCK(inq);
                 m_freem(m);                  m_freem(m);
         } else {          } else {
                 IF_ENQUEUE(inq, m);                  IF_ENQUEUE(inq, m);
                   IFQ_UNLOCK(inq);
                 schednetisr(isr);                  schednetisr(isr);
         }          }
 }  }

Legend:
Removed from v.1.227  
changed lines
  Added in v.1.228

CVSweb <webmaster@jp.NetBSD.org>