cvs commit: src/sys/compat/ndis ntoskrnl_var.h subr_ntoskrnl.c

Bill Paul wpaul at FreeBSD.org
Wed Feb 16 18:18:31 GMT 2005


wpaul       2005-02-16 18:18:30 UTC

  FreeBSD src repository

  Modified files:
    sys/compat/ndis      ntoskrnl_var.h subr_ntoskrnl.c 
  Log:
  KeAcquireSpinLockRaiseToDpc() and KeReleaseSpinLock() are (at least
  for now) exactly the same as KfAcquireSpinLock() and KfReleaseSpinLock().
  I implemented the former as small routines in subr_ntoskrnl.c that just
  turned around and invoked the latter. But I don't really need the wrapper
  routines: I can just create an entries in the ntoskrnl func table that
  map KeAcquireSpinLockRaiseToDpc() and KeReleaseSpinLock() to
  KfAcquireSpinLock() and KfReleaseSpinLock() directly. This means
  the stubs can go away.
  
  Revision  Changes    Path
  1.24      +2 -3      src/sys/compat/ndis/ntoskrnl_var.h
  1.51      +3 -24     src/sys/compat/ndis/subr_ntoskrnl.c


More information about the cvs-all mailing list