Commit efbc6bd0 authored by Paolo Bonzini's avatar Paolo Bonzini

Documentation: KVM: fix warning in "make htmldocs"

The warning

 Documentation/virt/kvm/locking.rst:31: ERROR: Unexpected indentation.

is caused by incorrectly treating a line as the continuation of a paragraph,
rather than as the first line in a bullet list.

Fixed: 44d17459 ("KVM: Use dedicated mutex to protect kvm_usage_count to avoid deadlock")
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 3f8df628
...@@ -27,6 +27,7 @@ The acquisition orders for mutexes are as follows: ...@@ -27,6 +27,7 @@ The acquisition orders for mutexes are as follows:
must not take either kvm->slots_lock or kvm->slots_arch_lock. must not take either kvm->slots_lock or kvm->slots_arch_lock.
cpus_read_lock() vs kvm_lock: cpus_read_lock() vs kvm_lock:
- Taking cpus_read_lock() outside of kvm_lock is problematic, despite that - Taking cpus_read_lock() outside of kvm_lock is problematic, despite that
being the official ordering, as it is quite easy to unknowingly trigger being the official ordering, as it is quite easy to unknowingly trigger
cpus_read_lock() while holding kvm_lock. Use caution when walking vm_list, cpus_read_lock() while holding kvm_lock. Use caution when walking vm_list,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment