diff --git a/docs/cpu_templates/cpu-templates.md b/docs/cpu_templates/cpu-templates.md index e00e71f26e2..a2d8b06fceb 100644 --- a/docs/cpu_templates/cpu-templates.md +++ b/docs/cpu_templates/cpu-templates.md @@ -180,7 +180,7 @@ curl --unix-socket /tmp/firecracker.socket -i \ -H 'Content-Type: application/json' \ -d '{ "kvm_capabilities": ["171", "172"], - "vcpu_features": [{ "index": 0, "bitmap": "0b1100000" }] + "vcpu_features": [{ "index": 0, "bitmap": "0b11xxxxx" }] "reg_modifiers": [ { "addr": "0x603000000013c020", diff --git a/docs/cpu_templates/schema.json b/docs/cpu_templates/schema.json index 76a11697e06..27844756941 100644 --- a/docs/cpu_templates/schema.json +++ b/docs/cpu_templates/schema.json @@ -26,7 +26,7 @@ "bitmap": { "description": "Bitmap for modifying the 32 bit field in kvm_vcpu_init::features. Must be in the format `0b[01x]{1,32}`. Corresponding bits will be cleared (`0`), set (`1`) or left intact (`x`). (`_`) can be used as a separator.", "type": "string", - "examples": ["0b1100000"] + "examples": ["0b11xxxxx"] } } }