diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-12 05:46:46 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-12 05:46:46 +0000 |
commit | 3833abba9a6ed471914b3d3bb80aeef2814c39df (patch) | |
tree | 9515916d8920b68f83452fc7ab12732816fd7a81 /sys/netinet/ip_carp.c | |
parent | 95c7d027a8eff24e868e5694eb60e1c22960f39d (diff) |
IFQ_DROP means a drop because enqueue on the send q failed, not cos tx
later failed.
Diffstat (limited to 'sys/netinet/ip_carp.c')
-rw-r--r-- | sys/netinet/ip_carp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index 028d9c9fd79..90ac78d5911 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_carp.c,v 1.280 2015/11/02 15:56:46 mpi Exp $ */ +/* $OpenBSD: ip_carp.c,v 1.281 2015/11/12 05:46:45 dlg Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff. All rights reserved. @@ -2268,7 +2268,6 @@ carp_start(struct ifnet *ifp) if ((ifp->if_carpdev->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING)) { - IF_DROP(&ifp->if_carpdev->if_snd); ifp->if_oerrors++; m_freem(m); continue; |