/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* IEEE 802.3ad Link Aggregation - Receive
*
* Implements the collector function.
* Manages the RX resources exposed by a link aggregation group.
*/
#include <sys/sysmacros.h>
#include <sys/byteorder.h>
#include <sys/aggr_impl.h>
static void
{
} else {
}
}
void
{
/* in promiscuous mode, send copy of packet up */
if (grp->lg_promisc) {
}
}
/*
* Callback function invoked by MAC service module when packets are
* made available by a MAC port.
*/
/* ARGSUSED */
void
{
} else {
/* filter out slow protocol packets (LACP & Marker) */
/* packet too short */
/* no packets accumulated */
} else {
/* send up accumulated packets */
if (port->lp_collector_enabled) {
head);
} else {
}
}
continue;
}
if (sap == ETHERTYPE_SLOW) {
/*
* LACP or Marker packet. Send up pending
* to LACP subsystem.
*/
/* first packet of chain */
} else {
/* previously accumulated packets */
/* send up non-LACP packets */
if (port->lp_collector_enabled) {
head);
} else {
}
/* unlink and pass up LACP packets */
}
} else {
}
}
if (port->lp_collector_enabled)
else
}
}
}