Skip to content

Commit

Permalink
Convert unsigned long to uint32_t
Browse files Browse the repository at this point in the history
Fix #91.

Signed-off-by: Steven Bellock <[email protected]>
  • Loading branch information
steven-bellock committed Dec 18, 2024
1 parent 4cab9cc commit e826440
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit e826440

Please sign in to comment.