Changes in libcfa/src/concurrency/io.cfa [edf247b:262fafd9]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io.cfa
redf247b r262fafd9 230 230 const unsigned long long cutoff = calc_cutoff(ctsc, ctx->cq.id, ctxs_count, io.data, io.tscs, __shard_factor.io); 231 231 const unsigned long long age = moving_average(ctsc, io.tscs[target].tv, io.tscs[target].ma); 232 __cfadbg_print_safe(io, "Kernel I/O: Help attempt on %u from %u, age %'llu vs cutoff %'llu, %s\n", target, ctx->cq.id, age, cutoff, age > cutoff ? "yes" : "no");232 __cfadbg_print_safe(io, "Kernel I/O: Help attempt on %u from %u, age %'llu vs cutoff %'llu, %s\n", target, this, age, cutoff, age > cutoff ? "yes" : "no"); 233 233 if(age <= cutoff) break HELP; 234 234 … … 635 635 636 636 // 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 } 638 641 639 642 // Allocation was successful … … 665 668 666 669 /* paranoid */ verify( sqe->user_data == (uintptr_t)&future ); 667 __submit ( ctx, &idx, 1, true);670 __submit_only( ctx, &idx, 1 ); 668 671 669 672 /* paranoid */ verify( proc == __cfaabi_tls.this_processor ); … … 676 679 iovec iov; 677 680 __atomic_acquire( &proc->io.ctx->cq.lock ); 681 682 __attribute__((used)) volatile bool was_reset = false; 678 683 679 684 with( proc->idle_wctx) { … … 687 692 iov.iov_len = sizeof(eventfd_t); 688 693 __kernel_read(proc, *ftr, iov, evfd ); 694 ftr->result = 0xDEADDEAD; 695 *((eventfd_t *)rdbuf) = 0xDEADDEADDEADDEAD; 696 was_reset = true; 689 697 } 690 698 } 691 699 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 } 694 705 695 706 ready_schedule_lock(); 696 707 __cfa_do_drain( proc->io.ctx, proc->cltr ); 697 708 ready_schedule_unlock(); 709 710 asm volatile ("" :: "m" (was_reset)); 698 711 } 699 712 #endif
Note:
See TracChangeset
for help on using the changeset viewer.