Subject: Re: pppoe & mbuf chain
To: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp>
From: None <itojun@iijlab.net>
List: tech-net
Date: 06/22/2002 08:49:29
>+		/* should be in a single mbuf */
>+		if (m->m_next != NULL) {
>+			m = m_pullup(m, m->m_len);

	m_pullup(m, m->m_len) seems really incorrect to me (as this would
	be a no-op).  the 2nd arg must be something else.

itojun