cvs commit: src/sys/compat/ndis subr_ndis.c

Bill Paul wpaul at FreeBSD.org
Thu Mar 31 08:38:49 PST 2005


wpaul       2005-03-31 16:38:48 UTC

  FreeBSD src repository

  Modified files:
    sys/compat/ndis      subr_ndis.c 
  Log:
  Fix an amd64 issue I overlooked. When setting up a callout to
  ndis_timercall() in NdisMInitializeTimer(), we can't use the raw
  function pointer. This is because ntoskrnl_run_dpc() expects to
  invoke a function with Microsoft calling conventions. On i386,
  this works because ndis_timercall() is declared with the __stdcall
  attribute, but this is a no-op on amd64. To do it correctly, we
  have to generate a wrapper for ndis_timercall() and us the wrapper
  instead of of the raw function pointer.
  
  Fix this by adding ndis_timercall() to the funcptr table in subr_ndis.c,
  and create ndis_findwrap() to extract the wrapped function from the
  table in NdisMInitializeTimer() instead of just passing ndis_timercall()
  to KeInitializeDpc() directly.
  
  Revision  Changes    Path
  1.82      +26 -3     src/sys/compat/ndis/subr_ndis.c


More information about the cvs-src mailing list