Welcome to WinForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

NDIS 5.0 in Vista ?

 
   Windows XP (Home) -> XP Device Driver RSS
Next:  Xp not recognizing all installed ram  
Author Message
Polaris

External


Since: Nov 13, 2003
Posts: 6



(Msg. 1) Posted: Thu Dec 21, 2006 5:45 pm
Post subject: NDIS 5.0 in Vista ?
Archived from groups: microsoft>public>development>device>drivers, others (more info?)

Hi Experts:

I have a question on NDIS version usable under Windows Vista:

We have been using an NDIS miniport driver writing using NDIS 5.0. Will this
work under Windows Vista? If not, what should I do to make it work in Vista
with minimum change? For example, should I port the driver code to NDIS 5.1
(which is supported by Vista as I read from the web)?

If I port the code to NDIS 6.0, will the driver still work under older
Windows platforms like Windows 2000 and XP?

Thanks for your advises !
Polaris

 >> Stay informed about: NDIS 5.0 in Vista ? 
Back to top
Login to vote
soviet_bloke

External


Since: Dec 21, 2006
Posts: 1



(Msg. 2) Posted: Thu Dec 21, 2006 6:38 pm
Post subject: Re: NDIS 5.0 in Vista ? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

> We have been using an NDIS miniport driver writing using NDIS 5.0. Will this
> work under Windows Vista?

Sure it will....

The only thing that is not supported under Vista is NDIS IM filters -
NDIS5 IM MUX, miniport
ans protocol drivers are going to work, although at some performance
penalty, compared to their NDIS 6 counterparts (more on this below)...

> If I port the code to NDIS 6.0, will the driver still work under older
> Windows platforms like Windows 2000 and XP?

Of course not - NDIS 6 is very different from earlier NDIS versions,
particularly when it comes to parameters that you pass to to NDIS
functions. This is why translation of NDIS5 calls to NDIS 6 may have
some negative impact on performance when you run NDIS5 driver under
Vista

Anton Bassov

Polaris wrote:
> Hi Experts:
>
> I have a question on NDIS version usable under Windows Vista:
>
> We have been using an NDIS miniport driver writing using NDIS 5.0. Will this
> work under Windows Vista? If not, what should I do to make it work in Vista
> with minimum change? For example, should I port the driver code to NDIS 5.1
> (which is supported by Vista as I read from the web)?
>
> If I port the code to NDIS 6.0, will the driver still work under older
> Windows platforms like Windows 2000 and XP?
>
> Thanks for your advises !
> Polaris

 >> Stay informed about: NDIS 5.0 in Vista ? 
Back to top
Login to vote
Alireza Dabagh [MS]

External


Since: Dec 24, 2006
Posts: 1



(Msg. 3) Posted: Sun Dec 24, 2006 2:08 am
Post subject: Re: NDIS 5.0 in Vista ? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

NDIS 5 IM filter and MUX drivers -are- supported under Vista. Maybe you
meant to say NDIS -6- IM filter drivers are not supported which is true
(NDIS 6 filter drivers should use NDIS 6 lightweight filter driver model).

This said you should expect support for NDIS 5 IM filter drivers to be one
of the first to be dropped in the -yet to be determined- future version of
NDIS due to extreme complexities of supporting NDIS 5 IM filter drivers in
Vista in general and supporting a stack that consists of both NDIS 5 IM
filter drivers and NDIS 6 lightweight filter drivers in particular (still
having nightmares...).

You are correct that running NDIS 5 miniport drivers under Vista will incur
a performance penalty because TCPIP in Vista is NDIS 6 and NDIS would have
to translate every and each NDIS_PACKET to NET_BUFFER (and vice versa) on
xmit and receive path.

-ali
--
This posting is provided "AS IS" with no warranties, and confers no rights.

<soviet_bloke.DeleteThis@hotmail.com> wrote in message
news:1166755108.860632.46920@48g2000cwx.googlegroups.com...
>> We have been using an NDIS miniport driver writing using NDIS 5.0. Will
>> this
>> work under Windows Vista?
>
> Sure it will....
>
> The only thing that is not supported under Vista is NDIS IM filters -
> NDIS5 IM MUX, miniport
> ans protocol drivers are going to work, although at some performance
> penalty, compared to their NDIS 6 counterparts (more on this below)...
>
>> If I port the code to NDIS 6.0, will the driver still work under older
>> Windows platforms like Windows 2000 and XP?
>
> Of course not - NDIS 6 is very different from earlier NDIS versions,
> particularly when it comes to parameters that you pass to to NDIS
> functions. This is why translation of NDIS5 calls to NDIS 6 may have
> some negative impact on performance when you run NDIS5 driver under
> Vista
>
> Anton Bassov
>
> Polaris wrote:
>> Hi Experts:
>>
>> I have a question on NDIS version usable under Windows Vista:
>>
>> We have been using an NDIS miniport driver writing using NDIS 5.0. Will
>> this
>> work under Windows Vista? If not, what should I do to make it work in
>> Vista
>> with minimum change? For example, should I port the driver code to NDIS
>> 5.1
>> (which is supported by Vista as I read from the web)?
>>
>> If I port the code to NDIS 6.0, will the driver still work under older
>> Windows platforms like Windows 2000 and XP?
>>
>> Thanks for your advises !
>> Polaris
>
 >> Stay informed about: NDIS 5.0 in Vista ? 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
NDIS 5.1 WIFI - Hi everybody, I am working in a project that consists in getting all the frame of the beacon of wifi (layer 2) but I don't know how to get theses informations. I know that I have to use the NDIS 5.1 interface but I can't find any information about it...

PCI card and ndis? - Thank you for reading this letter!There is a pci card which has a general purpose CY7C09449 PCI interface chip.And the card have a DSP and an Ethernet interface chip. But the Ethernet interface chip is directly connected to the DSP and the DSP is directl...

How to export functions from Ndis miniport driver for a sm.. - I have an Ndis Miniport driver for an adapter on PCMCIA, PCI , USB and SDIO bus interfaces. I have a SMART Card reader Driver which has to read and write to the smart card on the same NIC. Since there are several interfaces and the same interrupt line...

WDM to Vista - Will a WDM driver work with Vista or do I have to port it over to a WDF driver? I tried my WDM driver on Vista RC2 and it blue screen. Is there a list of function that are no longer supported by vista that may be in my WDM driver that is causing the..

Problems porting WDM to Vista RC1 - I'm trying to port my WDM driver to Vista RC1 but I crashes during driver initialization. Using Windbg, I narrowed it down to a RtlIntegerToUnicode system call. This function works perfectly in W2K or XP. Did MS do anything different in this function? I...
   Windows XP (Home) -> XP Device Driver All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum

Categories:
  Windows XP
 Windows Vista!
 Win 2000/NT/98/ME


[ Contact us | Terms of Service/Privacy Policy ]