|
@@ -72,6 +72,16 @@ int core_kernel_text(unsigned long addr)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * core_kernel_data - tell if addr points to kernel data
|
|
|
+ * @addr: address to test
|
|
|
+ *
|
|
|
+ * Returns true if @addr passed in is from the core kernel data
|
|
|
+ * section.
|
|
|
+ *
|
|
|
+ * Note: On some archs it may return true for core RODATA, and false
|
|
|
+ * for others. But will always be true for core RW data.
|
|
|
+ */
|
|
|
int core_kernel_data(unsigned long addr)
|
|
|
{
|
|
|
if (addr >= (unsigned long)_sdata &&
|