aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcu_main.cpp
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-07-14 14:29:34 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-07-16 19:24:16 +0200
commitf16a069fd7e34c3f94527965073df3bae0e524b1 (patch)
tree7dfc353dc03950d42ec27c52c8318a3ca6621595 /src/pcu_main.cpp
parent5979fe9d8af159bbf8ea382bcd06ad43e25e209c (diff)
pcu: Use alloc_algorithm_dynamic by default
The dynamic algorithm behaves like B until there are no TFI left. This commit changes the default algorithm to to former. Ticket: #1934 Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/pcu_main.cpp')
-rw-r--r--src/pcu_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcu_main.cpp b/src/pcu_main.cpp
index 3efdd843..dc1cb15f 100644
--- a/src/pcu_main.cpp
+++ b/src/pcu_main.cpp
@@ -221,7 +221,7 @@ int main(int argc, char *argv[])
}
if (!bts->alloc_algorithm)
- bts->alloc_algorithm = alloc_algorithm_b;
+ bts->alloc_algorithm = alloc_algorithm_dynamic;
rc = pcu_l1if_open();