Skip to content

Commit c805e0f

Browse files
herlesupreethcodebot
authored andcommitted
sched: remove check for single UL or DL PDCCH per UE per slot in PDCCH allocator
1 parent 6dd2db3 commit c805e0f

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

lib/scheduler/pdcch_scheduling/pdcch_resource_allocator_impl.cpp

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)