Import 2.3.18pre1
[davej-history.git] / net / atm / tunable.h
blob75071f75a151eb8a43bd50b8b9c7b372ea540113
1 /* net/atm/tunable.h - Tunable parameters of ATM support */
3 /* Written 1995-1999 by Werner Almesberger, EPFL LRC/ICA */
6 #ifndef NET_ATM_TUNABLE_H
7 #define NET_ATM_TUNABLE_H
9 #define ATM_RXBQ_DEF ( 64*1024) /* default RX buffer quota, in bytes */
10 #define ATM_TXBQ_DEF ( 64*1024) /* default TX buffer quota, in bytes */
11 #define ATM_RXBQ_MIN ( 1*1024) /* RX buffer minimum, in bytes */
12 #define ATM_TXBQ_MIN ( 1*1024) /* TX buffer minimum, in bytes */
13 #define ATM_RXBQ_MAX (1024*1024) /* RX buffer quota limit, in bytes */
14 #define ATM_TXBQ_MAX (1024*1024) /* TX buffer quota limit, in bytes */
16 #endif