cvs commit: src/sys/dev/aic7xxx aic79xx.c aic79xx.h aic7xxx.c
aic7xxx.h aic7xxx_inline.h
Scott Long
scottl at FreeBSD.org
Thu Apr 19 18:53:53 UTC 2007
scottl 2007-04-19 18:53:53 UTC
FreeBSD src repository
Modified files:
sys/dev/aic7xxx aic79xx.c aic79xx.h aic7xxx.c aic7xxx.h
aic7xxx_inline.h
Log:
Up until now, the free SCB pool received only a small initial allocation,
and new SCBs were allocated on demand later if needed. This has two
problems. First, allocating SCBs involves allocating contiguous memory,
and if memory is exhausted then the VM will try to page out to satisfy
the request, leading to recursion and deadlock. The second problem is
that it can cause lock order reversals due to parts of the VM still being
under Giant.
Fix the problem be allocating the full pool at driver attach, when it is
safe to do so.
Revision Changes Path
1.40 +13 -10 src/sys/dev/aic7xxx/aic79xx.c
1.27 +1 -1 src/sys/dev/aic7xxx/aic79xx.h
1.111 +7 -5 src/sys/dev/aic7xxx/aic7xxx.c
1.56 +1 -1 src/sys/dev/aic7xxx/aic7xxx.h
1.25 +2 -1 src/sys/dev/aic7xxx/aic7xxx_inline.h
More information about the cvs-src
mailing list