* [PATCH v5] crash: export crashkernel CMA reservation to userspace
@ 2025-11-17 4:19 Sourabh Jain
2025-11-17 17:42 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Sourabh Jain @ 2025-11-17 4:19 UTC (permalink / raw)
To: linux-kernel
Cc: Sourabh Jain, Aditya Gupta, Andrew Morton, Baoquan he, Dave Young,
Hari Bathini, Jiri Bohac, Madhavan Srinivasan,
Mahesh J Salgaonkar, Pingfan Liu, Ritesh Harjani (IBM),
Shivang Upadhyay, Vivek Goyal, linuxppc-dev, kexec
Add a sysfs entry /sys/kernel/kexec/crash_cma_ranges to expose all
CMA crashkernel ranges.
This allows userspace tools configuring kdump to determine how much
memory is reserved for crashkernel. If CMA is used, tools can warn
users when attempting to capture user pages with CMA reservation.
The new sysfs hold the CMA ranges in below format:
cat /sys/kernel/kexec/crash_cma_ranges
100000000-10c7fffff
There are already four kexec and kdump sysfs entries under /sys/kernel.
Adding more entries there would clutter the directory. To avoid this,
the new crash_cma_ranges sysfs entry is placed in a new kexec node under
/sys/kernel/.
The reason for not including Crash CMA Ranges in /proc/iomem is to avoid
conflicts. It has been observed that contiguous memory ranges are sometimes
shown as two separate System RAM entries in /proc/iomem. If a CMA range
overlaps two System RAM ranges, adding crashk_res to /proc/iomem can create
a conflict. Reference [1] describes one such instance on the PowerPC
architecture.
Link: https://lore.kernel.org/all/20251016142831.144515-1-sourabhjain@linux.ibm.com/ [1]
Cc: Aditya Gupta <adityag@linux.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Baoquan he <bhe@redhat.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Hari Bathini <hbathini@linux.ibm.com>
Cc: Jiri Bohac <jbohac@suse.cz>
Cc: Madhavan Srinivasan <maddy@linux.ibm.com>
Cc: Mahesh J Salgaonkar <mahesh@linux.ibm.com>
Cc: Pingfan Liu <piliu@redhat.com>
Cc: Ritesh Harjani (IBM) <ritesh.list@gmail.com>
Cc: Shivang Upadhyay <shivangu@linux.ibm.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: linuxppc-dev@lists.ozlabs.org
Cc: kexec@lists.infradead.org
Signed-off-by: Sourabh Jain <sourabhjain@linux.ibm.com>
---
Changelog:
v4 -> v5:
https://lore.kernel.org/all/20251114152550.ac2dd5e23542f09c62defec7@linux-foundation.org/
- Splitted patch from the above patch series.
- Code to create kexec node under /sys/kernel is added, eariler it was
done in [02/05] of the above patch series.
Note:
This patch is dependent on the below patch:
https://lore.kernel.org/all/20251117035153.1199665-1-sourabhjain@linux.ibm.com/
---
.../ABI/testing/sysfs-kernel-kexec-kdump | 10 ++++
kernel/kexec_core.c | 50 +++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/Documentation/ABI/testing/sysfs-kernel-kexec-kdump b/Documentation/ABI/testing/sysfs-kernel-kexec-kdump
index 96b24565b68e..320ec75a4903 100644
--- a/Documentation/ABI/testing/sysfs-kernel-kexec-kdump
+++ b/Documentation/ABI/testing/sysfs-kernel-kexec-kdump
@@ -41,3 +41,13 @@ Description: read only
is used by the user space utility kexec to support updating the
in-kernel kdump image during hotplug operations.
User: Kexec tools
+
+What: /sys/kernel/kexec/crash_cma_ranges
+Date: Nov 2025
+Contact: kexec@lists.infradead.org
+Description: read only
+ Provides information about the memory ranges reserved from
+ the Contiguous Memory Allocator (CMA) area that are allocated
+ to the crash (kdump) kernel. It lists the start and end physical
+ addresses of CMA regions assigned for crashkernel use.
+User: kdump service
diff --git a/kernel/kexec_core.c b/kernel/kexec_core.c
index fa00b239c5d9..51b1e0985eac 100644
--- a/kernel/kexec_core.c
+++ b/kernel/kexec_core.c
@@ -41,6 +41,7 @@
#include <linux/objtool.h>
#include <linux/kmsg_dump.h>
#include <linux/dma-map-ops.h>
+#include <linux/sysfs.h>
#include <asm/page.h>
#include <asm/sections.h>
@@ -1229,3 +1230,52 @@ int kernel_kexec(void)
kexec_unlock();
return error;
}
+
+#ifdef CONFIG_CRASH_RESERVE
+static ssize_t crash_cma_ranges_show(struct kobject *kobj,
+ struct kobj_attribute *attr, char *buf)
+{
+
+ ssize_t len = 0;
+ int i;
+
+ for (i = 0; i < crashk_cma_cnt; ++i) {
+ len += sysfs_emit_at(buf, len, "%08llx-%08llx\n",
+ crashk_cma_ranges[i].start,
+ crashk_cma_ranges[i].end);
+ }
+ return len;
+}
+static struct kobj_attribute crash_cma_ranges_attr = __ATTR_RO(crash_cma_ranges);
+
+static struct attribute *kexec_attrs[] = {
+ &crash_cma_ranges_attr.attr,
+ NULL
+};
+
+static struct kobject *kexec_kobj;
+ATTRIBUTE_GROUPS(kexec);
+
+static int __init init_kexec_sysctl(void)
+{
+ int error;
+
+ kexec_kobj = kobject_create_and_add("kexec", kernel_kobj);
+ if (!kexec_kobj) {
+ pr_err("failed to create kexec kobject\n");
+ return -ENOMEM;
+ }
+
+ error = sysfs_create_groups(kexec_kobj, kexec_groups);
+ if (error)
+ goto kset_exit;
+
+ return 0;
+
+kset_exit:
+ kobject_put(kexec_kobj);
+ return error;
+}
+
+subsys_initcall(init_kexec_sysctl);
+#endif /* CONFIG_CRASH_RESERVE */
--
2.51.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v5] crash: export crashkernel CMA reservation to userspace
2025-11-17 4:19 [PATCH v5] crash: export crashkernel CMA reservation to userspace Sourabh Jain
@ 2025-11-17 17:42 ` Andrew Morton
2025-11-17 18:33 ` Sourabh Jain
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2025-11-17 17:42 UTC (permalink / raw)
To: Sourabh Jain
Cc: linux-kernel, Aditya Gupta, Baoquan he, Dave Young, Hari Bathini,
Jiri Bohac, Madhavan Srinivasan, Mahesh J Salgaonkar, Pingfan Liu,
Ritesh Harjani (IBM), Shivang Upadhyay, Vivek Goyal, linuxppc-dev,
kexec
On Mon, 17 Nov 2025 09:49:05 +0530 Sourabh Jain <sourabhjain@linux.ibm.com> wrote:
> Add a sysfs entry /sys/kernel/kexec/crash_cma_ranges to expose all
> CMA crashkernel ranges.
>
> This allows userspace tools configuring kdump to determine how much
> memory is reserved for crashkernel. If CMA is used, tools can warn
> users when attempting to capture user pages with CMA reservation.
>
> The new sysfs hold the CMA ranges in below format:
>
> cat /sys/kernel/kexec/crash_cma_ranges
> 100000000-10c7fffff
>
> There are already four kexec and kdump sysfs entries under /sys/kernel.
> Adding more entries there would clutter the directory. To avoid this,
> the new crash_cma_ranges sysfs entry is placed in a new kexec node under
> /sys/kernel/.
I suggest not creating /sys/kernel/kexec in this patch.
Moving everything into a new /sys/kernel/kexec is a separate patchset
and a separate concept and it might never be merged - it changes ABI!
So let's put crash_cma_ranges in /sys/kernel and move it to
/sys/kernel/kexec within the other patchset.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v5] crash: export crashkernel CMA reservation to userspace
2025-11-17 17:42 ` Andrew Morton
@ 2025-11-17 18:33 ` Sourabh Jain
0 siblings, 0 replies; 3+ messages in thread
From: Sourabh Jain @ 2025-11-17 18:33 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-kernel, Aditya Gupta, Baoquan he, Dave Young, Hari Bathini,
Jiri Bohac, Madhavan Srinivasan, Mahesh J Salgaonkar, Pingfan Liu,
Ritesh Harjani (IBM), Shivang Upadhyay, Vivek Goyal, linuxppc-dev,
kexec
On 17/11/25 23:12, Andrew Morton wrote:
> On Mon, 17 Nov 2025 09:49:05 +0530 Sourabh Jain <sourabhjain@linux.ibm.com> wrote:
>
>> Add a sysfs entry /sys/kernel/kexec/crash_cma_ranges to expose all
>> CMA crashkernel ranges.
>>
>> This allows userspace tools configuring kdump to determine how much
>> memory is reserved for crashkernel. If CMA is used, tools can warn
>> users when attempting to capture user pages with CMA reservation.
>>
>> The new sysfs hold the CMA ranges in below format:
>>
>> cat /sys/kernel/kexec/crash_cma_ranges
>> 100000000-10c7fffff
>>
>> There are already four kexec and kdump sysfs entries under /sys/kernel.
>> Adding more entries there would clutter the directory. To avoid this,
>> the new crash_cma_ranges sysfs entry is placed in a new kexec node under
>> /sys/kernel/.
> I suggest not creating /sys/kernel/kexec in this patch.
>
> Moving everything into a new /sys/kernel/kexec is a separate patchset
> and a separate concept and it might never be merged - it changes ABI!
>
> So let's put crash_cma_ranges in /sys/kernel and move it to
> /sys/kernel/kexec within the other patchset.
Yeah sure. I will send the patches accordingly.
Thanks,
Sourabh Jain
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-11-17 18:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17 4:19 [PATCH v5] crash: export crashkernel CMA reservation to userspace Sourabh Jain
2025-11-17 17:42 ` Andrew Morton
2025-11-17 18:33 ` Sourabh Jain
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.