Remove stale comment about not enabling inpcb and inpcbinfo lock assertions

when IPv6 is enabled.

MFC after:	3 days
This commit is contained in:
Robert Watson 2007-03-28 00:50:20 +00:00
parent 9001f88905
commit 77c78838f0

View File

@ -234,11 +234,6 @@ struct inpcbinfo { /* XXX documentation, prefixes */
struct mtx ipi_mtx;
};
/*
* NB: We cannot enable assertions when IPv6 is configured as
* this code is shared by both IPv4 and IPv6 and IPv6 is
* not properly locked.
*/
#define INP_LOCK_INIT(inp, d, t) \
mtx_init(&(inp)->inp_mtx, (d), (t), MTX_DEF | MTX_RECURSE | MTX_DUPOK)
#define INP_LOCK_DESTROY(inp) mtx_destroy(&(inp)->inp_mtx)