Skip to content
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

Convert unsigned long to uint32_t #115

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sbi_cove.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ struct tsm_info {
* `COVE_TSM_CAP_*` constants. Presence of bit `i` indicates that both the TSM
* and hardware support the corresponding capability.
*/
unsigned long tsm_capabilities;
uint32_t tsm_capabilities;
/*
* The number of 4KB pages which must be donated to the TSM for storing TVM
* state in sbi_covh_create_tvm_vcpu(). `0` if the TSM does not support the
Expand All @@ -812,7 +812,7 @@ struct tsm_info {
/*
* The maximum number of vCPUs a TVM can support.
*/
unsigned long tvm_max_vcpus;
uint32_t tvm_max_vcpus;
/*
* The number of 4KB pages which must be donated to the TSM when creating
* a new vCPU. `0` if the TSM does not support the dynamic memory allocation
Expand Down
Loading