Changeset 0376da9
- Timestamp:
- Jul 10, 2020, 12:59:46 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 59f74a2, ab44413
- Parents:
- 2fc94ced (diff), fb98462 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io.cfa
r2fc94ced r0376da9 216 216 // adjust the size according to the parameters 217 217 if ((params.features & IORING_FEAT_SINGLE_MMAP) != 0) { 218 cq ->ring_sz = sq->ring_sz = max(cq->ring_sz, sq->ring_sz);218 cq.ring_sz = sq.ring_sz = max(cq.ring_sz, sq.ring_sz); 219 219 } 220 220 #endif … … 230 230 // mmap the Completion Queue into existence (may or may not be needed) 231 231 if ((params.features & IORING_FEAT_SINGLE_MMAP) != 0) { 232 cq ->ring_ptr = sq->ring_ptr;232 cq.ring_ptr = sq.ring_ptr; 233 233 } 234 234 else … … 440 440 static [int, bool] __drain_io( & struct __io_data ring, * sigset_t mask, int waitcnt, bool in_kernel ) { 441 441 /* paranoid */ verify( !kernelTLS.preemption_state.enabled ); 442 const uint32_t smask = *ring.submit_q.mask;443 442 444 443 unsigned to_submit = 0;
Note: See TracChangeset
for help on using the changeset viewer.