mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 14:48:57 +00:00
Fix a problem that caused TCP fragments to be lost (among other things.)
This commit is contained in:
parent
76b501da94
commit
c9c222f749
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58539
@ -507,7 +507,7 @@ startagain:
|
||||
}
|
||||
} else {
|
||||
for (top = m; m != 0; m = m->m_next) {
|
||||
if (m->m_len > 3)
|
||||
if (m->m_len > 1)
|
||||
outsw(BASE + EP_W1_TX_PIO_WR_1,
|
||||
mtod(m, caddr_t), m->m_len / 2);
|
||||
if (m->m_len & 1)
|
||||
|
Loading…
Reference in New Issue
Block a user