Remove more one more stale comment regarding unpcb type-safety.

This commit is contained in:
Robert Watson 2007-05-11 12:28:45 +00:00
parent d7924b7086
commit 08d73f1370

View File

@ -1392,10 +1392,6 @@ unp_pcblist(SYSCTL_HANDLER_ARGS)
unp_list = malloc(n * sizeof *unp_list, M_TEMP, M_WAITOK);
/*
* XXXRW: Note, this code relies very explicitly in pcb's being type
* stable.
*/
UNP_GLOBAL_RLOCK();
for (unp = LIST_FIRST(head), i = 0; unp && i < n;
unp = LIST_NEXT(unp, unp_link)) {