Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3333590e94262aebb5d0fb767cc7ed8b2359705c
Commit:     3333590e94262aebb5d0fb767cc7ed8b2359705c
Parent:     2d192d9552881f4cf88e62072047c72ef2b5aa7f
Author:     Johannes Berg <[EMAIL PROTECTED]>
AuthorDate: Wed Dec 12 16:31:52 2007 +0100
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Dec 19 16:43:46 2007 -0800

    mac80211: fix header ops
    
    When using recvfrom() on a SOCK_DGRAM packet socket, I noticed that the MAC
    address passed back for wireless frames was always completely wrong. The
    reason for this is that the header parse function assigned to our virtual
    interfaces is a function parsing an 802.11 rather than 802.3 header. This
    patch fixes it by keeping the default ethernet header operations assigned.
    
    Signed-off-by: Johannes Berg <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 net/mac80211/ieee80211.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/net/mac80211/ieee80211.c b/net/mac80211/ieee80211.c
index 505af1f..6378850 100644
--- a/net/mac80211/ieee80211.c
+++ b/net/mac80211/ieee80211.c
@@ -427,7 +427,6 @@ static const struct header_ops ieee80211_header_ops = {
 void ieee80211_if_setup(struct net_device *dev)
 {
        ether_setup(dev);
-       dev->header_ops = &ieee80211_header_ops;
        dev->hard_start_xmit = ieee80211_subif_start_xmit;
        dev->wireless_handlers = &ieee80211_iw_handler_def;
        dev->set_multicast_list = ieee80211_set_multicast_list;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to