diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-09-27 11:45:45 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-10-04 16:33:49 +0200 |
| commit | a98fd7c6e7b2e5855cfc08cc77755f38a97c6158 (patch) | |
| tree | c75c4ff55f131fdbb68ff937e0453405c442e3ca /Documentation | |
| parent | 119ffd4dc84dc327426d161c149b3ed992e86ebd (diff) | |
| download | linux-a98fd7c6e7b2e5855cfc08cc77755f38a97c6158.tar.gz linux-a98fd7c6e7b2e5855cfc08cc77755f38a97c6158.tar.bz2 linux-a98fd7c6e7b2e5855cfc08cc77755f38a97c6158.zip | |
Documentation: KVM: fix warning in "make htmldocs"
commit efbc6bd090f48ccf64f7a8dd5daea775821d57ec upstream.
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: 44d174596260 ("KVM: Use dedicated mutex to protect kvm_usage_count to avoid deadlock")
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation')
| -rw-r--r-- | Documentation/virt/kvm/locking.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/virt/kvm/locking.rst b/Documentation/virt/kvm/locking.rst index c0cb5ce51c1e..198a5a8f26c2 100644 --- a/Documentation/virt/kvm/locking.rst +++ b/Documentation/virt/kvm/locking.rst @@ -25,6 +25,7 @@ The acquisition orders for mutexes are as follows: must not take either kvm->slots_lock or kvm->slots_arch_lock. cpus_read_lock() vs kvm_lock: + - Taking cpus_read_lock() outside of kvm_lock is problematic, despite that 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, |
