Remove the extra epoch tracker change sneaked into r355449 and was not part

of the originally reviewed or described change.

Pointyhat to:   bz
Reported by:    glebius
This commit is contained in:
Bjoern A. Zeeb 2019-12-06 22:20:26 +00:00
parent 43393e8b2c
commit 646e34881c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=355466

View File

@ -978,7 +978,6 @@ carp_send_ad_locked(struct carp_softc *sc)
#endif /* INET */
#ifdef INET6
if (sc->sc_naddrs6) {
struct epoch_tracker et;
struct ip6_hdr *ip6;
m = m_gethdr(M_NOWAIT, MT_DATA);
@ -1032,10 +1031,8 @@ carp_send_ad_locked(struct carp_softc *sc)
CARPSTATS_INC(carps_opackets6);
NET_EPOCH_ENTER(et);
carp_send_ad_error(sc, ip6_output(m, NULL, NULL, 0,
&sc->sc_carpdev->if_carp->cif_im6o, NULL, NULL));
NET_EPOCH_EXIT(et);
}
#endif /* INET6 */