diff options
author | Robert Mustacchi <rm@joyent.com> | 2014-04-15 21:53:56 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2014-04-16 18:10:42 +0000 |
commit | 94dcde30d265736e23f939367d01b863d850b0ec (patch) | |
tree | adf65c62e4cdac13d5e86bc719029df5e08c87ba /usr/src | |
parent | 00aeef62bb42a504b38a88a68a0bbc2b2e607cf0 (diff) | |
download | illumos-joyent-94dcde30d265736e23f939367d01b863d850b0ec.tar.gz |
OS-2919 etherstubs confuse min mtu with min sdu
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/uts/common/io/vnic/vnic_dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/io/vnic/vnic_dev.c b/usr/src/uts/common/io/vnic/vnic_dev.c index dd2a359206..e7ad2608dc 100644 --- a/usr/src/uts/common/io/vnic/vnic_dev.c +++ b/usr/src/uts/common/io/vnic/vnic_dev.c @@ -20,7 +20,7 @@ */ /* * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. - * Copyright (c) 2013, Joyent, Inc. All rights reserved. + * Copyright (c) 2014, Joyent, Inc. All rights reserved. */ #include <sys/types.h> @@ -502,7 +502,7 @@ vnic_dev_create(datalink_id_t vnic_id, datalink_id_t linkid, &mac->m_max_sdu); } else { vnic->vn_margin = VLAN_TAGSZ; - mac->m_min_sdu = ANCHOR_VNIC_MIN_MTU; + mac->m_min_sdu = 1; mac->m_max_sdu = ANCHOR_VNIC_MAX_MTU; } |