diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2009-06-23 13:38:42 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2009-06-23 13:38:42 -0400 |
commit | 716abb1fdf3274ac81dc404f3659cc05d8cdf606 (patch) | |
tree | 8e3c728c41abab8088e048c04e7bceddd035bc0f | |
parent | 65795efbd380a832ae508b04dba8f8e53f0b84d9 (diff) |
RDMA: Add __init/__exit macros to addr.c and cma.c
Add __init and __exit annotations to the module_init/module_exit
functions from drivers/infiniband/core/addr.c and cma.c.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Acked-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
-rw-r--r-- | drivers/infiniband/core/addr.c | 4 | ||||
-rw-r--r-- | drivers/infiniband/core/cma.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/infiniband/core/addr.c b/drivers/infiniband/core/addr.c index ce511d8748ce..5be1bd4fc7ed 100644 --- a/drivers/infiniband/core/addr.c +++ b/drivers/infiniband/core/addr.c | |||
@@ -514,7 +514,7 @@ static struct notifier_block nb = { | |||
514 | .notifier_call = netevent_callback | 514 | .notifier_call = netevent_callback |
515 | }; | 515 | }; |
516 | 516 | ||
517 | static int addr_init(void) | 517 | static int __init addr_init(void) |
518 | { | 518 | { |
519 | addr_wq = create_singlethread_workqueue("ib_addr"); | 519 | addr_wq = create_singlethread_workqueue("ib_addr"); |
520 | if (!addr_wq) | 520 | if (!addr_wq) |
@@ -524,7 +524,7 @@ static int addr_init(void) | |||
524 | return 0; | 524 | return 0; |
525 | } | 525 | } |
526 | 526 | ||
527 | static void addr_cleanup(void) | 527 | static void __exit addr_cleanup(void) |
528 | { | 528 | { |
529 | unregister_netevent_notifier(&nb); | 529 | unregister_netevent_notifier(&nb); |
530 | destroy_workqueue(addr_wq); | 530 | destroy_workqueue(addr_wq); |
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index 851de83ff455..075317884b53 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c | |||
@@ -2960,7 +2960,7 @@ static void cma_remove_one(struct ib_device *device) | |||
2960 | kfree(cma_dev); | 2960 | kfree(cma_dev); |
2961 | } | 2961 | } |
2962 | 2962 | ||
2963 | static int cma_init(void) | 2963 | static int __init cma_init(void) |
2964 | { | 2964 | { |
2965 | int ret, low, high, remaining; | 2965 | int ret, low, high, remaining; |
2966 | 2966 | ||
@@ -2990,7 +2990,7 @@ err: | |||
2990 | return ret; | 2990 | return ret; |
2991 | } | 2991 | } |
2992 | 2992 | ||
2993 | static void cma_cleanup(void) | 2993 | static void __exit cma_cleanup(void) |
2994 | { | 2994 | { |
2995 | ib_unregister_client(&cma_client); | 2995 | ib_unregister_client(&cma_client); |
2996 | unregister_netdevice_notifier(&cma_nb); | 2996 | unregister_netdevice_notifier(&cma_nb); |