From: David Woodhouse Date: Tue, 20 May 2008 21:36:14 +0000 (-0700) Subject: net: Fix call to ->change_rx_flags(dev, IFF_MULTICAST) in dev_change_flags() X-Git-Tag: v2.6.26-rc4~91^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e91796eb46e29edc791131c832a2232bcaed9dd;p=pandora-kernel.git net: Fix call to ->change_rx_flags(dev, IFF_MULTICAST) in dev_change_flags() Am I just being particularly dim today, or can the call to dev->change_rx_flags(dev, IFF_MULTICAST) in dev_change_flags() never happen? We've just set dev->flags = flags & IFF_MULTICAST, effectively. So the condition '(dev->flags ^ flags) & IFF_MULTICAST' is _never_ going to be true. Signed-off-by: David Woodhouse Signed-off-by: David S. Miller --- Reading git-diff-tree failed