Subject: Re: RTL8169 hw IP4CSUM_Tx workaround
To: Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
From: Jason Thorpe <thorpej@shagadelic.org>
List: tech-net
Date: 10/22/2006 12:30:05
On Oct 20, 2006, at 11:15 PM, Izumi Tsutsui wrote:

> +	/*
> +	 * Walk packet chain to find last mbuf. We will either
> +	 * pad there, or append a new mbuf and pad it.
> +	 */
> +	for (m_last = pkt; m_last->m_next != NULL; m_last = m_last->m_next)
> +		continue;

I'm not exactly thrilled with walking the packet chain...

-- thorpej