dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] Assorted kernel-doc fixes
@ 2025-12-15 11:38 Bagas Sanjaya
  2025-12-15 11:38 ` [PATCH 01/14] genalloc: Describe @start_addr parameter in genpool_algo_t Bagas Sanjaya
                   ` (14 more replies)
  0 siblings, 15 replies; 27+ messages in thread
From: Bagas Sanjaya @ 2025-12-15 11:38 UTC (permalink / raw)
  To: Linux Kernel Mailing List, Linux AMDGPU, Linux DRI Development,
	Linux Filesystems Development, Linux Media, linaro-mm-sig,
	kasan-dev, Linux Virtualization, Linux Memory Management List,
	Linux Network Bridge, Linux Networking
  Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
	Christian König, David Airlie, Simona Vetter,
	Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
	Matthew Brost, Danilo Krummrich, Philipp Stanner, Alexander Viro,
	Christian Brauner, Jan Kara, Sumit Semwal, Alexander Potapenko,
	Marco Elver, Dmitry Vyukov, Michael S. Tsirkin, Jason Wang,
	Xuan Zhuo, Eugenio Pérez, Andrew Morton, Uladzislau Rezki,
	Nikolay Aleksandrov, Ido Schimmel, David S. Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Simon Horman, Taimur Hassan,
	Wayne Lin, Alex Hung, Aurabindo Pillai, Dillon Varone,
	George Shen, Aric Cyr, Cruise Hung, Mario Limonciello,
	Sunil Khatri, Dominik Kaszewski, Bagas Sanjaya, David Hildenbrand,
	Peter Zijlstra, Lorenzo Stoakes, Max Kellermann, Nysal Jan K.A.,
	Ryan Roberts, Alexey Skidanov, Vlastimil Babka, Kent Overstreet,
	Vitaly Wool, Harry Yoo, Mateusz Guzik, NeilBrown, Amir Goldstein,
	Jeff Layton, Ivan Lipski, Tao Zhou, YiPeng Chai, Hawking Zhang,
	Lyude Paul, Daniel Almeida, Luben Tuikov, Matthew Auld,
	Roopa Prabhu, Mao Zhu, Shaomin Deng, Charles Han, Jilin Yuan,
	Swaraj Gaikwad, George Anthony Vernon

Hi,

Here are assorted kernel-doc fixes for 6.19 cycle. As the name
implies, for the merging strategy, the patches can be taken by
respective maintainers to appropriate fixes branches (targetting
6.19 of course) (e.g. for mm it will be mm-hotfixes).

Enjoy!

Bagas Sanjaya (14):
  genalloc: Describe @start_addr parameter in genpool_algo_t
  mm: Describe @flags parameter in memalloc_flags_save()
  textsearch: Describe @list member in ts_ops search
  mm: vmalloc: Fix up vrealloc_node_align() kernel-doc macro name
  mm, kfence: Describe @slab parameter in __kfence_obj_info()
  virtio: Describe @map and @vmap members in virtio_device struct
  fs: Describe @isnew parameter in ilookup5_nowait()
  VFS: fix __start_dirop() kernel-doc warnings
  drm/amd/display: Don't use kernel-doc comment in
    dc_register_software_state struct
  drm/amdgpu: Describe @AMD_IP_BLOCK_TYPE_RAS in amd_ip_block_type enum
  drm/gem/shmem: Describe @shmem and @size parameters
  drm/scheduler: Describe @result in drm_sched_job_done()
  drm/gpusvm: Fix drm_gpusvm_pages_valid_unlocked() kernel-doc comment
  net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group
    struct

 drivers/gpu/drm/amd/display/dc/dc.h      | 2 +-
 drivers/gpu/drm/amd/include/amd_shared.h | 1 +
 drivers/gpu/drm/drm_gem_shmem_helper.c   | 3 ++-
 drivers/gpu/drm/drm_gpusvm.c             | 4 ++--
 drivers/gpu/drm/scheduler/sched_main.c   | 1 +
 fs/inode.c                               | 1 +
 fs/namei.c                               | 3 ++-
 include/linux/genalloc.h                 | 1 +
 include/linux/kfence.h                   | 1 +
 include/linux/sched/mm.h                 | 1 +
 include/linux/textsearch.h               | 1 +
 include/linux/virtio.h                   | 2 ++
 mm/vmalloc.c                             | 2 +-
 net/bridge/br_private.h                  | 1 +
 14 files changed, 18 insertions(+), 6 deletions(-)


base-commit: 8f0b4cce4481fb22653697cced8d0d04027cb1e8
-- 
An old man doll... just what I always wanted! - Clara


^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2025-12-17  0:10 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-15 11:38 [PATCH 00/14] Assorted kernel-doc fixes Bagas Sanjaya
2025-12-15 11:38 ` [PATCH 01/14] genalloc: Describe @start_addr parameter in genpool_algo_t Bagas Sanjaya
2025-12-15 11:38 ` [PATCH 02/14] mm: Describe @flags parameter in memalloc_flags_save() Bagas Sanjaya
2025-12-17  0:09   ` David Hildenbrand (Red Hat)
2025-12-15 11:38 ` [PATCH 03/14] textsearch: Describe @list member in ts_ops search Bagas Sanjaya
2025-12-15 11:38 ` [PATCH 04/14] mm: vmalloc: Fix up vrealloc_node_align() kernel-doc macro name Bagas Sanjaya
2025-12-16  0:19   ` Vishal Moola (Oracle)
2025-12-15 11:38 ` [PATCH 05/14] mm, kfence: Describe @slab parameter in __kfence_obj_info() Bagas Sanjaya
2025-12-15 12:07   ` Marco Elver
2025-12-17  0:09   ` David Hildenbrand (Red Hat)
2025-12-15 11:38 ` [PATCH 06/14] virtio: Describe @map and @vmap members in virtio_device struct Bagas Sanjaya
2025-12-15 20:41   ` Michael S. Tsirkin
2025-12-16  4:17   ` Jason Wang
2025-12-15 11:38 ` [PATCH 07/14] fs: Describe @isnew parameter in ilookup5_nowait() Bagas Sanjaya
2025-12-15 12:57   ` Jan Kara
2025-12-15 11:38 ` [PATCH 08/14] VFS: fix __start_dirop() kernel-doc warnings Bagas Sanjaya
2025-12-15 11:38 ` [PATCH 09/14] drm/amd/display: Don't use kernel-doc comment in dc_register_software_state struct Bagas Sanjaya
2025-12-16 15:21   ` [Linaro-mm-sig] " Alex Deucher
2025-12-15 11:38 ` [PATCH 10/14] drm/amdgpu: Describe @AMD_IP_BLOCK_TYPE_RAS in amd_ip_block_type enum Bagas Sanjaya
2025-12-16 15:20   ` Alex Deucher
2025-12-15 11:38 ` [PATCH 11/14] drm/gem/shmem: Describe @shmem and @size parameters Bagas Sanjaya
2025-12-15 11:39 ` [PATCH 12/14] drm/scheduler: Describe @result in drm_sched_job_done() Bagas Sanjaya
2025-12-15 12:24   ` Philipp Stanner
2025-12-15 11:39 ` [PATCH 13/14] drm/gpusvm: Fix drm_gpusvm_pages_valid_unlocked() kernel-doc comment Bagas Sanjaya
2025-12-15 11:39 ` [PATCH 14/14] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Bagas Sanjaya
2025-12-16  8:10   ` Ido Schimmel
2025-12-16 22:08 ` [PATCH 00/14] Assorted kernel-doc fixes Jakub Kicinski

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).