[BACK]Return to intr.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / x86 / x86

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

Diff for /src/sys/arch/x86/x86/intr.c between version 1.24.4.1 and 1.24.4.2

version 1.24.4.1, 2006/11/17 16:34:34 version 1.24.4.2, 2007/01/11 22:22:58
Line 543  intr_biglock_wrapper(void *vp)
Line 543  intr_biglock_wrapper(void *vp)
   
         ret = (*ih->ih_realfun)(ih->ih_realarg);          ret = (*ih->ih_realfun)(ih->ih_realarg);
   
         (void)KERNEL_UNLOCK(1, NULL);          KERNEL_UNLOCK_ONE(NULL);
   
         return ret;          return ret;
 }  }
Line 904  x86_softintlock(void)
Line 904  x86_softintlock(void)
 void  void
 x86_softintunlock(void)  x86_softintunlock(void)
 {  {
         (void)KERNEL_UNLOCK(1, NULL);          KERNEL_UNLOCK_ONE(NULL);
 }  }
 #endif  #endif
   

Legend:
Removed from v.1.24.4.1  
changed lines
  Added in v.1.24.4.2

CVSweb <webmaster@jp.NetBSD.org>