2013-03-29 20:46:48

by Davidlohr Bueso

[permalink] [raw]
Subject: [PATCH v2 2/2] rbtree_test: add __init/__exit annotations

Signed-off-by: Davidlohr Bueso <[email protected]>
---
lib/rbtree_test.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c
index 9951503..122f02f 100644
--- a/lib/rbtree_test.c
+++ b/lib/rbtree_test.c
@@ -149,7 +149,7 @@ static void check_augmented(int nr_nodes)
}
}

-static int rbtree_test_init(void)
+static int __init rbtree_test_init(void)
{
int i, j;
cycles_t time1, time2, time;
@@ -222,7 +222,7 @@ static int rbtree_test_init(void)
return -EAGAIN; /* Fail will directly unload the module */
}

-static void rbtree_test_exit(void)
+static void __exit rbtree_test_exit(void)
{
printk(KERN_ALERT "test exit\n");
}
--
1.7.11.7




2013-03-29 21:29:46

by Michel Lespinasse

[permalink] [raw]
Subject: Re: [PATCH v2 2/2] rbtree_test: add __init/__exit annotations

On Fri, Mar 29, 2013 at 1:46 PM, Davidlohr Bueso <[email protected]> wrote:
> Signed-off-by: Davidlohr Bueso <[email protected]>

Reviewed-by: Michel Lespinasse <[email protected]>

--
Michel "Walken" Lespinasse
A program is never fully debugged until the last user dies.