removed warning in RLC if LCID isn't valid for all methods called by BSR procedure

this was causing many warnings in the log because the BSR checks with RLC
if a bearer has data even if it doesn't exist
This commit is contained in:
Andre Puschmann 2019-02-10 20:28:04 +01:00
parent 0aef6f8d4a
commit 94481c1963
1 changed files with 0 additions and 6 deletions

View File

@ -262,8 +262,6 @@ bool rlc::has_data(uint32_t lcid)
pthread_rwlock_rdlock(&rwlock);
if (valid_lcid(lcid)) {
has_data = rlc_array.at(lcid)->has_data();
} else {
rlc_log->warning("LCID %d doesn't exist.\n", lcid);
}
pthread_rwlock_unlock(&rwlock);
@ -277,8 +275,6 @@ uint32_t rlc::get_buffer_state(uint32_t lcid)
pthread_rwlock_rdlock(&rwlock);
if (valid_lcid(lcid)) {
ret = rlc_array.at(lcid)->get_buffer_state();
} else {
rlc_log->warning("LCID %d doesn't exist.\n", lcid);
}
pthread_rwlock_unlock(&rwlock);
@ -293,8 +289,6 @@ uint32_t rlc::get_total_mch_buffer_state(uint32_t lcid)
if (valid_lcid_mrb(lcid)) {
ret = rlc_array_mrb.at(lcid)->get_buffer_state();
} else {
rlc_log->warning("LCID %d doesn't exist.\n", lcid);
}
pthread_rwlock_unlock(&rwlock);