summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/inet/tcp/tcp.c
diff options
context:
space:
mode:
authorkrgopi <none@none>2005-12-23 10:29:12 -0800
committerkrgopi <none@none>2005-12-23 10:29:12 -0800
commit4b46d1ef625bf17cc3dd4b14b9ad807be97dc558 (patch)
treef7a47bdc523d89874ab78528527c14b8bd0aaef9 /usr/src/uts/common/inet/tcp/tcp.c
parent5805a1baa6594684bbf7d7fa108cea093396ea31 (diff)
downloadillumos-joyent-4b46d1ef625bf17cc3dd4b14b9ad807be97dc558.tar.gz
PSARC 2005/654 Nemo soft rings
6306717 For Nemo based drivers, IP can ask dls to do the fanout
Diffstat (limited to 'usr/src/uts/common/inet/tcp/tcp.c')
-rw-r--r--usr/src/uts/common/inet/tcp/tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/inet/tcp/tcp.c b/usr/src/uts/common/inet/tcp/tcp.c
index 61495f4705..886f6a00e5 100644
--- a/usr/src/uts/common/inet/tcp/tcp.c
+++ b/usr/src/uts/common/inet/tcp/tcp.c
@@ -18126,13 +18126,13 @@ tcp_send_data(tcp_t *tcp, queue_t *q, mblk_t *mp)
ire->ire_last_used_time = lbolt;
BUMP_MIB(&ip_mib, ipOutRequests);
- if (ILL_POLL_CAPABLE(ill)) {
+ if (ILL_DLS_CAPABLE(ill)) {
/*
* Send the packet directly to DLD, where it may be queued
* depending on the availability of transmit resources at
* the media layer.
*/
- IP_POLL_ILL_TX(ill, mp);
+ IP_DLS_ILL_TX(ill, mp);
} else {
putnext(ire->ire_stq, mp);
}