increase size of buffer_pool

- This solves an issue where in the worst-case an RLC AM instance would
  block because no new data nor control PDUs could be created to flush
  the buffers, effectivly causing a system stall.
- Happens in RLC AM stress test regularly with higher drop rates.
This commit is contained in:
Andre Puschmann 2018-07-30 15:11:31 +02:00
parent a20a8b18ad
commit 2ef2baf72a
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ public:
private:
static const int POOL_SIZE = 2048;
static const int POOL_SIZE = 4096;
std::stack<buffer_t*> available;
std::vector<buffer_t*> used;
pthread_mutex_t mutex;