We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
asavie/xdp@b4f19b9 Introduces a split umem, one half for rx, one half for tx.
This also changes how free descriptors are marked: instead of having one free list, there's now two.
However, this creates a problem: received descriptors can be sent back directly with Transmit. In this case, they are only marked as txFree and GetDescs can return them before their transmission is complete. .
Transmit
txFree
GetDescs
Unless I'm missing something this creates a race condition and might damage sent packets.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
asavie/xdp@b4f19b9 Introduces a split umem, one half for rx, one half for tx.
This also changes how free descriptors are marked: instead of having one free list, there's now two.
However, this creates a problem: received descriptors can be sent back directly with
Transmit
. In this case, they are only marked astxFree
andGetDescs
can return them before their transmission is complete. .Unless I'm missing something this creates a race condition and might damage sent packets.
The text was updated successfully, but these errors were encountered: