* [PATCH v2] virtio: Describe @map and @vmap members in virtio_device struct
@ 2025-12-19 3:16 Bagas Sanjaya
2025-12-26 19:13 ` Michael S. Tsirkin
0 siblings, 1 reply; 3+ messages in thread
From: Bagas Sanjaya @ 2025-12-19 3:16 UTC (permalink / raw)
To: Linux Kernel Mailing List, Linux Virtualization
Cc: Michael S. Tsirkin, Jason Wang, Xuan Zhuo, Eugenio Pérez,
Bagas Sanjaya
Sphinx reports kernel-doc warnings:
WARNING: ./include/linux/virtio.h:181 struct member 'map' not described in 'virtio_device'
WARNING: ./include/linux/virtio.h:181 struct member 'vmap' not described in 'virtio_device'
Describe these members.
Fixes: bee8c7c24b7373 ("virtio: introduce map ops in virtio core")
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
---
This patch is split from kernel-doc fixup series [1].
Changes since v1 [2]:
- Apply review trailers (Michael, Jason)
[1]: https://lore.kernel.org/lkml/20251215113903.46555-1-bagasdotme@gmail.com/
[2]: https://lore.kernel.org/lkml/20251215113903.46555-7-bagasdotme@gmail.com/
include/linux/virtio.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/linux/virtio.h b/include/linux/virtio.h
index 132a474e59140a..68ead8fda9c921 100644
--- a/include/linux/virtio.h
+++ b/include/linux/virtio.h
@@ -150,11 +150,13 @@ struct virtio_admin_cmd {
* @id: the device type identification (used to match it with a driver).
* @config: the configuration ops for this device.
* @vringh_config: configuration ops for host vrings.
+ * @map: configuration ops for device's mapping buffer
* @vqs: the list of virtqueues for this device.
* @features: the 64 lower features supported by both driver and device.
* @features_array: the full features space supported by both driver and
* device.
* @priv: private pointer for the driver's use.
+ * @vmap: device virtual map
* @debugfs_dir: debugfs directory entry.
* @debugfs_filter_features: features to be filtered set by debugfs.
*/
base-commit: ea1013c1539270e372fc99854bc6e4d94eaeff66
--
An old man doll... just what I always wanted! - Clara
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] virtio: Describe @map and @vmap members in virtio_device struct
2025-12-19 3:16 [PATCH v2] virtio: Describe @map and @vmap members in virtio_device struct Bagas Sanjaya
@ 2025-12-26 19:13 ` Michael S. Tsirkin
2025-12-27 22:57 ` Bagas Sanjaya
0 siblings, 1 reply; 3+ messages in thread
From: Michael S. Tsirkin @ 2025-12-26 19:13 UTC (permalink / raw)
To: Bagas Sanjaya
Cc: Linux Kernel Mailing List, Linux Virtualization, Jason Wang,
Xuan Zhuo, Eugenio Pérez
On Fri, Dec 19, 2025 at 10:16:47AM +0700, Bagas Sanjaya wrote:
> Sphinx reports kernel-doc warnings:
>
> WARNING: ./include/linux/virtio.h:181 struct member 'map' not described in 'virtio_device'
> WARNING: ./include/linux/virtio.h:181 struct member 'vmap' not described in 'virtio_device'
>
> Describe these members.
>
> Fixes: bee8c7c24b7373 ("virtio: introduce map ops in virtio core")
> Acked-by: Michael S. Tsirkin <mst@redhat.com>
> Acked-by: Jason Wang <jasowang@redhat.com>
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Well I was going to apply and now I have second thoughts.
The patch does describe the members, it just does not
describe them well.
for example,
> ---
> This patch is split from kernel-doc fixup series [1].
>
> Changes since v1 [2]:
>
> - Apply review trailers (Michael, Jason)
>
> [1]: https://lore.kernel.org/lkml/20251215113903.46555-1-bagasdotme@gmail.com/
> [2]: https://lore.kernel.org/lkml/20251215113903.46555-7-bagasdotme@gmail.com/
>
> include/linux/virtio.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/linux/virtio.h b/include/linux/virtio.h
> index 132a474e59140a..68ead8fda9c921 100644
> --- a/include/linux/virtio.h
> +++ b/include/linux/virtio.h
> @@ -150,11 +150,13 @@ struct virtio_admin_cmd {
> * @id: the device type identification (used to match it with a driver).
> * @config: the configuration ops for this device.
> * @vringh_config: configuration ops for host vrings.
> + * @map: configuration ops for device's mapping buffer
there's no "mapping buffer" that needs configuration.
the type tells it all:
* struct virtio_map_ops - operations for mapping buffer for a virtio device
> * @vqs: the list of virtqueues for this device.
> * @features: the 64 lower features supported by both driver and device.
> * @features_array: the full features space supported by both driver and
> * device.
> * @priv: private pointer for the driver's use.
> + * @vmap: device virtual map
this one is not a "virtual map" either.
more a "device or domain used for mapping memory"
> * @debugfs_dir: debugfs directory entry.
> * @debugfs_filter_features: features to be filtered set by debugfs.
> */
>
> base-commit: ea1013c1539270e372fc99854bc6e4d94eaeff66
> --
> An old man doll... just what I always wanted! - Clara
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] virtio: Describe @map and @vmap members in virtio_device struct
2025-12-26 19:13 ` Michael S. Tsirkin
@ 2025-12-27 22:57 ` Bagas Sanjaya
0 siblings, 0 replies; 3+ messages in thread
From: Bagas Sanjaya @ 2025-12-27 22:57 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Linux Kernel Mailing List, Linux Virtualization, Jason Wang,
Xuan Zhuo, Eugenio Pérez
[-- Attachment #1: Type: text/plain, Size: 1303 bytes --]
On Fri, Dec 26, 2025 at 02:13:00PM -0500, Michael S. Tsirkin wrote:
> > diff --git a/include/linux/virtio.h b/include/linux/virtio.h
> > index 132a474e59140a..68ead8fda9c921 100644
> > --- a/include/linux/virtio.h
> > +++ b/include/linux/virtio.h
> > @@ -150,11 +150,13 @@ struct virtio_admin_cmd {
> > * @id: the device type identification (used to match it with a driver).
> > * @config: the configuration ops for this device.
> > * @vringh_config: configuration ops for host vrings.
> > + * @map: configuration ops for device's mapping buffer
>
> there's no "mapping buffer" that needs configuration.
> the type tells it all:
> * struct virtio_map_ops - operations for mapping buffer for a virtio device
>
>
> > * @vqs: the list of virtqueues for this device.
> > * @features: the 64 lower features supported by both driver and device.
> > * @features_array: the full features space supported by both driver and
> > * device.
> > * @priv: private pointer for the driver's use.
> > + * @vmap: device virtual map
>
> this one is not a "virtual map" either.
> more a "device or domain used for mapping memory"
Thanks for the suggestions! I'll apply them in v3 (should be out in Monday).
--
An old man doll... just what I always wanted! - Clara
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-27 22:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-19 3:16 [PATCH v2] virtio: Describe @map and @vmap members in virtio_device struct Bagas Sanjaya
2025-12-26 19:13 ` Michael S. Tsirkin
2025-12-27 22:57 ` Bagas Sanjaya
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).