the last commit changed LIST_INSERT_HEAD to TAILQ_INSERT_TAIL cos the
authordlg <dlg@openbsd.org>
Fri, 19 Dec 2014 02:46:47 +0000 (02:46 +0000)
committerdlg <dlg@openbsd.org>
Fri, 19 Dec 2014 02:46:47 +0000 (02:46 +0000)
commit9f2f21cedbccbf5a88312bc583e5a09dffb57422
treec136d6a4b9f118cd108678fc1006545a1a384bb0
parentacaef325036c1436c39c1f005ea82bbb055b3db9
the last commit changed LIST_INSERT_HEAD to TAILQ_INSERT_TAIL cos the
latter is cheaper, but i forgot to change the thing that pulls pages off
those lists to match the change in direction. the page lists went from LIFO
to FIFO.

this changes pool_update_curpage to use TAILQ_LAST so we go back to LIFO.

pointed out by and ok tedu@
sys/kern/subr_pool.c