Skip to content
Snippets Groups Projects
Commit 2d8d11cf authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Increase the number of request buffers to 4096 from 1024 for a 4GB machine

so we can remove max_rpcs_in_flight workaround on ALC.
b=2729
parent c844b896
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
* - OST_MAXREQSIZE must be at least 1 page of cookies plus some spillover * - OST_MAXREQSIZE must be at least 1 page of cookies plus some spillover
*/ */
#define OST_MAXREQSIZE (5 * 1024) #define OST_MAXREQSIZE (5 * 1024)
#define OST_MAXMEM (num_physpages*(PAGE_SIZE/512)) #define OST_MAXMEM (num_physpages*(PAGE_SIZE/128))
#define OST_NBUFS min(OST_MAXMEM/OST_BUFSIZE, OST_NBUF_MAX) #define OST_NBUFS min(OST_MAXMEM/OST_BUFSIZE, OST_NBUF_MAX)
#define PTLBD_NUM_THREADS 4 #define PTLBD_NUM_THREADS 4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment