我一直在尝试在树莓的内核中编写一个新的系统调用(称为 sys_defclose),但是在编译时我得到了这个错误:
arch/arm/kernel/built-in.o: In function `__sys_trace_return':
:(.text+0xd50): undefined reference to `sys_defclose'
我修改了以下文件:
-include/linux/syscalls.h :我放置系统调用原型的地方
-arch/arm/include/asm/unistd.h :我将系统调用表的新原始数据放在哪里:
#define __NR_sys_defclose (__NR_SYSCALL_BASE+380)
-arch/arm/kernel/calls.S:我放的地方:
CALL(sys_defclose)
-i 将 sys_defclose 的源代码放在 arch/arm/kernel 中,并且我已使用新行修改了同一目录中的 makefile
obj-y +=sys_defclose.o
内核版本是 3.6 的树莓派。有人可以解释我如何解决这个错误吗?谢谢这是我的系统调用的实现
static struct task_struct* get_task_by_pid(pid_t pid)
{
return pid_task(find_pid_ns(pid, task_active_pid_ns(current)), PIDTYPE_PID);
}
static void close_files(struct files_struct * files)
{
int i, j;
struct fdtable *fdt;
j = 0;
rcu_read_lock();
fdt = files_fdtable(files);
rcu_read_unlock();
for (;;) {
unsigned long set;
i = j * BITS_PER_LONG;
if (i >= fdt->max_fds)
break;
set = fdt->open_fds[j++];
while (set) {
if (set & 1) {
struct file * file = xchg(&fdt->fd[i], NULL);
if (file) {
filp_close(file, files);
cond_resched();
}
}
i++;
set >>= 1;
}
}
}
asmlinkage long sys_defclose(pid_t pid)
{
struct task_struct *result = NULL;
rcu_read_lock();
result = get_task_by_pid(pid);
rcu_read_unlock();
close_files(result->files);
}