* [PATCH] bridge: forwarding table information for >256 devices
@ 2008-05-01 20:42 Stephen Hemminger
2008-05-02 23:53 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Stephen Hemminger @ 2008-05-01 20:42 UTC (permalink / raw)
To: netdev; +Cc: bridge
The forwarding table binary interface (my bad choice), only exposes the
port number of the first 8 bits. The bridge code was limited to 256 ports
at the time, but now the kernel supports up 1024 ports, so the upper bits
are lost when doing:
brctl showmacs
The fix is to squeeze the extra bits into small hole left in data structure,
to maintain binary compatiablity.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
--- a/include/linux/if_bridge.h 2008-04-28 15:27:05.000000000 -0700
+++ b/include/linux/if_bridge.h 2008-04-28 15:31:38.000000000 -0700
@@ -97,7 +97,9 @@ struct __fdb_entry
__u8 port_no;
__u8 is_local;
__u32 ageing_timer_value;
- __u32 unused;
+ __u8 port_hi;
+ __u8 pad0;
+ __u16 unused;
};
#ifdef __KERNEL__
--- a/net/bridge/br_fdb.c 2008-04-28 15:27:05.000000000 -0700
+++ b/net/bridge/br_fdb.c 2008-04-28 15:31:38.000000000 -0700
@@ -285,7 +285,11 @@ int br_fdb_fillbuf(struct net_bridge *br
/* convert from internal format to API */
memcpy(fe->mac_addr, f->addr.addr, ETH_ALEN);
+
+ /* due to ABI compat need to split into hi/lo */
fe->port_no = f->dst->port_no;
+ fe->port_hi = f->dst->port_no >> 8;
+
fe->is_local = f->is_local;
if (!f->is_static)
fe->ageing_timer_value = jiffies_to_clock_t(jiffies - f->ageing_timer);
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] bridge: forwarding table information for >256 devices
2008-05-01 20:42 [PATCH] bridge: forwarding table information for >256 devices Stephen Hemminger
@ 2008-05-02 23:53 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2008-05-02 23:53 UTC (permalink / raw)
To: shemminger; +Cc: netdev, bridge
From: Stephen Hemminger <shemminger@vyatta.com>
Date: Thu, 1 May 2008 13:42:09 -0700
> The forwarding table binary interface (my bad choice), only exposes the
> port number of the first 8 bits. The bridge code was limited to 256 ports
> at the time, but now the kernel supports up 1024 ports, so the upper bits
> are lost when doing:
> brctl showmacs
>
> The fix is to squeeze the extra bits into small hole left in data structure,
> to maintain binary compatiablity.
>
> Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
At least you had somewhere to stick the high bits :)
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-05-02 23:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-01 20:42 [PATCH] bridge: forwarding table information for >256 devices Stephen Hemminger
2008-05-02 23:53 ` David Miller
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).