equal
deleted
inserted
replaced
|
1 [Global] |
|
2 # mbuf manager memory constraints - no bearing on the pools; the key name has been kept for backward compatibility |
|
3 # - minSize has no meaning when using mbuf manager's RHeap/user-chunk model, for the DChunk model it is completely ignored |
|
4 # - format = min/init total memory size (in bytes) |
|
5 MBufPoolSize=393216,393216 |
|
6 |
|
7 # mbuf size allocation information |
|
8 # - mbuf size guidelines; |
|
9 # a. 128 byte is mandatory for some (poorly writen) legacy code that assumes the existance of mbufs of this size |
|
10 # b. < 128 byte is acceptable, but could break some (poorly written) legacy code that assumes that minimum mbuf size is 128 |
|
11 # - format = mbuf size(in bytes), initial allocation (in mbufs), minimum growth (in mbufs), automatic growth threshold (in mbufs) |
|
12 MBufSizeAllocInfo1 = 128, 128, 64, 48 |
|
13 MBufSizeAllocInfo2 = 1600, 64, 16, 12 |