Skip to content

Commit fca2673

Browse files
committed
multifile test added
1 parent eea5218 commit fca2673

File tree

4 files changed

+35
-2
lines changed

4 files changed

+35
-2
lines changed

multifile/Makefile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
obj-m += startstop.o
2+
startstop-objs := start.o stop.o
3+
4+
all:
5+
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
6+
7+
clean:
8+
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
9+
10+
11+
TARGET=startstop
12+
13+
install:
14+
sudo insmod $(TARGET).ko
15+
16+
uninstall:
17+
sudo rmmod $(TARGET)

multifile/start.c

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <linux/module.h>
2+
#include <linux/kernel.h>
3+
4+
5+
int init_module(void)
6+
{
7+
printk(KERN_INFO "Hello world!\n");
8+
return 0;
9+
}

multifile/stop.c

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <linux/module.h>
2+
#include <linux/kernel.h>
3+
4+
void cleanup_module(void)
5+
{
6+
printk(KERN_INFO "Goodbye world.\n");
7+
}

proc_hack/proc_hack.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ proc_pid_readdir_hook original_in_proc_pid_readdir;
3535

3636
int func_proc_pid_readdir (struct tgid_iter *iter) {
3737
int ret = 0;
38-
if (current->hp_node > 0) {
38+
if (current->hp_node >= 0) {
3939
if (iter->task->hp_node != current->hp_node) {
4040
printk("*** %s ", iter->task->comm);
4141
printk(" <- %s", current->comm);
@@ -90,7 +90,7 @@ void mark_process(void) {
9090
printk(KERN_INFO "*** %s [%ld] parent %s\n",
9191
task->comm, task->hp_node, task->parent->comm);
9292
} else {
93-
task->hp_node = 0;
93+
task->hp_node = -1;
9494
}
9595
} while ((task = next_task(task)) != &init_task);
9696
}

0 commit comments

Comments
 (0)