req_ctx: Use only 10 small buffers, and no large ones

This commit is contained in:
Harald Welte
2016-02-28 19:32:01 +01:00
parent 203ea19227
commit 4dc3db7beb

View File

@@ -25,8 +25,8 @@
#include "trace.h"
#include "req_ctx.h"
#define NUM_RCTX_SMALL 0
#define NUM_RCTX_LARGE 20
#define NUM_RCTX_SMALL 10
#define NUM_RCTX_LARGE 0
#define NUM_REQ_CTX (NUM_RCTX_SMALL+NUM_RCTX_LARGE)