From 2935def9fc7d291e4ee675f072e0d10b707a4733 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Wed, 4 Apr 2018 17:07:40 +0200 Subject: [PATCH] remove mutex in rlc stress tester --- lib/test/upper/rlc_am_stress_test.cc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/test/upper/rlc_am_stress_test.cc b/lib/test/upper/rlc_am_stress_test.cc index 52d4176de..e844c5a77 100644 --- a/lib/test/upper/rlc_am_stress_test.cc +++ b/lib/test/upper/rlc_am_stress_test.cc @@ -35,7 +35,6 @@ #include #include #include -#include #define SDU_SIZE 1500 @@ -56,8 +55,6 @@ typedef struct { float opp_sdu_ratio; } stress_test_args_t; -boost::mutex mutex; - void parse_args(stress_test_args_t *args, int argc, char *argv[]) { // Command line only options @@ -147,7 +144,6 @@ private: // generate MAC opportunities of random size or with fixed ratio float r = opp_sdu_ratio ? opp_sdu_ratio : (float)rand()/RAND_MAX; int opp_size = r*SDU_SIZE; - mutex.lock(); uint32_t buf_state = rlc1->get_buffer_state(1); if (buf_state) { int read = rlc1->read_pdu(1, pdu->msg, opp_size); @@ -162,7 +158,6 @@ private: } } } - mutex.unlock(); } running = false; byte_buffer_pool::get_instance()->deallocate(pdu); @@ -344,13 +339,8 @@ void stress_test(stress_test_args_t args) for (uint32_t i = 0; i < args.test_duration_sec; i++) { // if enabled, mimic reestablishment every second if (args.reestablish) { - // lock mutex during reestablish to prevent a RLC PDU that is already been transmitted before - // resetting the tx'ing RLC entity, but not yet received before resetting the - // rx'ing RLC entity to screw the test - mutex.lock(); rlc1.reestablish(); rlc2.reestablish(); - mutex.unlock(); } usleep(1e6); }