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

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

Diff for /src/sys/netinet/ip_input.c between version 1.355.2.4 and 1.355.2.5

version 1.355.2.4, 2018/02/12 18:23:29 version 1.355.2.5, 2018/02/26 13:32:01
Line 438  ipintr(void *arg __unused)
Line 438  ipintr(void *arg __unused)
   
         KASSERT(cpu_softintr_p());          KASSERT(cpu_softintr_p());
   
         SOFTNET_LOCK_UNLESS_NET_MPSAFE();          SOFTNET_KERNEL_LOCK_UNLESS_NET_MPSAFE();
         while ((m = pktq_dequeue(ip_pktq)) != NULL) {          while ((m = pktq_dequeue(ip_pktq)) != NULL) {
                 ip_input(m);                  ip_input(m);
         }          }
         SOFTNET_UNLOCK_UNLESS_NET_MPSAFE();          SOFTNET_KERNEL_UNLOCK_UNLESS_NET_MPSAFE();
 }  }
   
 /*  /*

Legend:
Removed from v.1.355.2.4  
changed lines
  Added in v.1.355.2.5

CVSweb <webmaster@jp.NetBSD.org>