-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Feature Request] Steal Time support in ARM #4866
Comments
we definitely have KVM_{GET,SET}_DEVICE_ATTR ioctls in kvm-ioctls :) |
Hello @Manciukic I'd like to take this up please |
@aerosouund sure, we're not planning on taking this on anytime soon, but it'd be nice to finally land this feature! Giving you a few leads, this will probably need changes in |
Hey @aerosouund, are you still planning to work on this issue? |
Hello @Manciukic If i have been blocking this for longer than possible feel free to assign it to someone else. |
Hi, we're a group of students at UT Austin looking to contribute to virtualization-related open-source projects for our class. We came across this issue and would like to work on it if that's okay @Manciukic @aerosouund. Before we would proceed, we have some questions about the implementation since this is our first exposure to the Firecracker codebase. We are referencing the following resources to understand the issue: ARM PVTIME specs (DEN0057A), QEMU patch, and KVM implementation. Feature Detection
Registering Steal Time Structures with vCPUs
Persisting PVTIME State
This is what we've determined from our initial research, but we'd appreciate any clarifications or guidance on implementing these parts of the codebase. Especially pointers towards what specific files/folders to look at. Thank you! |
@DakshinD |
Replies inline.
Sure, fine by me.
I didn't find the capability you're mentioning. Could you point me to it?
I'd just enable it by default for now. The only reason to make it optional is if we see any drawback in enabling it.
I didn't check too deeply about this, but my hope was to treat this as a device and initialize it separately from the vcpus. This would require defining a new virtual device for steal time, allocating a region of system memory for it, and then initializing it using KVM syscalls. An example of a device that allocates system memory is the vmgenid device. While an example that uses the
I'd try to fit it into the system memory we already allocate (2MiB for ARM), using the
I'm guessing the only state to be persisted is the gva of the IPAs.
|
Thanks you for the help @Manciukic! We've refined our implementation plan and would like to confirm a few details before coding if that's alright.
I apologize, I meant to say we can add
I referenced the I also just wanted to write a quick summary of our planned implementation beforehand to validate with you so that we are on the right direction. 1. Feature Detection
2. PVTIME Device Initialization
3. vCPU Configuration
4. Snapshot Persistence
We are looking to break this into manageable steps and are looking for your input as to what part to start with as well as how to test this. Are there any other parts we need to take into consideration? Any feedback would be really appreciated. Thanks again for your patience! |
It looks like it's architecture-agnostic capability, it will tell you the hypervisor supports steal time, not that it supports the particular pv_time (aarch64). I think just checking
That's correct, it needs to be called on the vcpu fds.
Maybe, but you may not have all you need from within that context (no vcpu fds, no resource allocator). You could also look into putting it directly in
Since it doesn't look like a big change, I'd start from getting a prototype working to identify the rough edges and then refine those to build the final implementation. You can probably start from adding a function in |
Feature Request
PV Steal Time reporting on ARM is available in KVM since 5.10 at least but Firecracker doesn't enable it.
Describe the desired solution
We could enable the PVTIME device in Firecracker on ARM to allow for stolen time reporting.
Describe possible alternatives
rust-vmm
has some off-the-shelf implementation we could useAdditional context
I found that this is the KVM patch that introduced it: https://lwn.net/Articles/797954/
And this is how QEMU integrated with it: https://patchew.org/QEMU/20200711101033.47371-1-drjones@redhat.com/20200711101033.47371-4-drjones@redhat.com/
It needs to be enabled via ioctl to the vcpu fd, there's an example in the kernel self tests: https://github.com/amazonlinux/linux/blob/kernel-5.10.215-203.850.amzn2/tools/testing/selftests/kvm/steal_time.c#L172
Checks
The text was updated successfully, but these errors were encountered: