Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F150097349
D1352.id2812.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
322 B
Referenced Files
None
Subscribers
None
D1352.id2812.diff
View Options
Index: sys/sys/mbuf.h
===================================================================
--- sys/sys/mbuf.h
+++ sys/sys/mbuf.h
@@ -757,7 +757,10 @@
m_clrprotoflags(struct mbuf *m)
{
- m->m_flags &= ~M_PROTOFLAGS;
+ while (m) {
+ m->m_flags &= ~M_PROTOFLAGS;
+ m = m->m_next;
+ }
}
static __inline struct mbuf *
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 30, 8:34 AM (14 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
30581482
Default Alt Text
D1352.id2812.diff (322 B)
Attached To
Mode
D1352: In m_clrprotoflags() cleanup the entire mbuf chain.
Attached
Detach File
Event Timeline
Log In to Comment