diff options
Diffstat (limited to 'usr/src/uts/common/inet/tcp/tcp.c')
-rw-r--r-- | usr/src/uts/common/inet/tcp/tcp.c | 4 |
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); } |