Date: Fri, 3 Aug 2001 08:53:45 -0700 From: Bill Fenner <fenner@research.att.com> To: daniel.sobral@tcoip.com.br Cc: ru@freebsd.org, mjacob@freebsd.org, stable@freebsd.org Subject: Re: Request for testers: multicast patch Message-ID: <200108031553.IAA17847@windsor.research.att.com>
index | next in thread | raw e-mail
It looks like the patch causes packets not to be sent if
ia == 0. The inner part of the sendorfree: loop went from
if (error == 0) {
update if stats
call if_output
}
to
if (error == 0 && ia) {
update ia stats
call if_output
}
where I think it's more likely correct to do
if (error == 0) {
if (ia) update ia state
call if_output
}
I realize this bug was just introducd in rev 1.131, but let's not propogate
it to stable.
Bill
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200108031553.IAA17847>
