<p>laforge <strong>submitted</strong> this change.</p><p><a href="https://gerrit.osmocom.org/c/osmo-bsc/+/19850">View Change</a></p><div style="white-space:pre-wrap">Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, approved

</div><pre style="font-family: monospace,monospace; white-space: pre-wrap;">tests: acc_test: Test more rotating scenarios<br><br>Change-Id: I8ac8ef362af8222e6b7e302e3763811ba093db62<br>---<br>M tests/acc/acc_test.c<br>M tests/acc/acc_test.ok<br>2 files changed, 1,097 insertions(+), 8 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/tests/acc/acc_test.c b/tests/acc/acc_test.c</span><br><span>index 27b9fa8..f463a2e 100644</span><br><span>--- a/tests/acc/acc_test.c</span><br><span>+++ b/tests/acc/acc_test.c</span><br><span>@@ -197,9 +197,9 @@</span><br><span>        bts_del(bts);</span><br><span> }</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-static void test_acc_mgr_rotate(struct gsm_network *net)</span><br><span style="color: hsl(120, 100%, 40%);">+static void test_acc_mgr_rotate(struct gsm_network *net, bool barr_some, unsigned int set_len)</span><br><span> {</span><br><span style="color: hsl(0, 100%, 40%);">-     fprintf(stderr, "===%s===\n", __func__);</span><br><span style="color: hsl(120, 100%, 40%);">+    fprintf(stderr, "===%s(%s, %u)===\n", __func__, barr_some ? "true" : "false", set_len);</span><br><span>        int i;</span><br><span>       struct gsm_bts *bts = bts_init(net);</span><br><span>         struct acc_mgr *acc_mgr = &bts->acc_mgr;</span><br><span>@@ -215,13 +215,15 @@</span><br><span>      OSMO_ASSERT(acc_mgr->allowed_permanent_count == 10);</span><br><span> </span><br><span>  /* Test that rotation won't go over permanently barred ACC*/</span><br><span style="color: hsl(0, 100%, 40%);">-        fprintf(stderr, "*** Barring one ACC ***\n");</span><br><span style="color: hsl(0, 100%, 40%);">- bts->si_common.rach_control.t2 |= 0x02;</span><br><span style="color: hsl(0, 100%, 40%);">-      acc_mgr_perm_subset_changed(acc_mgr, &bts->si_common.rach_control);</span><br><span style="color: hsl(120, 100%, 40%);">+    if (barr_some) {</span><br><span style="color: hsl(120, 100%, 40%);">+              fprintf(stderr, "*** Barring one ACC ***\n");</span><br><span style="color: hsl(120, 100%, 40%);">+               bts->si_common.rach_control.t2 |= 0x02;</span><br><span style="color: hsl(120, 100%, 40%);">+            acc_mgr_perm_subset_changed(acc_mgr, &bts->si_common.rach_control);</span><br><span style="color: hsl(120, 100%, 40%);">+    }</span><br><span> </span><br><span> </span><br><span>    acc_mgr_set_rotation_time(acc_mgr, 2);</span><br><span style="color: hsl(0, 100%, 40%);">-  acc_mgr_set_len_allowed_adm(acc_mgr, 4);</span><br><span style="color: hsl(120, 100%, 40%);">+      acc_mgr_set_len_allowed_adm(acc_mgr, set_len);</span><br><span> </span><br><span>   for (i = 0; i < 20; i++) {</span><br><span>                osmo_gettimeofday_override_time.tv_sec += 2;</span><br><span>@@ -232,6 +234,16 @@</span><br><span>  bts_del(bts);</span><br><span> }</span><br><span> </span><br><span style="color: hsl(120, 100%, 40%);">+static void test_acc_mgr_rotate_all(struct gsm_network *net)</span><br><span style="color: hsl(120, 100%, 40%);">+{</span><br><span style="color: hsl(120, 100%, 40%);">+       int i;</span><br><span style="color: hsl(120, 100%, 40%);">+        for (i = 1; i <= 8; i++) {</span><br><span style="color: hsl(120, 100%, 40%);">+         test_acc_mgr_rotate(net, true, i);</span><br><span style="color: hsl(120, 100%, 40%);">+            test_acc_mgr_rotate(net, false, i);</span><br><span style="color: hsl(120, 100%, 40%);">+   }</span><br><span style="color: hsl(120, 100%, 40%);">+     test_acc_mgr_rotate(net, false, 9);</span><br><span style="color: hsl(120, 100%, 40%);">+}</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span> static void test_acc_ramp(struct gsm_network *net)</span><br><span> {</span><br><span>  fprintf(stderr, "===%s===\n", __func__);</span><br><span>@@ -494,7 +506,7 @@</span><br><span> </span><br><span>         test_acc_mgr_no_ramp(net);</span><br><span>   test_acc_mgr_manual_ramp(net);</span><br><span style="color: hsl(0, 100%, 40%);">-  test_acc_mgr_rotate(net);</span><br><span style="color: hsl(120, 100%, 40%);">+     test_acc_mgr_rotate_all(net);</span><br><span>        test_acc_ramp(net);</span><br><span>  test_acc_ramp2(net);</span><br><span>         test_acc_ramp3(net);</span><br><span>diff --git a/tests/acc/acc_test.ok b/tests/acc/acc_test.ok</span><br><span>index afe4ef0..866502e 100644</span><br><span>--- a/tests/acc/acc_test.ok</span><br><span>+++ b/tests/acc/acc_test.ok</span><br><span>@@ -344,7 +344,412 @@</span><br><span> (bts=0) ACC: New ACC allowed subset 0x24c (active_len=4, ramp_len=4, adm_len=4, perm_len=4, rotation=off)</span><br><span> pcu_info_update(): t2=0x01 t3=0xb3, allowed: 2 3 6 9</span><br><span> BTS deallocated OK in test_acc_mgr_manual_ramp()</span><br><span style="color: hsl(0, 100%, 40%);">-===test_acc_mgr_rotate===</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 1)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+*** Barring one ACC ***</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x1ff (active_len=9, ramp_len=10, adm_len=10, perm_len=9, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x1ff -> 0x100 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xff, allowed: 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x100 -> 0x001 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfe, allowed: 0</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x001 -> 0x002 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfd, allowed: 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x002 -> 0x004 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfb, allowed: 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x004 -> 0x008 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf7, allowed: 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x008 -> 0x010 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xef, allowed: 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x010 -> 0x020 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xdf, allowed: 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x020 -> 0x040 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xbf, allowed: 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x040 -> 0x080 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x7f, allowed: 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x080 -> 0x100 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xff, allowed: 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x100 -> 0x001 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfe, allowed: 0</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x001 -> 0x002 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfd, allowed: 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x002 -> 0x004 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfb, allowed: 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x004 -> 0x008 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf7, allowed: 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x008 -> 0x010 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xef, allowed: 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x010 -> 0x020 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xdf, allowed: 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x020 -> 0x040 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xbf, allowed: 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x040 -> 0x080 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x7f, allowed: 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x080 -> 0x100 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xff, allowed: 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x100 -> 0x001 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfe, allowed: 0</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x001 -> 0x002 (active_len=1, ramp_len=10, adm_len=1, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfd, allowed: 1</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 1)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x200 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xff, allowed: 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x200 -> 0x001 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfe, allowed: 0</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x001 -> 0x002 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfd, allowed: 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x002 -> 0x004 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfb, allowed: 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x004 -> 0x008 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf7, allowed: 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x008 -> 0x010 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xef, allowed: 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x010 -> 0x020 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xdf, allowed: 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x020 -> 0x040 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xbf, allowed: 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x040 -> 0x080 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x7f, allowed: 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x080 -> 0x100 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xff, allowed: 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x100 -> 0x200 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xff, allowed: 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x200 -> 0x001 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfe, allowed: 0</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x001 -> 0x002 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfd, allowed: 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x002 -> 0x004 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfb, allowed: 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x004 -> 0x008 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf7, allowed: 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x008 -> 0x010 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xef, allowed: 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x010 -> 0x020 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xdf, allowed: 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x020 -> 0x040 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xbf, allowed: 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x040 -> 0x080 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x7f, allowed: 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x080 -> 0x100 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xff, allowed: 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x100 -> 0x200 (active_len=1, ramp_len=10, adm_len=1, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xff, allowed: 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 2)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+*** Barring one ACC ***</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x1ff (active_len=9, ramp_len=10, adm_len=10, perm_len=9, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x1ff -> 0x180 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7f, allowed: 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x180 -> 0x101 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xfe, allowed: 0 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x101 -> 0x003 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfc, allowed: 0 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x003 -> 0x006 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf9, allowed: 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x006 -> 0x00c (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf3, allowed: 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00c -> 0x018 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe7, allowed: 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x018 -> 0x030 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xcf, allowed: 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x030 -> 0x060 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x9f, allowed: 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x060 -> 0x0c0 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x3f, allowed: 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0c0 -> 0x180 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7f, allowed: 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x180 -> 0x101 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xfe, allowed: 0 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x101 -> 0x003 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfc, allowed: 0 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x003 -> 0x006 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf9, allowed: 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x006 -> 0x00c (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf3, allowed: 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00c -> 0x018 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe7, allowed: 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x018 -> 0x030 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xcf, allowed: 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x030 -> 0x060 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x9f, allowed: 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x060 -> 0x0c0 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x3f, allowed: 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0c0 -> 0x180 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7f, allowed: 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x180 -> 0x101 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xfe, allowed: 0 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x101 -> 0x003 (active_len=2, ramp_len=10, adm_len=2, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfc, allowed: 0 1</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 2)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x300 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xff, allowed: 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x300 -> 0x201 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xfe, allowed: 0 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x201 -> 0x003 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfc, allowed: 0 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x003 -> 0x006 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf9, allowed: 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x006 -> 0x00c (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf3, allowed: 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00c -> 0x018 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe7, allowed: 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x018 -> 0x030 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xcf, allowed: 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x030 -> 0x060 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x9f, allowed: 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x060 -> 0x0c0 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x3f, allowed: 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0c0 -> 0x180 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7f, allowed: 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x180 -> 0x300 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xff, allowed: 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x300 -> 0x201 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xfe, allowed: 0 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x201 -> 0x003 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xfc, allowed: 0 1</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x003 -> 0x006 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf9, allowed: 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x006 -> 0x00c (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf3, allowed: 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00c -> 0x018 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe7, allowed: 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x018 -> 0x030 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xcf, allowed: 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x030 -> 0x060 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x9f, allowed: 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x060 -> 0x0c0 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x3f, allowed: 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0c0 -> 0x180 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7f, allowed: 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x180 -> 0x300 (active_len=2, ramp_len=10, adm_len=2, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xff, allowed: 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 3)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+*** Barring one ACC ***</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x1ff (active_len=9, ramp_len=10, adm_len=10, perm_len=9, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x1ff -> 0x1c0 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3f, allowed: 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c0 -> 0x181 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7e, allowed: 0 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x181 -> 0x103 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xfc, allowed: 0 1 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x103 -> 0x007 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf8, allowed: 0 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x007 -> 0x00e (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf1, allowed: 1 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00e -> 0x01c (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe3, allowed: 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01c -> 0x038 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc7, allowed: 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x038 -> 0x070 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x8f, allowed: 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x070 -> 0x0e0 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x1f, allowed: 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0e0 -> 0x1c0 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3f, allowed: 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c0 -> 0x181 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7e, allowed: 0 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x181 -> 0x103 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xfc, allowed: 0 1 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x103 -> 0x007 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf8, allowed: 0 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x007 -> 0x00e (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf1, allowed: 1 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00e -> 0x01c (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe3, allowed: 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01c -> 0x038 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc7, allowed: 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x038 -> 0x070 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x8f, allowed: 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x070 -> 0x0e0 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x1f, allowed: 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0e0 -> 0x1c0 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3f, allowed: 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c0 -> 0x181 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x7e, allowed: 0 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x181 -> 0x103 (active_len=3, ramp_len=10, adm_len=3, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xfc, allowed: 0 1 8</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 3)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x380 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x7f, allowed: 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x380 -> 0x301 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xfe, allowed: 0 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x301 -> 0x203 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xfc, allowed: 0 1 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x203 -> 0x007 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf8, allowed: 0 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x007 -> 0x00e (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf1, allowed: 1 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00e -> 0x01c (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe3, allowed: 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01c -> 0x038 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc7, allowed: 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x038 -> 0x070 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x8f, allowed: 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x070 -> 0x0e0 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x1f, allowed: 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0e0 -> 0x1c0 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3f, allowed: 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c0 -> 0x380 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x7f, allowed: 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x380 -> 0x301 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xfe, allowed: 0 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x301 -> 0x203 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xfc, allowed: 0 1 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x203 -> 0x007 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf8, allowed: 0 1 2</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x007 -> 0x00e (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf1, allowed: 1 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00e -> 0x01c (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe3, allowed: 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01c -> 0x038 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc7, allowed: 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x038 -> 0x070 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x8f, allowed: 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x070 -> 0x0e0 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x1f, allowed: 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0e0 -> 0x1c0 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3f, allowed: 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c0 -> 0x380 (active_len=3, ramp_len=10, adm_len=3, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x7f, allowed: 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 4)===</span><br><span> (bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span> BTS allocation OK in test_acc_mgr_rotate()</span><br><span> *** Barring one ACC ***</span><br><span>@@ -413,6 +818,678 @@</span><br><span> (bts=0) ACC: rotate ACC allowed active subset 0x1c1 -> 0x183 (active_len=4, ramp_len=10, adm_len=4, perm_len=9, rotation=on)</span><br><span> pcu_info_update(): t2=0x02 t3=0x7c, allowed: 0 1 7 8</span><br><span> BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 4)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x3c0 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x3f, allowed: 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c0 -> 0x381 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x7e, allowed: 0 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x381 -> 0x303 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xfc, allowed: 0 1 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x303 -> 0x207 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xf8, allowed: 0 1 2 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x207 -> 0x00f (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf0, allowed: 0 1 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00f -> 0x01e (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe1, allowed: 1 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01e -> 0x03c (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc3, allowed: 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03c -> 0x078 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x87, allowed: 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x078 -> 0x0f0 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x0f, allowed: 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0f0 -> 0x1e0 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1f, allowed: 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e0 -> 0x3c0 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x3f, allowed: 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c0 -> 0x381 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x7e, allowed: 0 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x381 -> 0x303 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xfc, allowed: 0 1 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x303 -> 0x207 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xf8, allowed: 0 1 2 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x207 -> 0x00f (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xf0, allowed: 0 1 2 3</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x00f -> 0x01e (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe1, allowed: 1 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01e -> 0x03c (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc3, allowed: 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03c -> 0x078 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x87, allowed: 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x078 -> 0x0f0 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x0f, allowed: 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0f0 -> 0x1e0 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1f, allowed: 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e0 -> 0x3c0 (active_len=4, ramp_len=10, adm_len=4, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x3f, allowed: 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 5)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+*** Barring one ACC ***</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x1ff (active_len=9, ramp_len=10, adm_len=10, perm_len=9, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x1ff -> 0x1f0 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0f, allowed: 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f0 -> 0x1e1 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1e, allowed: 0 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e1 -> 0x1c3 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3c, allowed: 0 1 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c3 -> 0x187 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x78, allowed: 0 1 2 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x187 -> 0x10f (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xf0, allowed: 0 1 2 3 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x10f -> 0x01f (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe0, allowed: 0 1 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01f -> 0x03e (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc1, allowed: 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03e -> 0x07c (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x83, allowed: 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07c -> 0x0f8 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x07, allowed: 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0f8 -> 0x1f0 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0f, allowed: 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f0 -> 0x1e1 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1e, allowed: 0 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e1 -> 0x1c3 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3c, allowed: 0 1 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c3 -> 0x187 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x78, allowed: 0 1 2 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x187 -> 0x10f (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xf0, allowed: 0 1 2 3 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x10f -> 0x01f (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe0, allowed: 0 1 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01f -> 0x03e (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc1, allowed: 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03e -> 0x07c (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x83, allowed: 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07c -> 0x0f8 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x07, allowed: 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0f8 -> 0x1f0 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0f, allowed: 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f0 -> 0x1e1 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1e, allowed: 0 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e1 -> 0x1c3 (active_len=5, ramp_len=10, adm_len=5, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x3c, allowed: 0 1 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 5)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x3e0 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x1f, allowed: 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e0 -> 0x3c1 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x3e, allowed: 0 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c1 -> 0x383 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x7c, allowed: 0 1 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x383 -> 0x307 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xf8, allowed: 0 1 2 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x307 -> 0x20f (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xf0, allowed: 0 1 2 3 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x20f -> 0x01f (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe0, allowed: 0 1 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01f -> 0x03e (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc1, allowed: 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03e -> 0x07c (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x83, allowed: 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07c -> 0x0f8 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x07, allowed: 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0f8 -> 0x1f0 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0f, allowed: 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f0 -> 0x3e0 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x1f, allowed: 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e0 -> 0x3c1 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x3e, allowed: 0 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c1 -> 0x383 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x7c, allowed: 0 1 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x383 -> 0x307 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xf8, allowed: 0 1 2 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x307 -> 0x20f (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xf0, allowed: 0 1 2 3 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x20f -> 0x01f (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xe0, allowed: 0 1 2 3 4</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x01f -> 0x03e (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc1, allowed: 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03e -> 0x07c (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x83, allowed: 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07c -> 0x0f8 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x07, allowed: 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0f8 -> 0x1f0 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0f, allowed: 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f0 -> 0x3e0 (active_len=5, ramp_len=10, adm_len=5, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x1f, allowed: 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 6)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+*** Barring one ACC ***</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x1ff (active_len=9, ramp_len=10, adm_len=10, perm_len=9, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x1ff -> 0x1f8 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x07, allowed: 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f8 -> 0x1f1 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0e, allowed: 0 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f1 -> 0x1e3 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1c, allowed: 0 1 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e3 -> 0x1c7 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x38, allowed: 0 1 2 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c7 -> 0x18f (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x70, allowed: 0 1 2 3 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x18f -> 0x11f (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xe0, allowed: 0 1 2 3 4 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x11f -> 0x03f (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc0, allowed: 0 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03f -> 0x07e (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x81, allowed: 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07e -> 0x0fc (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x03, allowed: 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fc -> 0x1f8 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x07, allowed: 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f8 -> 0x1f1 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0e, allowed: 0 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f1 -> 0x1e3 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1c, allowed: 0 1 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e3 -> 0x1c7 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x38, allowed: 0 1 2 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1c7 -> 0x18f (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x70, allowed: 0 1 2 3 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x18f -> 0x11f (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xe0, allowed: 0 1 2 3 4 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x11f -> 0x03f (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc0, allowed: 0 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03f -> 0x07e (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x81, allowed: 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07e -> 0x0fc (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x03, allowed: 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fc -> 0x1f8 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x07, allowed: 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f8 -> 0x1f1 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0e, allowed: 0 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f1 -> 0x1e3 (active_len=6, ramp_len=10, adm_len=6, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x1c, allowed: 0 1 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 6)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x3f0 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x0f, allowed: 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f0 -> 0x3e1 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x1e, allowed: 0 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e1 -> 0x3c3 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x3c, allowed: 0 1 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c3 -> 0x387 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x78, allowed: 0 1 2 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x387 -> 0x30f (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xf0, allowed: 0 1 2 3 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x30f -> 0x21f (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xe0, allowed: 0 1 2 3 4 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x21f -> 0x03f (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc0, allowed: 0 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03f -> 0x07e (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x81, allowed: 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07e -> 0x0fc (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x03, allowed: 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fc -> 0x1f8 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x07, allowed: 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f8 -> 0x3f0 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x0f, allowed: 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f0 -> 0x3e1 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x1e, allowed: 0 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e1 -> 0x3c3 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x3c, allowed: 0 1 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c3 -> 0x387 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x78, allowed: 0 1 2 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x387 -> 0x30f (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xf0, allowed: 0 1 2 3 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x30f -> 0x21f (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xe0, allowed: 0 1 2 3 4 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x21f -> 0x03f (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0xc0, allowed: 0 1 2 3 4 5</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x03f -> 0x07e (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x81, allowed: 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07e -> 0x0fc (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x03, allowed: 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fc -> 0x1f8 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x07, allowed: 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f8 -> 0x3f0 (active_len=6, ramp_len=10, adm_len=6, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x0f, allowed: 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 7)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+*** Barring one ACC ***</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x1ff (active_len=9, ramp_len=10, adm_len=10, perm_len=9, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x1ff -> 0x1fc (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x03, allowed: 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fc -> 0x1f9 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x06, allowed: 0 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f9 -> 0x1f3 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0c, allowed: 0 1 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f3 -> 0x1e7 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x18, allowed: 0 1 2 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e7 -> 0x1cf (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x30, allowed: 0 1 2 3 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1cf -> 0x19f (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x60, allowed: 0 1 2 3 4 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x19f -> 0x13f (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xc0, allowed: 0 1 2 3 4 5 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x13f -> 0x07f (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x80, allowed: 0 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07f -> 0x0fe (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x01, allowed: 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fe -> 0x1fc (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x03, allowed: 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fc -> 0x1f9 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x06, allowed: 0 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f9 -> 0x1f3 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0c, allowed: 0 1 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f3 -> 0x1e7 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x18, allowed: 0 1 2 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1e7 -> 0x1cf (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x30, allowed: 0 1 2 3 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1cf -> 0x19f (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x60, allowed: 0 1 2 3 4 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x19f -> 0x13f (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0xc0, allowed: 0 1 2 3 4 5 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x13f -> 0x07f (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x80, allowed: 0 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07f -> 0x0fe (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x01, allowed: 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fe -> 0x1fc (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x03, allowed: 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fc -> 0x1f9 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x06, allowed: 0 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f9 -> 0x1f3 (active_len=7, ramp_len=10, adm_len=7, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x0c, allowed: 0 1 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 7)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x3f8 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x07, allowed: 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f8 -> 0x3f1 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x0e, allowed: 0 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f1 -> 0x3e3 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x1c, allowed: 0 1 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e3 -> 0x3c7 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x38, allowed: 0 1 2 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c7 -> 0x38f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x70, allowed: 0 1 2 3 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x38f -> 0x31f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xe0, allowed: 0 1 2 3 4 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x31f -> 0x23f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xc0, allowed: 0 1 2 3 4 5 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x23f -> 0x07f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x80, allowed: 0 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07f -> 0x0fe (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x01, allowed: 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fe -> 0x1fc (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x03, allowed: 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fc -> 0x3f8 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x07, allowed: 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f8 -> 0x3f1 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x0e, allowed: 0 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f1 -> 0x3e3 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x1c, allowed: 0 1 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e3 -> 0x3c7 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x38, allowed: 0 1 2 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3c7 -> 0x38f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x70, allowed: 0 1 2 3 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x38f -> 0x31f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xe0, allowed: 0 1 2 3 4 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x31f -> 0x23f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0xc0, allowed: 0 1 2 3 4 5 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x23f -> 0x07f (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x80, allowed: 0 1 2 3 4 5 6</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x07f -> 0x0fe (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x01, allowed: 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0fe -> 0x1fc (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x03, allowed: 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fc -> 0x3f8 (active_len=7, ramp_len=10, adm_len=7, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x07, allowed: 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(true, 8)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+*** Barring one ACC ***</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x1ff (active_len=9, ramp_len=10, adm_len=10, perm_len=9, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x1ff -> 0x1fe (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x01, allowed: 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fe -> 0x1fd (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x02, allowed: 0 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fd -> 0x1fb (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x04, allowed: 0 1 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fb -> 0x1f7 (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x08, allowed: 0 1 2 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f7 -> 0x1ef (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x10, allowed: 0 1 2 3 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1ef -> 0x1df (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x20, allowed: 0 1 2 3 4 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1df -> 0x1bf (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x40, allowed: 0 1 2 3 4 5 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1bf -> 0x17f (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x80, allowed: 0 1 2 3 4 5 6 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x17f -> 0x0ff (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x00, allowed: 0 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0ff -> 0x1fe (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x01, allowed: 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fe -> 0x1fd (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x02, allowed: 0 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fd -> 0x1fb (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x04, allowed: 0 1 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fb -> 0x1f7 (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x08, allowed: 0 1 2 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1f7 -> 0x1ef (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x10, allowed: 0 1 2 3 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1ef -> 0x1df (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x20, allowed: 0 1 2 3 4 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1df -> 0x1bf (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x40, allowed: 0 1 2 3 4 5 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1bf -> 0x17f (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x80, allowed: 0 1 2 3 4 5 6 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x17f -> 0x0ff (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x00, allowed: 0 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0ff -> 0x1fe (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x01, allowed: 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fe -> 0x1fd (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x02, allowed: 0 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fd -> 0x1fb (active_len=8, ramp_len=10, adm_len=8, perm_len=9, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x04, allowed: 0 1 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 8)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x3fc (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x03, allowed: 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fc -> 0x3f9 (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x06, allowed: 0 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f9 -> 0x3f3 (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x0c, allowed: 0 1 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f3 -> 0x3e7 (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x18, allowed: 0 1 2 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e7 -> 0x3cf (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x30, allowed: 0 1 2 3 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3cf -> 0x39f (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x60, allowed: 0 1 2 3 4 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x39f -> 0x33f (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xc0, allowed: 0 1 2 3 4 5 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x33f -> 0x27f (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0x80, allowed: 0 1 2 3 4 5 6 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x27f -> 0x0ff (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x00, allowed: 0 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0ff -> 0x1fe (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x01, allowed: 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fe -> 0x3fc (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x03, allowed: 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fc -> 0x3f9 (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x06, allowed: 0 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f9 -> 0x3f3 (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x0c, allowed: 0 1 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f3 -> 0x3e7 (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x18, allowed: 0 1 2 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3e7 -> 0x3cf (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x30, allowed: 0 1 2 3 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3cf -> 0x39f (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x60, allowed: 0 1 2 3 4 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x39f -> 0x33f (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0xc0, allowed: 0 1 2 3 4 5 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x33f -> 0x27f (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0x80, allowed: 0 1 2 3 4 5 6 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x27f -> 0x0ff (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x03 t3=0x00, allowed: 0 1 2 3 4 5 6 7</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x0ff -> 0x1fe (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x01, allowed: 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1fe -> 0x3fc (active_len=8, ramp_len=10, adm_len=8, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x03, allowed: 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+===test_acc_mgr_rotate(false, 9)===</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span style="color: hsl(120, 100%, 40%);">+BTS allocation OK in test_acc_mgr_rotate()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: update ACC allowed active subset 0x3ff -> 0x3fe (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x01, allowed: 1 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={2.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fe -> 0x3fd (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x02, allowed: 0 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={4.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fd -> 0x3fb (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x04, allowed: 0 1 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={6.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fb -> 0x3f7 (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x08, allowed: 0 1 2 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={8.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f7 -> 0x3ef (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x10, allowed: 0 1 2 3 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={10.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3ef -> 0x3df (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x20, allowed: 0 1 2 3 4 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={12.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3df -> 0x3bf (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x40, allowed: 0 1 2 3 4 5 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={14.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3bf -> 0x37f (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x80, allowed: 0 1 2 3 4 5 6 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={16.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x37f -> 0x2ff (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0x00, allowed: 0 1 2 3 4 5 6 7 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={18.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x2ff -> 0x1ff (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={20.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1ff -> 0x3fe (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x01, allowed: 1 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={22.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fe -> 0x3fd (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x02, allowed: 0 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={24.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fd -> 0x3fb (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x04, allowed: 0 1 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={26.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3fb -> 0x3f7 (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x08, allowed: 0 1 2 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={28.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3f7 -> 0x3ef (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x10, allowed: 0 1 2 3 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={30.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3ef -> 0x3df (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x20, allowed: 0 1 2 3 4 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={32.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3df -> 0x3bf (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x40, allowed: 0 1 2 3 4 5 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={34.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x3bf -> 0x37f (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x80, allowed: 0 1 2 3 4 5 6 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={36.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x37f -> 0x2ff (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x01 t3=0x00, allowed: 0 1 2 3 4 5 6 7 9</span><br><span style="color: hsl(120, 100%, 40%);">+sys={38.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x2ff -> 0x1ff (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x02 t3=0x00, allowed: 0 1 2 3 4 5 6 7 8</span><br><span style="color: hsl(120, 100%, 40%);">+sys={40.000000}: select()</span><br><span style="color: hsl(120, 100%, 40%);">+(bts=0) ACC: rotate ACC allowed active subset 0x1ff -> 0x3fe (active_len=9, ramp_len=10, adm_len=9, perm_len=10, rotation=on)</span><br><span style="color: hsl(120, 100%, 40%);">+pcu_info_update(): t2=0x00 t3=0x01, allowed: 1 2 3 4 5 6 7 8 9</span><br><span style="color: hsl(120, 100%, 40%);">+BTS deallocated OK in test_acc_mgr_rotate()</span><br><span> ===test_acc_ramp===</span><br><span> (bts=0) ACC: New ACC allowed subset 0x3ff (active_len=10, ramp_len=10, adm_len=10, perm_len=10, rotation=off)</span><br><span> BTS allocation OK in test_acc_ramp()</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.osmocom.org/c/osmo-bsc/+/19850">change 19850</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.osmocom.org/c/osmo-bsc/+/19850"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: osmo-bsc </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: I8ac8ef362af8222e6b7e302e3763811ba093db62 </div>
<div style="display:none"> Gerrit-Change-Number: 19850 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: pespin <pespin@sysmocom.de> </div>
<div style="display:none"> Gerrit-Reviewer: Jenkins Builder </div>
<div style="display:none"> Gerrit-Reviewer: laforge <laforge@osmocom.org> </div>
<div style="display:none"> Gerrit-MessageType: merged </div>