aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-12-25 20:24:16 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-12-25 20:36:02 +0100
commite0166a6d6ce12dfc785374b5c21307a174723023 (patch)
tree796060d4fbf43133a09b41795eb3b1152e9c4bac
parentbf0d0c7c32efae34e572db74ef1f483102c86074 (diff)
alloc: Add a note that the tx window handling differs from rx
It looks like the code is different (without a reason) a good reason.
-rw-r--r--src/gprs_rlcmac_ts_alloc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gprs_rlcmac_ts_alloc.cpp b/src/gprs_rlcmac_ts_alloc.cpp
index 44c0efb2..f48d8d4f 100644
--- a/src/gprs_rlcmac_ts_alloc.cpp
+++ b/src/gprs_rlcmac_ts_alloc.cpp
@@ -422,6 +422,7 @@ int alloc_algorithm_b(struct gprs_rlcmac_bts *bts,
if (!pdch->is_enabled()) {
LOGP(DRLCMAC, LOGL_DEBUG, "- Skipping TS %d, "
"because not enabled\n", ts);
+ #warning "Why isn't it needed to increase the window?"
continue;
}
/* check if TSC changes */
@@ -435,6 +436,7 @@ int alloc_algorithm_b(struct gprs_rlcmac_bts *bts,
"configured with the same TSC!\n",
ts, tbf->trx->trx_no);
/* increase window for Type 1 */
+ #warning "Why isn't it needed to check for tx_window"
if (Type == 1)
i++;
continue;