aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcu_vty.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-01-14 13:20:55 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2021-01-18 11:54:57 +0100
commitad79b857cd1683a263a8602b14e9c4aaba3178b6 (patch)
tree95ede3d6512fb8b812e8b1b43f397dbf1d97b13f /src/pcu_vty.c
parente8dcf64881f0771cf695d7dc1102481dde7201b4 (diff)
Move cs_downgrade_threshold field from BTS to PCU
Diffstat (limited to 'src/pcu_vty.c')
-rw-r--r--src/pcu_vty.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/pcu_vty.c b/src/pcu_vty.c
index c830400c..e0edf91c 100644
--- a/src/pcu_vty.c
+++ b/src/pcu_vty.c
@@ -143,9 +143,9 @@ static int config_write_pcu(struct vty *vty)
else
vty_out(vty, " no cs threshold%s", VTY_NEWLINE);
- if (bts->cs_downgrade_threshold)
+ if (the_pcu->vty.cs_downgrade_threshold)
vty_out(vty, " cs downgrade-threshold %d%s",
- bts->cs_downgrade_threshold, VTY_NEWLINE);
+ the_pcu->vty.cs_downgrade_threshold, VTY_NEWLINE);
else
vty_out(vty, " no cs downgrade-threshold%s", VTY_NEWLINE);
@@ -947,10 +947,7 @@ DEFUN_ATTR(cfg_pcu_cs_downgrade_thrsh,
CS_STR CS_DOWNGRADE_STR "downgrade if less octets left\n",
CMD_ATTR_IMMEDIATE)
{
- struct gprs_rlcmac_bts *bts = bts_main_data();
-
- bts->cs_downgrade_threshold = atoi(argv[0]);
-
+ the_pcu->vty.cs_downgrade_threshold = atoi(argv[0]);
return CMD_SUCCESS;
}
@@ -960,10 +957,7 @@ DEFUN_ATTR(cfg_pcu_no_cs_downgrade_thrsh,
NO_STR CS_STR CS_DOWNGRADE_STR,
CMD_ATTR_IMMEDIATE)
{
- struct gprs_rlcmac_bts *bts = bts_main_data();
-
- bts->cs_downgrade_threshold = 0;
-
+ the_pcu->vty.cs_downgrade_threshold = 0;
return CMD_SUCCESS;
}