Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Mar 2005 16:38:48 +0000 (UTC)
From:      Bill Paul <wpaul@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/compat/ndis subr_ndis.c
Message-ID:  <200503311638.j2VGcmRU042401@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200503311638.j2VGcmRU042401>