]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
Staging: wlan-ng: Eliminate one more rx mtu test.
authorSolomon Peachy <pizza@shaftnet.org>
Mon, 27 Oct 2008 15:14:04 +0000 (11:14 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 6 Jan 2009 21:51:55 +0000 (13:51 -0800)
It also isn't needed.

Signed-off-by: Solomon Peachy <pizza@shaftnet.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/wlan-ng/p80211conv.c

index d58f10f11d00b93f648584ccdfe4e41da704c671..aaf1c9d444878ab74b311465565b2dcdb95135fb 100644 (file)
@@ -444,16 +444,6 @@ int skb_p80211_to_ether( wlandevice_t *wlandev, UINT32 ethconv, struct sk_buff *
                /*  build an 802.3 frame */
                /* allocate space and setup hostbuf */
 
-               /* Test for an overlength frame */
-               if ( payload_length > netdev->mtu ) {
-                       /* A bogus length ethfrm has been sent. */
-                       /* Is someone trying an oflow attack? */
-                       WLAN_LOG_ERROR("OTHER frame too large (%d > %d)\n",
-                               payload_length,
-                               netdev->mtu);
-                       return 1;
-               }
-
                /* Chop off the 802.11 header. */
                skb_pull(skb, payload_offset);