mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
synced 2025-09-28 17:40:21 +10:00
s390/docs: fix warnings for vfio_ap driver lock usage doc
Fix multiple warnings produced by make htmldocs
Fixes: e32d3827f3
("s390/Docs: new doc describing lock usage by the vfio_ap device driver")
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
This commit is contained in:
parent
5fcd0d8ae2
commit
d384690c6a
@ -12,6 +12,7 @@ s390 Architecture
|
||||
qeth
|
||||
s390dbf
|
||||
vfio-ap
|
||||
vfio-ap-locking
|
||||
vfio-ccw
|
||||
zfcpdump
|
||||
common_io
|
||||
|
@ -7,12 +7,16 @@ This document describes the locks that are pertinent to the secure operation
|
||||
of the vfio_ap device driver. Throughout this document, the following variables
|
||||
will be used to denote instances of the structures herein described:
|
||||
|
||||
.. code-block:: c
|
||||
|
||||
struct ap_matrix_dev *matrix_dev;
|
||||
struct ap_matrix_mdev *matrix_mdev;
|
||||
struct kvm *kvm;
|
||||
|
||||
The Matrix Devices Lock (drivers/s390/crypto/vfio_ap_private.h)
|
||||
--------------------------------------------------------------
|
||||
---------------------------------------------------------------
|
||||
|
||||
.. code-block:: c
|
||||
|
||||
struct ap_matrix_dev {
|
||||
...
|
||||
@ -31,6 +35,8 @@ representing one of the vfio_ap device driver's mediated devices.
|
||||
The KVM Lock (include/linux/kvm_host.h)
|
||||
---------------------------------------
|
||||
|
||||
.. code-block:: c
|
||||
|
||||
struct kvm {
|
||||
...
|
||||
struct mutex lock;
|
||||
@ -48,6 +54,8 @@ been attached to the KVM guest.
|
||||
The Guests Lock (drivers/s390/crypto/vfio_ap_private.h)
|
||||
-----------------------------------------------------------
|
||||
|
||||
.. code-block:: c
|
||||
|
||||
struct ap_matrix_dev {
|
||||
...
|
||||
struct list_head mdev_list;
|
||||
@ -89,6 +97,8 @@ resources, so only the matrix_dev->mdevs_lock needs to be held.
|
||||
The PQAP Hook Lock (arch/s390/include/asm/kvm_host.h)
|
||||
-----------------------------------------------------
|
||||
|
||||
.. code-block:: c
|
||||
|
||||
typedef int (*crypto_hook)(struct kvm_vcpu *vcpu);
|
||||
|
||||
struct kvm_s390_crypto {
|
||||
@ -99,7 +109,7 @@ struct kvm_s390_crypto {
|
||||
};
|
||||
|
||||
The PQAP Hook Lock is a r/w semaphore that controls access to the function
|
||||
pointer of the handler (*kvm->arch.crypto.pqap_hook) to invoke when the
|
||||
pointer of the handler ``(*kvm->arch.crypto.pqap_hook)`` to invoke when the
|
||||
PQAP(AQIC) instruction sub-function is intercepted by the host. The lock must be
|
||||
held in write mode when pqap_hook value is set, and in read mode when the
|
||||
pqap_hook function is called.
|
||||
|
Loading…
Reference in New Issue
Block a user