Index: mbuf.h =================================================================== RCS file: /home/ncvs/src/sys/sys/mbuf.h,v retrieving revision 1.143 diff -u -r1.143 mbuf.h --- mbuf.h 2 May 2004 15:10:17 -0000 1.143 +++ mbuf.h 18 May 2004 12:00:31 -0000 @@ -564,23 +564,11 @@ void m_tag_delete_nonpersistent(struct mbuf *); /* - * Initialize the list of tags associated with an mbuf. - */ -static __inline void -m_tag_init(struct mbuf *m) -{ - SLIST_INIT(&m->m_pkthdr.tags); -} - -/* * Setup the contents of a tag. Note that this does not * fillin the free method; the caller is expected to do that. - * - * XXX probably should be called m_tag_init; but that was - * already taken. */ static __inline void -m_tag_setup(struct m_tag *t, u_int32_t cookie, int type, int len) +m_tag_init(struct m_tag *t, u_int32_t cookie, int type, int len) { t->m_tag_id = type; t->m_tag_len = len;