netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] vlan: Make it possible to add vlan with id 4095
@ 2012-09-28 12:32 Paulius Zaleckas
  2012-09-28 13:29 ` Paulius Zaleckas
  2012-09-28 17:44 ` David Miller
  0 siblings, 2 replies; 7+ messages in thread
From: Paulius Zaleckas @ 2012-09-28 12:32 UTC (permalink / raw)
  To: kaber, netdev

vconfig help tells that vlan_id should be 0-4095, but fails
with 4095.

There is an off-by-one bug while evaluating vlan_id.
Fix it by evaluating against count(4096), not mask(0x0fff = 4095).

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
---

 net/8021q/vlan.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c
index 9096bcb..9e528bf 100644
--- a/net/8021q/vlan.c
+++ b/net/8021q/vlan.c
@@ -199,7 +199,7 @@ static int register_vlan_device(struct net_device *real_dev, u16 vlan_id)
 	char name[IFNAMSIZ];
 	int err;
 
-	if (vlan_id >= VLAN_VID_MASK)
+	if (vlan_id >= VLAN_N_VID)
 		return -ERANGE;
 
 	err = vlan_check_real_dev(real_dev, vlan_id);

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-11-12 20:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-28 12:32 [PATCH] vlan: Make it possible to add vlan with id 4095 Paulius Zaleckas
2012-09-28 13:29 ` Paulius Zaleckas
2012-09-28 17:44 ` David Miller
2012-09-28 17:55   ` Eric Dumazet
2012-11-12 18:42   ` Jan Engelhardt
2012-11-12 19:01     ` Ben Greear
2012-11-12 20:37       ` Jan Engelhardt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).