cvs commit: src/sys/compat/ndis kern_ndis.c ndis_var.h subr_ndis.c src/sys/dev/if_ndis if_ndis.c if_ndisvar.h

Bill Paul wpaul at FreeBSD.org
Sun Jan 18 14:57:21 PST 2004


wpaul       2004/01/18 14:57:11 PST

  FreeBSD src repository

  Modified files:
    sys/compat/ndis      kern_ndis.c ndis_var.h subr_ndis.c 
    sys/dev/if_ndis      if_ndis.c if_ndisvar.h 
  Log:
  Convert from using taskqueue_swi to using private kernel threads. The
  problem with using taskqueue_swi is that some of the things we defer
  into threads might block for up to several seconds. This is an unfriendly
  thing to do to taskqueue_swi, since it is assumed the taskqueue threads
  will execute fairly quickly once a task is submitted. Reorganized the
  locking in if_ndis.c in the process.
  
  Cleaned up ndis_write_cfg() and ndis_decode_parm() a little.
  
  Revision  Changes    Path
  1.30      +334 -2    src/sys/compat/ndis/kern_ndis.c
  1.17      +4 -0      src/sys/compat/ndis/ndis_var.h
  1.38      +9 -14     src/sys/compat/ndis/subr_ndis.c
  1.29      +27 -37    src/sys/dev/if_ndis/if_ndis.c
  1.8       +0 -3      src/sys/dev/if_ndis/if_ndisvar.h


More information about the cvs-src mailing list