alloc_algorithm_b: For type 1 MS, limit number of donwlink TS to 5

The algorithm does not support more than 5 TS on downlink for type 1 MS.
Supporting more than 5 TS would require adding more complexity to this
algorithm. MS that support more than 4 (or 5) TS on downlink are rare,
if they really exist.
This commit is contained in:
Andreas Eversberg 2014-01-04 15:17:22 +01:00 committed by Holger Hans Peter Freyther
parent b03d427b08
commit ccde4c462d
1 changed files with 6 additions and 0 deletions

View File

@ -235,6 +235,12 @@ inc_window:
"window reached maximum alowed Rx size\n");
break;
}
if (ms_type == 1 && rx_window_size == 5) {
LOGP(DRLCMAC, LOGL_DEBUG, "- Done, because slots / "
"window reached maximum supported Rx size of "
"this algorithm\n");
break;
}
}
LOGP(DRLCMAC, LOGL_DEBUG, "- Selected slots for RX: "