diff options
author | scottl <scottl@FreeBSD.org> | 2004-05-30 22:40:28 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2004-05-30 22:40:28 +0000 |
commit | 167bbf13a573f9f49e9da2b4bc761f7c7d90ca5f (patch) | |
tree | dc4b7c751ddb5e1ac8be368b31ad26a89f48cbac /sys/dev/aac | |
parent | ec226ee68960dd4c17666d7675b64fa976ba33de (diff) | |
download | FreeBSD-src-167bbf13a573f9f49e9da2b4bc761f7c7d90ca5f.zip FreeBSD-src-167bbf13a573f9f49e9da2b4bc761f7c7d90ca5f.tar.gz |
Turn down the queue size by 8 until I can figure out why the 512th command
keeps on getting lost.
Diffstat (limited to 'sys/dev/aac')
-rw-r--r-- | sys/dev/aac/aacvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/aac/aacvar.h b/sys/dev/aac/aacvar.h index a4b30c3..8d40849 100644 --- a/sys/dev/aac/aacvar.h +++ b/sys/dev/aac/aacvar.h @@ -58,7 +58,7 @@ */ #define AAC_FIB_COUNT (PAGE_SIZE/sizeof(struct aac_fib)) #define AAC_PREALLOCATE_FIBS 128 -#define AAC_MAX_FIBS 512 +#define AAC_MAX_FIBS 504 /* * The controller reports status events in AIFs. We hang on to a number of |