aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_rlcmac_sched.cpp
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2018-01-24 11:00:17 +0100
committerMax <msuraev@sysmocom.de>2018-01-24 11:06:55 +0100
commitcac6b666381d5766d49694b1bce8baf275bbe9e1 (patch)
treecacdbf49c3e64dd76e5115223ac68750d74b0063 /src/gprs_rlcmac_sched.cpp
parent088c7df571e3044b286200cc112e7e24b2751491 (diff)
TBF: make poll state internal
* add functions/macros for setting TBF's poll state * add function for checking TBF's poll state Change-Id: I6db1c4e7bd0a49aeb5e391afe371c36b96c6a702 Related: OS#1539
Diffstat (limited to 'src/gprs_rlcmac_sched.cpp')
-rw-r--r--src/gprs_rlcmac_sched.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gprs_rlcmac_sched.cpp b/src/gprs_rlcmac_sched.cpp
index 3f9fcb1f..ebf4714c 100644
--- a/src/gprs_rlcmac_sched.cpp
+++ b/src/gprs_rlcmac_sched.cpp
@@ -49,8 +49,7 @@ static uint32_t sched_poll(BTS *bts,
if (ul_tbf->trx->trx_no != trx || !ul_tbf->is_control_ts(ts))
continue;
/* polling for next uplink block */
- if (ul_tbf->poll_state == GPRS_RLCMAC_POLL_SCHED
- && ul_tbf->poll_fn == poll_fn)
+ if (ul_tbf->poll_scheduled() && ul_tbf->poll_fn == poll_fn)
*poll_tbf = ul_tbf;
if (ul_tbf->ul_ack_state_is(GPRS_RLCMAC_UL_ACK_SEND_ACK))
*ul_ack_tbf = ul_tbf;
@@ -69,8 +68,7 @@ states? */
if (dl_tbf->trx->trx_no != trx || !dl_tbf->is_control_ts(ts))
continue;
/* polling for next uplink block */
- if (dl_tbf->poll_state == GPRS_RLCMAC_POLL_SCHED
- && dl_tbf->poll_fn == poll_fn)
+ if (dl_tbf->poll_scheduled() && dl_tbf->poll_fn == poll_fn)
*poll_tbf = dl_tbf;
if (dl_tbf->dl_ass_state_is(GPRS_RLCMAC_DL_ASS_SEND_ASS))
*dl_ass_tbf = dl_tbf;