*
* Copyright 1998, Silicon Graphics, Inc. 
* All Rights Reserved.
*
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
* the contents of this file may not be disclosed to third parties, copied or 
* duplicated in any form, in whole or in part, without the prior written 
* permission of Silicon Graphics, Inc.
*
* RESTRICTED RIGHTS LEGEND:
* Use, duplication or disclosure by the Government is subject to restrictions 
* as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
* and Computer Software clause at DFARS 252.227-7013, and/or in similar or 
* successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished - 
* rights reserved under the Copyright Laws of the United States.
*
*#ident "$Header: /proj/irix6.5.7m/isms/irix/kern/master.d/RCS/if_eg,v 1.2 1998/12/04 17:08:58 trp Exp $"
*
* eg - Tigon Gigabit Ethernet driver
*
*FLAG   PREFIX  SOFT    #DEV    DEPENDENCIES
cs	if_eg   -       -       bsd
$$$

/*
 *      MTU size for each interface. Default is 1500, use 9000 for jumbo frames
 */
int eg_mtu[10] = {1500,1500,1500,1500,1500,1500,1500,1500,1500,1500};

/*
 *      eg_send_coal_bd         specifies how many buffers to send before
 *                              the NIC generates an interrupt
 *
 *      eg_send_coal_ticks      specifies the number of uSECS to wait after at least
 *                              one buffer has been sent.
 */
int eg_send_coal_ticks  = 72*64;
int eg_send_coal_bd     = 64;

/*
 *      eg_recv_coal_bd         specifies how many buffers to receive before
 *                              the NIC generates an interrupt
 *
 *      eg_recv_coal_ticks      specifies the number of uSECS to wait after at least
 *                              one buffer has been received. Since this depends on
 *                              mtu size, it is an array indexed by device number.
 *                              Use 72 for 1500 mtu and 17 for 9000 mtu as starting
 *                              values.
 *
 */
int eg_recv_coal_bd     =  6;  
int eg_recv_coal_ticks[10] = {72,72,72,72,72,72,72,72,72,72};

