tiny cosmetic changes

This commit is contained in:
Andre Puschmann 2018-07-25 15:09:54 +02:00
parent ee5b055829
commit 5444b2a0b7
2 changed files with 9 additions and 6 deletions

View File

@ -70,11 +70,11 @@ void pdcp_entity::init(srsue::rlc_interface_pdcp *rlc_,
cfg.sn_len = 0;
sn_len_bytes = 0;
if(cfg.is_control) {
if (cfg.is_control) {
cfg.sn_len = 5;
sn_len_bytes = 1;
}
if(cfg.is_data) {
if (cfg.is_data) {
cfg.sn_len = 12;
sn_len_bytes = 2;
}
@ -89,6 +89,7 @@ void pdcp_entity::reestablish() {
tx_count = 0;
rx_count = 0;
} else {
// Only reset counter in RLC-UM
if (rlc->rb_is_um(lcid)) {
tx_count = 0;
rx_count = 0;
@ -96,11 +97,13 @@ void pdcp_entity::reestablish() {
}
}
// Used to stop/pause the entity (called on RRC conn release)
void pdcp_entity::reset()
{
active = false;
if(log)
active = false;
if (log) {
log->debug("Reset %s\n", rrc->get_rb_name(lcid).c_str());
}
}
bool pdcp_entity::is_active()

View File

@ -208,7 +208,7 @@ void rlc::write_sdu(uint32_t lcid, byte_buffer_t *sdu, bool blocking)
rlc_array.at(lcid)->write_sdu_nb(sdu);
}
} else {
rlc_log->warning("Writing SDU: lcid=%d. Deallocating sdu\n", lcid);
rlc_log->warning("RLC LCID %d doesn't exist. Deallocating SDU\n", lcid);
byte_buffer_pool::get_instance()->deallocate(sdu);
}
pthread_rwlock_unlock(&rwlock);
@ -220,7 +220,7 @@ void rlc::write_sdu_mch(uint32_t lcid, byte_buffer_t *sdu)
if (valid_lcid_mrb(lcid)) {
rlc_array_mrb.at(lcid)->write_sdu_nb(sdu);
} else {
rlc_log->warning("Writing SDU: lcid=%d. Deallocating sdu\n", lcid);
rlc_log->warning("RLC LCID %d doesn't exist. Deallocating SDU\n", lcid);
byte_buffer_pool::get_instance()->deallocate(sdu);
}
pthread_rwlock_unlock(&rwlock);