diff options
author | 2023-02-02 19:42:48 +0900 | |
---|---|---|
committer | 2023-02-20 19:26:59 -0500 | |
commit | 2e44ca3f1f0ba2022f949003f02cc091144e54a3 (patch) | |
tree | 2f58c19485d8266e9f864ca533b581ebabac0673 | |
parent | vhost-vdpa: print warning when vhost_vdpa_alloc_domain fails (diff) | |
download | wireguard-linux-2e44ca3f1f0ba2022f949003f02cc091144e54a3.tar.xz wireguard-linux-2e44ca3f1f0ba2022f949003f02cc091144e54a3.zip |
vringh: fix a typo in comments for vringh_kiov
Probably it is a simple copy error from struct vring_iov.
Signed-off-by: Shunsuke Mie <mie@igel.co.jp>
Message-Id: <20230202104248.2040652-1-mie@igel.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r-- | include/linux/vringh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/vringh.h b/include/linux/vringh.h index 212892cf9822..1991a02c6431 100644 --- a/include/linux/vringh.h +++ b/include/linux/vringh.h @@ -92,7 +92,7 @@ struct vringh_iov { }; /** - * struct vringh_iov - kvec mangler. + * struct vringh_kiov - kvec mangler. * * Mangles kvec in place, and restores it. * Remaining data is iov + i, of used - i elements. |