@@ -104,9 +104,11 @@ int dev_mc_sync(struct net_device *to, struct net_device *from)
/* 2.6.22 does not have da->da_synced so lets take the long route */
while (da_to != NULL) {
if (memcmp(da_to->da_addr, da->da_addr, da_to->da_addrlen) == 0 &&
- da->da_addrlen == da_to->da_addrlen)
+ da->da_addrlen == da_to->da_addrlen) {
synced = 1;
break;
+ }
+ da_to = da_to->next;
}
if (!synced) {
err = __dev_addr_add(&to->mc_list, &to->mc_count,
@@ -160,9 +162,11 @@ void dev_mc_unsync(struct net_device *to, struct net_device *from)
/* 2.6.22 does not have da->da_synced so lets take the long route */
while (da_to != NULL) {
if (memcmp(da_to->da_addr, da->da_addr, da_to->da_addrlen) == 0 &&
- da->da_addrlen == da_to->da_addrlen)
+ da->da_addrlen == da_to->da_addrlen) {
synced = true;
break;
+ }
+ da_to = da_to->next;
}
if (!synced) {
da = next;
Fix dev_mc_sync() and dev_mc_unsync() in compat-2.6.23.c. When looking for synchronized addresses, put "break" inside the above "if" to break the loop only if there is a match. Otherwise, advance da_to to the next address. Signed-off-by: Pavel Roskin <proski@gnu.org> --- compat/compat-2.6.23.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html