Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d0a689575102641149e67595e45ab006dbbb4a0d
Commit:     d0a689575102641149e67595e45ab006dbbb4a0d
Parent:     8376e7a3c2cbf2c91215c35fec9988f581fc699a
Author:     David Woodhouse <[EMAIL PROTECTED]>
AuthorDate: Sat Nov 24 19:48:17 2007 +0000
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Thu Nov 29 21:34:52 2007 -0500

    libertas: Don't set NETIF_F_IPV6_CSUM in dev->features
    
    I'm not sure why it was doing this, and I'm not sure I _want_ to know
    why. But calling it NETIF_F_DYNALLOC doesn't change the fact that the
    kernel believes it to be NETIF_F_IPV6_CSUM, and that IPv6 communication
    is hence buggered.
    
    Signed-off-by: David Woodhouse <[EMAIL PROTECTED]>
    Acked-by: Dan Williams <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/libertas/main.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/drivers/net/wireless/libertas/main.c 
b/drivers/net/wireless/libertas/main.c
index 5ead083..1823b48 100644
--- a/drivers/net/wireless/libertas/main.c
+++ b/drivers/net/wireless/libertas/main.c
@@ -1165,8 +1165,6 @@ wlan_private *libertas_add_card(void *card, struct device 
*dmdev)
 #ifdef WIRELESS_EXT
        dev->wireless_handlers = (struct iw_handler_def *)&libertas_handler_def;
 #endif
-#define NETIF_F_DYNALLOC 16
-       dev->features |= NETIF_F_DYNALLOC;
        dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
        dev->set_multicast_list = libertas_set_multicast_list;
 
@@ -1348,8 +1346,6 @@ int libertas_add_mesh(wlan_private *priv, struct device 
*dev)
 #ifdef WIRELESS_EXT
        mesh_dev->wireless_handlers = (struct iw_handler_def 
*)&mesh_handler_def;
 #endif
-#define NETIF_F_DYNALLOC 16
-
        /* Register virtual mesh interface */
        ret = register_netdev(mesh_dev);
        if (ret) {
-
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