CVSROOT: /cvs Module name: src Changes by: [email protected] 2010/06/28 12:40:51
Modified files:
sys/dev/pci : arc.c
Log message:
Use an SLIST instead of a TAILQ for the ccb free list. Order doesn't
matter, an SLIST is smaller, and the first element is more likely to be
in cache. Previously we took from the head and returned to the tail,
which meant that we were using the ccb that was the least recently used
one which also means it has the smallest chance of being in cache.
ok deraadt
