In commit 56addd6eeeb4e11f5a0af7093ca078e0f29140e0 the VLAN multicast list
handling was reworked.  Unfortunately, a variable initialization was missed,
and multicast over vlan devices has been broken since 2.6.23-rc1 (apparently
not too many people use this).  Trivial fix below, which might be a candidate
for -stable.

Phil

Signed-off-by: Phil Oester <[EMAIL PROTECTED]>

diff --git a/net/core/dev.c b/net/core/dev.c
index 908f07c..999af2e 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2905,6 +2905,7 @@ int __dev_addr_add(struct dev_addr_list **list, int 
*count,
                return -ENOMEM;
        memcpy(da->da_addr, addr, alen);
        da->da_addrlen = alen;
+       da->da_synced = 0;
        da->da_users = 1;
        da->da_gusers = glbl ? 1 : 0;
        da->next = *list;

Reply via email to