-
Notifications
You must be signed in to change notification settings - Fork 7
Update to 6.16 #13
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
Merged
Merged
Update to 6.16 #13
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a8cf25d to
d89dbb5
Compare
tylerfanelli
requested changes
May 12, 2025
Update the MSRV from a nearly two year old version of rustc to the latest, which is 1.86. Signed-off-by: Jake Correnti <[email protected]>
dcb4c63 to
412cc05
Compare
Adds bindings that were generated from the 6.16 kernel. This only uses the necessary structures generated: - kvm_tdx_capabilities - kvm_tdx_init_vm - kvm_tdx_init_mem_region Signed-off-by: Jake Correnti <[email protected]>
Signed-off-by: Jake Correnti <[email protected]>
Add sized vec helper functions for use with `kvm_bindings::kvm_cpuid2`. Don't set `KVM_MAX_VCPUS` for the guest. Signed-off-by: Jake Correnti <[email protected]>
Now that we have the bindings generated from the header file, we don't need to create the structures ourself. Signed-off-by: Jake Correnti <[email protected]>
Updates the implementation of KVM_TDX_CAPABILITIES to work for the latest upstream kernel. Signed-off-by: Jake Correnti <[email protected]>
Updates the implementation of KVM_TDX_INIT_VM for the latest upstream kernel. Signed-off-by: Jake Correnti <[email protected]>
Update the structures in `init_mem_region` to use the ones generated by bindgen. Signed-off-by: Jake Correnti <[email protected]>
Signed-off-by: Jake Correnti <[email protected]>
With the update to 6.16, KVM_TDX_INIT_MEM_REGION went from a VM ioctl to a vCPU ioctl. Reflect that in the user API for the library. Signed-off-by: Jake Correnti <[email protected]>
1ce2f3f to
84f9d8e
Compare
Member
Author
|
@tylerfanelli Is this good to merge? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updating the kernel from the -480.el9s SIG to 6.16 resulted in breakages. This PR updates the implementations for affected ioctls accordingly.