aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-08-24 21:13:31 +0200
committerIvan Kluchnikov <kluchnikovi@gmail.com>2013-10-18 15:17:13 +0400
commitbcafdf8d902baf831642de5b21ebb91ad299a509 (patch)
treee0ba78e1253aff7a3a74510d6ca9874f934a4c2d /src
parent443c822f77dd8ef08d7524a093670ca875340d11 (diff)
tbf: Warn about copy and paste between different tbf alloc routines
These need to be re-factored to use a common allocation routine.
Diffstat (limited to 'src')
-rw-r--r--src/gprs_rlcmac_data.cpp2
-rw-r--r--src/tbf.cpp1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/gprs_rlcmac_data.cpp b/src/gprs_rlcmac_data.cpp
index 294753d1..17e1fb9b 100644
--- a/src/gprs_rlcmac_data.cpp
+++ b/src/gprs_rlcmac_data.cpp
@@ -238,6 +238,7 @@ static struct gprs_rlcmac_tbf *alloc_ul_tbf(int8_t use_trx, uint8_t ms_class,
struct gprs_rlcmac_tbf *tbf;
uint8_t tfi;
+#warning "Copy and paste with tbf_new_dl_assignment"
/* create new TBF, use sme TRX as DL TBF */
tfi = tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx, use_trx);
if (tfi < 0) {
@@ -1174,6 +1175,7 @@ int gprs_rlcmac_rcv_rach(uint8_t ra, uint32_t Fn, int16_t qta)
"(AGCH)\n");
} else {
// Create new TBF
+ #warning "Copy and pate with other routines.."
tfi = tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx, -1);
if (tfi < 0) {
LOGP(DRLCMAC, LOGL_NOTICE, "No PDCH ressource\n");
diff --git a/src/tbf.cpp b/src/tbf.cpp
index 8dad6bc5..21b58ac2 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -141,6 +141,7 @@ static int tbf_new_dl_assignment(struct gprs_rlcmac_bts *bts,
}
// Create new TBF (any TRX)
+#warning "Copy and paste with alloc_ul_tbf"
tfi = tfi_find_free(bts, GPRS_RLCMAC_DL_TBF, &trx, use_trx);
if (tfi < 0) {
LOGP(DRLCMAC, LOGL_NOTICE, "No PDCH resource\n");