Ignore:
Timestamp:
Mar 29, 2022, 4:41:30 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
Children:
4598e03
Parents:
edf247b (diff), 6e47b49 (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
libcfa/src/concurrency
Files:
4 edited

Legend:

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

    redf247b rd4da1535  
    635635
    636636                        // We can proceed to the fast path
    637                         if( !__alloc(ctx, &idx, 1) ) return false;
     637                        if( !__alloc(ctx, &idx, 1) ) {
     638                                /* paranoid */ verify( false ); // for now check if this happens, next time just abort the sleep.
     639                                return false;
     640                        }
    638641
    639642                        // Allocation was successful
     
    665668
    666669                        /* paranoid */ verify( sqe->user_data == (uintptr_t)&future );
    667                         __submit( ctx, &idx, 1, true );
     670                        __submit_only( ctx, &idx, 1 );
    668671
    669672                        /* paranoid */ verify( proc == __cfaabi_tls.this_processor );
     
    676679                        iovec iov;
    677680                        __atomic_acquire( &proc->io.ctx->cq.lock );
     681
     682                        __attribute__((used)) volatile bool was_reset = false;
    678683
    679684                        with( proc->idle_wctx) {
     
    687692                                        iov.iov_len  = sizeof(eventfd_t);
    688693                                        __kernel_read(proc, *ftr, iov, evfd );
     694                                        ftr->result = 0xDEADDEAD;
     695                                        *((eventfd_t *)rdbuf) = 0xDEADDEADDEADDEAD;
     696                                        was_reset = true;
    689697                                }
    690698                        }
    691699
    692                         __ioarbiter_flush( *proc->io.ctx );
    693                         ioring_syscsll( *proc->io.ctx, 1, IORING_ENTER_GETEVENTS);
     700                        if( !__atomic_load_n( &proc->do_terminate, __ATOMIC_SEQ_CST ) ) {
     701                                __ioarbiter_flush( *proc->io.ctx );
     702                                proc->idle_wctx.sleep_time = rdtscl();
     703                                ioring_syscsll( *proc->io.ctx, 1, IORING_ENTER_GETEVENTS);
     704                        }
    694705
    695706                        ready_schedule_lock();
    696707                        __cfa_do_drain( proc->io.ctx, proc->cltr );
    697708                        ready_schedule_unlock();
     709
     710                        asm volatile ("" :: "m" (was_reset));
    698711                }
    699712        #endif
  • libcfa/src/concurrency/kernel.cfa

    redf247b rd4da1535  
    682682        this->idle_wctx.sem = 1;
    683683
     684        this->idle_wctx.wake_time = rdtscl();
     685
    684686        eventfd_t val;
    685687        val = 1;
  • libcfa/src/concurrency/kernel.hfa

    redf247b rd4da1535  
    7474        // unused if not using io_uring for idle sleep
    7575        io_future_t * ftr;
     76
     77        volatile unsigned long long wake_time;
     78        volatile unsigned long long sleep_time;
    7679};
    7780
  • libcfa/src/concurrency/kernel/startup.cfa

    redf247b rd4da1535  
    558558
    559559        idle_wctx.sem = 0;
     560        idle_wctx.wake_time = 0;
    560561
    561562        // I'm assuming these two are reserved for standard input and output
Note: See TracChangeset for help on using the changeset viewer.