Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drivers/dax: add some missing kerneldoc comment fields for struct dev_dax

Add the missing @align and @memmap_on_memory fields to kerneldoc comment
header for struct dev_dax.

Also, some other fields were followed by '-' and others by ':'. Fix all
to be ':' for actual kerneldoc compliance.

Link: https://lkml.kernel.org/r/20260110191804.5739-1-john@groves.net
Fixes: 33cf94d71766 ("device-dax: make align a per-device property")
Fixes: 4eca0ef49af9 ("dax/kmem: allow kmem to add memory with memmap_on_memory")
Signed-off-by: John Groves <john@groves.net>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Joao Martins <joao.m.martins@oracle.com>
Cc: Vishal Verma <vishal.l.verma@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

John Groves and committed by
Andrew Morton
3e8e590f f46c26f1

+6 -4
+6 -4
drivers/dax/dax-private.h
··· 67 67 /** 68 68 * struct dev_dax - instance data for a subdivision of a dax region, and 69 69 * data while the device is activated in the driver. 70 - * @region - parent region 71 - * @dax_dev - core dax functionality 70 + * @region: parent region 71 + * @dax_dev: core dax functionality 72 + * @align: alignment of this instance 72 73 * @target_node: effective numa node if dev_dax memory range is onlined 73 74 * @dyn_id: is this a dynamic or statically created instance 74 75 * @id: ida allocated id when the dax_region is not static 75 76 * @ida: mapping id allocator 76 - * @dev - device core 77 - * @pgmap - pgmap for memmap setup / lifetime (driver owned) 77 + * @dev: device core 78 + * @pgmap: pgmap for memmap setup / lifetime (driver owned) 79 + * @memmap_on_memory: allow kmem to put the memmap in the memory 78 80 * @nr_range: size of @ranges 79 81 * @ranges: range tuples of memory used 80 82 */