File tree 4 files changed +35
-2
lines changed
4 files changed +35
-2
lines changed Original file line number Diff line number Diff line change
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 )
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ proc_pid_readdir_hook original_in_proc_pid_readdir;
35
35
36
36
int func_proc_pid_readdir (struct tgid_iter * iter ) {
37
37
int ret = 0 ;
38
- if (current -> hp_node > 0 ) {
38
+ if (current -> hp_node >= 0 ) {
39
39
if (iter -> task -> hp_node != current -> hp_node ) {
40
40
printk ("*** %s " , iter -> task -> comm );
41
41
printk (" <- %s" , current -> comm );
@@ -90,7 +90,7 @@ void mark_process(void) {
90
90
printk (KERN_INFO "*** %s [%ld] parent %s\n" ,
91
91
task -> comm , task -> hp_node , task -> parent -> comm );
92
92
} else {
93
- task -> hp_node = 0 ;
93
+ task -> hp_node = -1 ;
94
94
}
95
95
} while ((task = next_task (task )) != & init_task );
96
96
}
You can’t perform that action at this time.
0 commit comments