On Fri, Mar 31, 2006 at 10:25:14PM -0600, Travis H. wrote: > On further experimentation, I am convinced there is a memory leak when > using tagging. I would experience net death after 1-3 days of > activity. Nothing I could do would free up any space, except for > rebooting.
If this is on OpenBSD, packet tags (see mbuf_tags(9)) are allocated with malloc(M_PACKET_TAGS) in m_tag_get() and show up in vmstat -m as 'packet tags'. A leak would show as steadily increasing 'InUse' and 'HighUse' there. Daniel
