aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2014-01-04 15:25:18 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-15 10:39:08 +0100
commit7a16d46fdcad1df8c525f10ed344cd28d75292cc (patch)
tree47e18b249086587f81ba3b2f051a49e4bda7c71a /src
parentccde4c462d94f2800edae4c4f8ad6c2c87d1c11a (diff)
alloc_algorithm_b: Set tx_range to 8, if all 8 TS are supported by MS
Diffstat (limited to 'src')
-rw-r--r--src/gprs_rlcmac_ts_alloc.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gprs_rlcmac_ts_alloc.cpp b/src/gprs_rlcmac_ts_alloc.cpp
index a4e247a8..62d1dd18 100644
--- a/src/gprs_rlcmac_ts_alloc.cpp
+++ b/src/gprs_rlcmac_ts_alloc.cpp
@@ -378,6 +378,9 @@ static void tx_win_from_rx(const int ms_type,
}
*tx_range = (*tx_win_max - *tx_win_min + 1) & 7;
+ /* if TX window fills complete range */
+ if (*tx_range == 0)
+ *tx_range = 8;
LOGP(DRLCMAC, LOGL_DEBUG, "- TX-Window is: %d..%d\n", *tx_win_min,
*tx_win_max);
}