Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/io.cfa

    r732b406 rfb98462  
    216216                        // adjust the size according to the parameters
    217217                        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);
    219219                        }
    220220                #endif
     
    230230                        // mmap the Completion Queue into existence (may or may not be needed)
    231231                        if ((params.features & IORING_FEAT_SINGLE_MMAP) != 0) {
    232                                 cq->ring_ptr = sq->ring_ptr;
     232                                cq.ring_ptr = sq.ring_ptr;
    233233                        }
    234234                        else
     
    440440        static [int, bool] __drain_io( & struct __io_data ring, * sigset_t mask, int waitcnt, bool in_kernel ) {
    441441                /* paranoid */ verify( !kernelTLS.preemption_state.enabled );
    442                 const uint32_t smask = *ring.submit_q.mask;
    443442
    444443                unsigned to_submit = 0;
Note: See TracChangeset for help on using the changeset viewer.