我正在尝试创建一个禁用数据缓存的Linux内核模块。我试图在arch / arm / include / asm / cacheflush.h中使用v7_exit_coherency_flush(all)函数,这个函数调用v7_flush_dcache_all,我发现它在arch / arm / mm / arch-v7.S中。
我的问题是,当我尝试制作模块时,会收到警告
WARNING: "v7_flush_dcache_all [/home/pi/Documents/ARMHammer/kern/my_kernel/cache_disable.ko] undefined!
当我尝试插入模块时出现错误
insmod: ERROR: could not insert module cache_disable.ko: Unknown symbol in module
所以看起来ach-v7.S文件没有被读取。我尝试将其简单地包含在我的主文件中,但这会产生很多错误,可能是因为它是一个汇编文件。
我现在几乎停留在那里,有没有我可以在Makefile中包含汇编文件,或者我可能不包括所有必需的.h文件?
它的价值在哪里,这是我的主要文件
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/sched.h> /* For current */
#include <linux/tty.h> /* For the tty declarations */
#include <linux/version.h> /* For LINUX_VERSION_CODE */
#include <linux/mm.h>
#include <asm/cp15.h>
#include <asm/cacheflush.h>
#include <asm/glue-cache.h>
#include <asm/shmparam.h>
#include <asm/cachetype.h>
#include <asm/outercache.h>
// #include "my_cache-v7.h"
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Peter Jay Salzman");
static void print_string(char *str)
{
struct tty_struct *my_tty;
#if ( LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,5) )
my_tty = current->tty;
#else
my_tty = current->signal->tty;
#endif
if (my_tty != NULL) {
((my_tty->ops)->write) (my_tty, /* The tty itself */
#if ( LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,9) )
0, /* Don't take the string
from user space */
#endif
str, /* String */
strlen(str)); /* Length */
#if ( LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,9) )
((my_tty->ops)->write) (my_tty, 0, "\015\012", 2);
#else
((my_tty->ops)->write) (my_tty, "\015\012", 2);
#endif
}
}
static int __init print_string_init(void)
{
v7_exit_coherency_flush(all);
print_string("The module has been inserted. Hello world!");
return 0;
}
static void __exit print_string_exit(void)
{
print_string("The module has been removed. Farewell world!");
}
module_init(print_string_init);
module_exit(print_string_exit);
和我的Makefile
obj-m += cache_disable.o
KDIR = /home/pi/linux/
all:
make -C $(KDIR) M=$(PWD) modules
clean:
make -C $(KDIR) M=$(PWD) clean
此外,如果有人知道一种更简单的方法来禁用缓存,我全都耳朵!
答案 0 :(得分:1)
rails db:test:load
用于电源管理代码,以便干净地将CPU从内核中取出以便关闭它 - 它无法从随机模块中调用,原因非常充分。如果你真的想要以奇怪和微妙的方式丢失数据并使机器崩溃,你可能完全绕过内核函数并使用一个简单的内联asm来直接命中SCTLR * 。
我害怕想象你想要实现的目标,但是如果你真的想在关闭缓存的情况下运行Linux(痛苦地缓慢),你需要重建内核,关闭CONFIG_SMP打开CONFIG_CPU_DCACHE_DISABLE。这是唯一一个可能有效的模糊支持方法。
*我甚至都没有解释,这是一个可怕的想法。