File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
lib/scheduler/pdcch_scheduling Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -157,13 +157,6 @@ pdcch_ul_information* pdcch_resource_allocator_impl::alloc_ul_pdcch_helper(cell_
157157 return nullptr ;
158158 }
159159
160- // Verify RNTI is unique.
161- for (const pdcch_ul_information& pdcch : slot_alloc.result .dl .ul_pdcchs ) {
162- if (pdcch.ctx .rnti == rnti) {
163- return nullptr ;
164- }
165- }
166-
167160 // Create PDCCH list element.
168161 pdcch_ul_information& pdcch = slot_alloc.result .dl .ul_pdcchs .emplace_back ();
169162 pdcch.ctx .bwp_cfg = &bwp_cfg;
@@ -207,13 +200,6 @@ pdcch_dl_information* pdcch_resource_allocator_impl::alloc_dl_pdcch_helper(cell_
207200 return nullptr ;
208201 }
209202
210- // Verify RNTI is unique.
211- for (const pdcch_dl_information& pdcch : slot_alloc.result .dl .dl_pdcchs ) {
212- if (pdcch.ctx .rnti == rnti) {
213- return nullptr ;
214- }
215- }
216-
217203 // Create PDCCH list element.
218204 pdcch_dl_information& pdcch = slot_alloc.result .dl .dl_pdcchs .emplace_back ();
219205 pdcch.ctx .bwp_cfg = &bwp_cfg;
You can’t perform that action at this time.
0 commit comments