Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
change unnecessary memory order
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzeng0 committed Oct 21, 2022
1 parent 78228d4 commit 54359d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xe/loop.cc
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ int xe_loop::run(){
goto exit_error;
}

cqe_tail = io_uring_smp_load_acquire(ring.cq.ktail);
cqe_tail = *ring.cq.ktail;

if(cqe_tail == cqe_head)
continue;
Expand Down

0 comments on commit 54359d2

Please sign in to comment.