* bond_3ad_rx_indication - handle a received frame
  * @lacpdu: received lacpdu
  * @slave: slave struct to work on
- * @length: length of the data received
  *
  * It is assumed that frames that were sent on this NIC don't returned as new
  * received frames (loopback). Since only the payload is given to this
  * function, it check for loopback.
  */
-static int bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave,
-                                 u16 length)
+static int bond_3ad_rx_indication(struct lacpdu *lacpdu, struct slave *slave)
 {
        int ret = RX_HANDLER_ANOTHER;
        struct bond_marker *marker;
        struct port *port;
 
-       if (length < sizeof(struct lacpdu))
-               return ret;
-
        port = &(SLAVE_AD_INFO(slave)->port);
        if (!port->slave) {
                net_warn_ratelimited("%s: Warning: port of slave %s is uninitialized\n",
        if (!lacpdu)
                return RX_HANDLER_ANOTHER;
 
-       return bond_3ad_rx_indication(lacpdu, slave, skb->len);
+       return bond_3ad_rx_indication(lacpdu, slave);
 }
 
 /**