aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ral/rt2560.c
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2010-05-03 07:32:50 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2010-05-03 07:32:50 +0000
commite50d35e6c6c68e83fa329aff043d53ab84982fd3 (patch)
tree66ca2ebd19fbb3af659fe11c4a5999a6fb1fc68f /sys/dev/ral/rt2560.c
parent551e75c7af421b58b9ba54d639af1e5f7a79ca23 (diff)
downloadsrc-e50d35e6c6c68e83fa329aff043d53ab84982fd3.tar.gz
src-e50d35e6c6c68e83fa329aff043d53ab84982fd3.zip
Add new tunable 'net.link.ifqmaxlen' to set default send interface
queue length. The default value for this parameter is 50, which is quite low for many of today's uses and the only way to modify this parameter right now is to edit if_var.h file. Also add read-only sysctl with the same name, so that it's possible to retrieve the current value. MFC after: 1 month
Notes
Notes: svn path=/head/; revision=207554
Diffstat (limited to 'sys/dev/ral/rt2560.c')
-rw-r--r--sys/dev/ral/rt2560.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ral/rt2560.c b/sys/dev/ral/rt2560.c
index 9549107005f3..8589768d4226 100644
--- a/sys/dev/ral/rt2560.c
+++ b/sys/dev/ral/rt2560.c
@@ -267,8 +267,8 @@ rt2560_attach(device_t dev, int id)
ifp->if_init = rt2560_init;
ifp->if_ioctl = rt2560_ioctl;
ifp->if_start = rt2560_start;
- IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
- ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN;
+ IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen);
+ ifp->if_snd.ifq_drv_maxlen = ifqmaxlen;
IFQ_SET_READY(&ifp->if_snd);
ic->ic_ifp = ifp;