-
Notifications
You must be signed in to change notification settings - Fork 1.2k
runtime-rs: fix vfio pci address domain 0001 problem #11254
New issue
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
Conversation
For NUMA I need similar functionality, let me cross-check with my POC and see if we can get on the same dominator. |
This is tested with Dragonball? |
As I know that it might be CLH |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thx @sampleyang LGTM
Please run rustfmt against your codes. |
done |
let Some(domain_part) = parts.first() else { | ||
return None; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clippy
is not happy of this writing here, would you mind running make check
under src/runtime-rs
to fix the clippy
warnings 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Some nvidia gpu pci address domain with 0001, current runtime default deal with 0000:bdf, which cause address errors during device initialization and address conflicts during device registration. Fixes kata-containers#11252 Signed-off-by: yangsong <yunya.ys@antgroup.com>
Some nvidia gpu pci address domain with 0001,
current runtime default deal with 0000:bdf,
which cause address errors during device initialization and address conflicts during device registration