[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2ab8a3251002110850k2def5137qb791b100145a3bd2@mail.gmail.com>
Date: Thu, 11 Feb 2010 14:50:07 -0200
From: Tiago Pierezan Camargo <tcamargo@...il.com>
To: Patrick McHardy <kaber@...sh.net>
Cc: netdev@...r.kernel.org
Subject: Re: Problem with VLANs and via-velocity driver
Patrick McHardy <kaber <at> trash.net> writes:
> > ...
> >
> > Any suggestions?
>
> This should be fixed in the driver as discussed previously.
Well, the following patch completely disables hw vlan filtering
(against 2.6.31).
--- ../via_kernel_org/via-velocity.c 2010-02-10 11:45:14.000000000 -0200
+++ via-velocity.c 2010-02-11 11:24:37.000000000 -0200
@@ -607,9 +607,10 @@
{
struct mac_regs __iomem * regs = vptr->mac_regs;
- /* Turn on MCFG_PQEN, turn off MCFG_RTGOPT */
- WORD_REG_BITS_SET(MCFG_PQEN, MCFG_RTGOPT, ®s->MCFG);
- WORD_REG_BITS_ON(MCFG_VIDFR, ®s->MCFG);
+ /* Completely disable vlan filtering */
+ WORD_REG_BITS_OFF(MCFG_PQEN, ®s->MCFG);
+ WORD_REG_BITS_OFF(MCFG_VIDFR, ®s->MCFG);
+ WORD_REG_BITS_OFF(MCFG_RTGOPT, ®s->MCFG);
/* Disable all CAMs */
memset(vptr->vCAMmask, 0, sizeof(u8) * 8);
@@ -1406,7 +1407,7 @@
/*
* Don't drop CE or RL error frame although RXOK is off
*/
- if (rd->rdesc0.RSR & (RSR_RXOK | RSR_CE | RSR_RL)) {
+ if (rd->rdesc0.RSR & (RSR_RXOK | RSR_CE | RSR_RL | RSR_VIDM)) {
if (velocity_receive_frame(vptr, rd_curr) < 0)
stats->rx_dropped++;
I know it's not the best solution. I can come up with a better patch
but I'm a bit confused about the expected behavior.
- Should we only disable vlan filtering when promiscuous mode is
enabled? (should we care about hw tag stripping?)
- Should we disable vlan filtering entirely and let the software deal
with it? (this seems to be the semantics implemented in the freebsd
driver)
Suggestions?
Regards,
--
Tiago Pierezan Camargo
tcamargo at gmail dot com
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists