add test prefix speed
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Wed, 13 Aug 2008 23:09:18 +0000 (23:09 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Wed, 13 Aug 2008 23:09:18 +0000 (23:09 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@3019 04897980-b3bd-0310-b5e0-8ef037075253

trunk/tests/kernel/test-prefix-speed.c

index 2ad63fcbfbe10d51520a34633a47a6301c8493e1..d2e0de9dc22107e6391cc7399e2461397b3dfca2 100644 (file)
@@ -122,7 +122,7 @@ static struct file_operations my_operations = {
 
 int init_module(void)
 {
-       pentry = create_proc_entry("testnops", 0444, NULL);
+       pentry = create_proc_entry("testprefix", 0444, NULL);
        if (pentry)
                pentry->proc_fops = &my_operations;
 
@@ -131,9 +131,9 @@ int init_module(void)
 
 void cleanup_module(void)
 {
-       remove_proc_entry("testnops", NULL);
+       remove_proc_entry("testprefix", NULL);
 }
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Mathieu Desnoyers");
-MODULE_DESCRIPTION("NOP Test");
+MODULE_DESCRIPTION("prefix test");
This page took 0.027314 seconds and 4 git commands to generate.