-
Notifications
You must be signed in to change notification settings - Fork 164
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
pillar/hypervisor: fix discrepancy in setupSpec #4278
Conversation
Required to be backported (so labeled with "stable" or/and labeled with "fix")? |
} | ||
} | ||
|
||
// I/O Adapter device access |
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.
Too many comments? :)
@christoph-zededa could you describe what was the issue observed with the current master? |
211b6a0
to
0556d33
Compare
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.
LGTM
Please rebase on the latest master. There were changes in the code close to changed here. I wanna be sure all together it's fine. |
kvm and xen sent an empty list of ioBundles to setupSpec, so that it failed to lookup devices with `aa.LookupIoBundleAny(adapter.Name)` turns out, we can just not call this piece of code in the case of kvm and xen - only when using it directly from containerd; then we also include the proper ioBundles Signed-off-by: Christoph Ostarek <[email protected]>
0556d33
to
3e46d3b
Compare
I also moved it into |
53d3ee8 is in no stable branch yet, so no need to backport it. |
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.
LGTM
kvm and xen sent an empty list of ioBundles to setupSpec, so that it failed to lookup devices with
aa.LookupIoBundleAny(adapter.Name)
turns out, we can just not call this piece of code in the case of kvm and xen - only when using it directly from containerd; then we also include the proper ioBundles