Search String: Display: Description: Sort:

Results:

References: [ +subject:/^(?:^\s*(re|sv|fwd|fw)[\[\]\d]*[:>-]+\s*)*network\s+interface\s+cards\s+native\s+vlans\s+support\s+in\s+linux\s+kernel\?\s*$/: 28 ]

Total 28 documents matching your query.

1. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: xxxxxxxxxxxxxxxx>
Date: Wed, 12 Nov 2003 20:48:04 +0100
I was thinking about what to do as a driver *writer* rather than as a driver *user*. include <linux/if_vlan.h> and allocating buffers of (dev->mtu + VLAN_ETH_HLEN) bytes. Some chips, such as the Tuli
/archives/netdev/2003-11/msg00202.html (8,381 bytes)

2. nd fixes for 2.6 (score: 1)
Author: ler" <davem@xxxxxxxxxx>
Date: Wed, 22 Oct 2003 14:06:25 +0200
[0]
/archives/netdev/2003-10/msg00557.html (8,378 bytes)

3. in linux kernel? (score: 1)
Author: rtsen <rask@xxxxxxxxxx>
Date: Wed, 22 Oct 2003 10:01:49 -0700
e it can handle vlan frames? Is it enought to be prepared to handle frames of size dev->mtu+4? How do I know 4 bytes will be enough tomorrow when someone intr
/archives/netdev/2003-10/msg00558.html (9,968 bytes)

4. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: noam@xxxxxxxxx>
Date: Thu, 11 Sep 2003 15:57:36 +0100
[cut] What does a network device driver need to do to ensure VLAN compatibility? Is it as simple as allocating buffer space for MTU + 4 bytes or is there more to it than that? -- Regards, Rask Ingema
/archives/netdev/2003-09/msg00296.html (7,714 bytes)

5. network interface cards native vlans support in linux kernel? (score: 1)
Author: Andi Kleen <ak@xxxxxxx>
Date: Wed, 9 Jul 2003 18:19:51 +0300 (GMT-3)
hello, as far as i know, currently there is no native vlan support in network device drivers. I mean, always need patching MTU.. add 4 bytes.. is there any problems to include full vlans support? And
/archives/netdev/2003-07/msg00125.html (8,107 bytes)

6. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: ius Kasparavicius <andrius@xxxxxxxxxxx>
Date: Wed, 9 Jul 2003 11:28:15 -0400
Native VLAN support has been in the kernel for a while. A few drivers still need patching, and unfortunately the VLAN driver patches floating around all need cleaning up. Jeff
/archives/netdev/2003-07/msg00127.html (9,187 bytes)

7. RE: network interface cards native vlans support in linux kernel? (score: 1)
Author: xxxxxx>
Date: Wed, 9 Jul 2003 18:33:46 +0300
Do you mean "native" as in hardware acceleration offloading? If that's the case than the 8021q vlan module handshakes with the device driver to check for support and that's it. No need to do any sett
/archives/netdev/2003-07/msg00128.html (9,843 bytes)

8. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author:
Date: Wed, 09 Jul 2003 10:13:11 -0700
Hen, Shmulik wrote: Do you mean "native" as in hardware acceleration offloading? If that's the case than the 8021q vlan module handshakes with the device driver to check for support and that's it. No
/archives/netdev/2003-07/msg00135.html (10,402 bytes)

9. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: n Greear <greearb@xxxxxxxxxxxxxxx>
Date: Wed, 09 Jul 2003 10:15:41 -0700
is there any problems to include full vlans support? Intel's e100 driver (and all NICs supported by it) support vlans fine, as do most of the GigE NICs. Tulip does not, last I hear, though a work-aro
/archives/netdev/2003-07/msg00136.html (10,225 bytes)

10. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: xxxxxxxxxxxxxx>
Date: Wed, 9 Jul 2003 22:12:23 +0300 (GMT-3)
is there a clear list of which cards "works without patch", which "need patches/mtu changes" and which "never seen working"? Andrius
/archives/netdev/2003-07/msg00144.html (9,287 bytes)

11. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: mika.liljeberg@xxxxxxxxx>
Date: Fri, 11 Jul 2003 17:59:36 +0300 (GMT-3)
on vanilla linux kernel, eepro doesn't work, and with 1496 mtu, 8139too works with any mtu (and 1500). which is recommended to use, e100 or eepro100? Andrius.
/archives/netdev/2003-07/msg00233.html (8,996 bytes)

12. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: ika.penttila@xxxxxxxxxxx
Date: Fri, 11 Jul 2003 10:11:57 -0700
Andrius Kasparavicius wrote: on vanilla linux kernel, eepro doesn't work, and with 1496 mtu, 8139too works with any mtu (and 1500). which is recommended to use, e100 or eepro100? As I mentioned, the
/archives/netdev/2003-07/msg00236.html (10,863 bytes)

13. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: rg <mika.liljeberg@xxxxxxxxx>
Date: Fri, 11 Jul 2003 13:18:58 -0400
I won't say for sure, but I'm fairly certain he does. Most of his drivers got a "slightly larger than normal MTU" pass-over a while ago. I objected to the eepro100 patch, because all it did was chang
/archives/netdev/2003-07/msg00237.html (9,795 bytes)

14. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: drius Kasparavicius <andrius@xxxxxxxxxxx>
Date: Fri, 11 Jul 2003 10:25:57 -0700
Jeff Garzik wrote: On Fri, Jul 11, 2003 at 10:11:57AM -0700, Ben Greear wrote: eepro100 does not seem to be updated in the kernel anymore, though if you go figure out how to install Becker's drivers,
/archives/netdev/2003-07/msg00238.html (11,353 bytes)

15. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: Rask Ingemann Lambertsen <rask@xxxxxxxxxx>
Date: Wed, 12 Nov 2003 20:48:04 +0100
I was thinking about what to do as a driver *writer* rather than as a driver *user*. include <linux/if_vlan.h> and allocating buffers of (dev->mtu + VLAN_ETH_HLEN) bytes. Some chips, such as the Tuli
/archives/netdev/2003-11/msg00815.html (8,717 bytes)

16. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: Rask Ingemann Lambertsen <rask@xxxxxxxxxx>
Date: Wed, 22 Oct 2003 14:06:25 +0200
What does a driver need to do to make sure it can handle vlan frames? Is it enought to be prepared to handle frames of size dev->mtu+4? How do I know 4 bytes will be enough tomorrow when someone intr
/archives/netdev/2003-10/msg01299.html (8,612 bytes)

17. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: Ben Greear <greearb@xxxxxxxxxxxxxxx>
Date: Wed, 22 Oct 2003 10:01:49 -0700
hello, as far as i know, currently there is no native vlan support in network device drivers. I mean, always need patching MTU.. add 4 bytes.. is there any problems to include full vlans support? Na
/archives/netdev/2003-10/msg01300.html (9,954 bytes)

18. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: "Rask Ingemann Lambertsen" <rask@xxxxxxxxxx>
Date: Thu, 11 Sep 2003 15:57:36 +0100
[cut] What does a network device driver need to do to ensure VLAN compatibility? Is it as simple as allocating buffer space for MTU + 4 bytes or is there more to it than that? -- Regards, Rask Ingema
/archives/netdev/2003-09/msg01225.html (7,905 bytes)

19. network interface cards native vlans support in linux kernel? (score: 1)
Author: Andrius Kasparavicius <andrius@xxxxxxxxxxx>
Date: Wed, 9 Jul 2003 18:19:51 +0300 (GMT-3)
hello, as far as i know, currently there is no native vlan support in network device drivers. I mean, always need patching MTU.. add 4 bytes.. is there any problems to include full vlans support? And
/archives/netdev/2003-07/msg00814.html (8,107 bytes)

20. Re: network interface cards native vlans support in linux kernel? (score: 1)
Author: Jeff Garzik <jgarzik@xxxxxxxxx>
Date: Wed, 9 Jul 2003 11:28:15 -0400
Native VLAN support has been in the kernel for a while. A few drivers still need patching, and unfortunately the VLAN driver patches floating around all need cleaning up. Jeff
/archives/netdev/2003-07/msg00816.html (9,281 bytes)


This search system is powered by Namazu