blob: abbb06996f9e008c0a5c5957a18b46d10ef032d7 [file] [log] [blame]
Sean Hefty7025fcd2006-06-17 20:37:28 -07001/*
2 * Copyright (c) 2005 Voltaire Inc. All rights reserved.
3 * Copyright (c) 2002-2005, Network Appliance, Inc. All rights reserved.
4 * Copyright (c) 1999-2005, Mellanox Technologies, Inc. All rights reserved.
5 * Copyright (c) 2005 Intel Corporation. All rights reserved.
6 *
Sean Heftya9474912008-07-14 23:48:43 -07007 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
Sean Hefty7025fcd2006-06-17 20:37:28 -070012 *
Sean Heftya9474912008-07-14 23:48:43 -070013 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
15 * conditions are met:
Sean Hefty7025fcd2006-06-17 20:37:28 -070016 *
Sean Heftya9474912008-07-14 23:48:43 -070017 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer.
Sean Hefty7025fcd2006-06-17 20:37:28 -070020 *
Sean Heftya9474912008-07-14 23:48:43 -070021 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
Sean Hefty7025fcd2006-06-17 20:37:28 -070025 *
Sean Heftya9474912008-07-14 23:48:43 -070026 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 * SOFTWARE.
Sean Hefty7025fcd2006-06-17 20:37:28 -070034 */
35
36#include <linux/mutex.h>
37#include <linux/inetdevice.h>
38#include <linux/workqueue.h>
Sean Hefty7025fcd2006-06-17 20:37:28 -070039#include <net/arp.h>
40#include <net/neighbour.h>
41#include <net/route.h>
Tom Tuckere795d092006-07-30 20:44:19 -070042#include <net/netevent.h>
Aleksey Senin38617c62008-12-24 10:16:37 -080043#include <net/addrconf.h>
44#include <net/ip6_route.h>
Sean Hefty7025fcd2006-06-17 20:37:28 -070045#include <rdma/ib_addr.h>
46
47MODULE_AUTHOR("Sean Hefty");
48MODULE_DESCRIPTION("IB Address Translation");
49MODULE_LICENSE("Dual BSD/GPL");
50
51struct addr_req {
52 struct list_head list;
Aleksey Senin38617c62008-12-24 10:16:37 -080053 struct sockaddr_storage src_addr;
54 struct sockaddr_storage dst_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -070055 struct rdma_dev_addr *addr;
Sean Hefty7a118df2006-10-31 11:12:59 -080056 struct rdma_addr_client *client;
Sean Hefty7025fcd2006-06-17 20:37:28 -070057 void *context;
58 void (*callback)(int status, struct sockaddr *src_addr,
59 struct rdma_dev_addr *addr, void *context);
60 unsigned long timeout;
61 int status;
62};
63
David Howellsc4028952006-11-22 14:57:56 +000064static void process_req(struct work_struct *work);
Sean Hefty7025fcd2006-06-17 20:37:28 -070065
66static DEFINE_MUTEX(lock);
67static LIST_HEAD(req_list);
David Howellsc4028952006-11-22 14:57:56 +000068static DECLARE_DELAYED_WORK(work, process_req);
Sean Hefty7025fcd2006-06-17 20:37:28 -070069static struct workqueue_struct *addr_wq;
70
Sean Hefty7a118df2006-10-31 11:12:59 -080071void rdma_addr_register_client(struct rdma_addr_client *client)
72{
73 atomic_set(&client->refcount, 1);
74 init_completion(&client->comp);
75}
76EXPORT_SYMBOL(rdma_addr_register_client);
77
78static inline void put_client(struct rdma_addr_client *client)
79{
80 if (atomic_dec_and_test(&client->refcount))
81 complete(&client->comp);
82}
83
84void rdma_addr_unregister_client(struct rdma_addr_client *client)
85{
86 put_client(client);
87 wait_for_completion(&client->comp);
88}
89EXPORT_SYMBOL(rdma_addr_unregister_client);
90
Tom Tucker07ebafb2006-08-03 16:02:42 -050091int rdma_copy_addr(struct rdma_dev_addr *dev_addr, struct net_device *dev,
92 const unsigned char *dst_dev_addr)
Sean Hefty7025fcd2006-06-17 20:37:28 -070093{
Sean Heftyc4315d82009-11-19 12:57:18 -080094 dev_addr->dev_type = dev->type;
Sean Hefty7025fcd2006-06-17 20:37:28 -070095 memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN);
96 memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN);
97 if (dst_dev_addr)
98 memcpy(dev_addr->dst_dev_addr, dst_dev_addr, MAX_ADDR_LEN);
Sean Hefty6266ed62009-11-19 12:55:22 -080099 dev_addr->bound_dev_if = dev->ifindex;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700100 return 0;
101}
Tom Tucker07ebafb2006-08-03 16:02:42 -0500102EXPORT_SYMBOL(rdma_copy_addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700103
104int rdma_translate_ip(struct sockaddr *addr, struct rdma_dev_addr *dev_addr)
105{
106 struct net_device *dev;
Aleksey Senin38617c62008-12-24 10:16:37 -0800107 int ret = -EADDRNOTAVAIL;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700108
Sean Hefty6266ed62009-11-19 12:55:22 -0800109 if (dev_addr->bound_dev_if) {
110 dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if);
111 if (!dev)
112 return -ENODEV;
113 ret = rdma_copy_addr(dev_addr, dev, NULL);
114 dev_put(dev);
115 return ret;
116 }
117
Aleksey Senin38617c62008-12-24 10:16:37 -0800118 switch (addr->sa_family) {
119 case AF_INET:
120 dev = ip_dev_find(&init_net,
121 ((struct sockaddr_in *) addr)->sin_addr.s_addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700122
Aleksey Senin38617c62008-12-24 10:16:37 -0800123 if (!dev)
124 return ret;
125
126 ret = rdma_copy_addr(dev_addr, dev, NULL);
127 dev_put(dev);
128 break;
Roland Dreier2c4ab622008-12-29 23:37:14 -0800129
130#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Aleksey Senin38617c62008-12-24 10:16:37 -0800131 case AF_INET6:
Eric Dumazet0f9ea5d2009-11-18 14:24:34 -0800132 read_lock(&dev_base_lock);
Aleksey Senin38617c62008-12-24 10:16:37 -0800133 for_each_netdev(&init_net, dev) {
134 if (ipv6_chk_addr(&init_net,
135 &((struct sockaddr_in6 *) addr)->sin6_addr,
136 dev, 1)) {
137 ret = rdma_copy_addr(dev_addr, dev, NULL);
138 break;
139 }
140 }
Eric Dumazet0f9ea5d2009-11-18 14:24:34 -0800141 read_unlock(&dev_base_lock);
Aleksey Senin38617c62008-12-24 10:16:37 -0800142 break;
Roland Dreier2c4ab622008-12-29 23:37:14 -0800143#endif
Aleksey Senin38617c62008-12-24 10:16:37 -0800144 }
Sean Hefty7025fcd2006-06-17 20:37:28 -0700145 return ret;
146}
147EXPORT_SYMBOL(rdma_translate_ip);
148
149static void set_timeout(unsigned long time)
150{
151 unsigned long delay;
152
153 cancel_delayed_work(&work);
154
155 delay = time - jiffies;
156 if ((long)delay <= 0)
157 delay = 1;
158
159 queue_delayed_work(addr_wq, &work, delay);
160}
161
162static void queue_req(struct addr_req *req)
163{
164 struct addr_req *temp_req;
165
166 mutex_lock(&lock);
167 list_for_each_entry_reverse(temp_req, &req_list, list) {
Krishna Kumarf115db42006-10-17 10:09:09 +0530168 if (time_after_eq(req->timeout, temp_req->timeout))
Sean Hefty7025fcd2006-06-17 20:37:28 -0700169 break;
170 }
171
172 list_add(&req->list, &temp_req->list);
173
174 if (req_list.next == &req->list)
175 set_timeout(req->timeout);
176 mutex_unlock(&lock);
177}
178
Sean Hefty923c1002009-11-19 13:26:51 -0800179static int addr4_resolve(struct sockaddr_in *src_in,
180 struct sockaddr_in *dst_in,
181 struct rdma_dev_addr *addr)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700182{
Al Viro1b90c132008-03-29 03:10:28 +0000183 __be32 src_ip = src_in->sin_addr.s_addr;
184 __be32 dst_ip = dst_in->sin_addr.s_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700185 struct flowi fl;
186 struct rtable *rt;
187 struct neighbour *neigh;
188 int ret;
189
190 memset(&fl, 0, sizeof fl);
191 fl.nl_u.ip4_u.daddr = dst_ip;
192 fl.nl_u.ip4_u.saddr = src_ip;
Sean Hefty6266ed62009-11-19 12:55:22 -0800193 fl.oif = addr->bound_dev_if;
194
Denis V. Lunevf2063512008-01-22 22:07:34 -0800195 ret = ip_route_output_key(&init_net, &rt, &fl);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700196 if (ret)
197 goto out;
198
Sean Hefty923c1002009-11-19 13:26:51 -0800199 src_in->sin_family = AF_INET;
200 src_in->sin_addr.s_addr = rt->rt_src;
201
202 if (rt->idev->dev->flags & IFF_LOOPBACK) {
203 ret = rdma_translate_ip((struct sockaddr *) dst_in, addr);
204 if (!ret)
205 memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN);
206 goto put;
207 }
208
Sean Hefty7025fcd2006-06-17 20:37:28 -0700209 /* If the device does ARP internally, return 'done' */
210 if (rt->idev->dev->flags & IFF_NOARP) {
Tom Tucker07ebafb2006-08-03 16:02:42 -0500211 rdma_copy_addr(addr, rt->idev->dev, NULL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700212 goto put;
213 }
214
215 neigh = neigh_lookup(&arp_tbl, &rt->rt_gateway, rt->idev->dev);
Sean Hefty923c1002009-11-19 13:26:51 -0800216 if (!neigh || !(neigh->nud_state & NUD_VALID)) {
217 neigh_event_send(rt->u.dst.neighbour, NULL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700218 ret = -ENODATA;
Sean Hefty923c1002009-11-19 13:26:51 -0800219 if (neigh)
220 goto release;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700221 goto put;
222 }
223
Tom Tucker07ebafb2006-08-03 16:02:42 -0500224 ret = rdma_copy_addr(addr, neigh->dev, neigh->ha);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700225release:
226 neigh_release(neigh);
227put:
228 ip_rt_put(rt);
229out:
230 return ret;
231}
232
Roland Dreier2c4ab622008-12-29 23:37:14 -0800233#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Sean Heftyd14714d2009-11-19 16:46:25 -0800234static int addr6_resolve(struct sockaddr_in6 *src_in,
235 struct sockaddr_in6 *dst_in,
236 struct rdma_dev_addr *addr)
Aleksey Senin38617c62008-12-24 10:16:37 -0800237{
238 struct flowi fl;
239 struct neighbour *neigh;
240 struct dst_entry *dst;
Sean Heftyd14714d2009-11-19 16:46:25 -0800241 int ret;
Aleksey Senin38617c62008-12-24 10:16:37 -0800242
243 memset(&fl, 0, sizeof fl);
Sean Heftyd14714d2009-11-19 16:46:25 -0800244 ipv6_addr_copy(&fl.fl6_dst, &dst_in->sin6_addr);
245 ipv6_addr_copy(&fl.fl6_src, &src_in->sin6_addr);
Sean Hefty6266ed62009-11-19 12:55:22 -0800246 fl.oif = addr->bound_dev_if;
Aleksey Senin38617c62008-12-24 10:16:37 -0800247
248 dst = ip6_route_output(&init_net, NULL, &fl);
Sean Heftyd14714d2009-11-19 16:46:25 -0800249 if ((ret = dst->error))
250 goto put;
Aleksey Senin38617c62008-12-24 10:16:37 -0800251
Sean Heftyd14714d2009-11-19 16:46:25 -0800252 if (ipv6_addr_any(&fl.fl6_src)) {
253 ret = ipv6_dev_get_saddr(&init_net, ip6_dst_idev(dst)->dev,
254 &fl.fl6_dst, 0, &fl.fl6_src);
255 if (ret)
256 goto put;
257
258 src_in->sin6_family = AF_INET6;
259 ipv6_addr_copy(&src_in->sin6_addr, &fl.fl6_src);
Aleksey Senin38617c62008-12-24 10:16:37 -0800260 }
261
Sean Heftyd14714d2009-11-19 16:46:25 -0800262 if (dst->dev->flags & IFF_LOOPBACK) {
263 ret = rdma_translate_ip((struct sockaddr *) dst_in, addr);
264 if (!ret)
265 memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN);
266 goto put;
267 }
268
269 /* If the device does ARP internally, return 'done' */
270 if (dst->dev->flags & IFF_NOARP) {
271 ret = rdma_copy_addr(addr, dst->dev, NULL);
272 goto put;
273 }
274
275 neigh = dst->neighbour;
276 if (!neigh || !(neigh->nud_state & NUD_VALID)) {
277 neigh_event_send(dst->neighbour, NULL);
278 ret = -ENODATA;
279 goto put;
280 }
281
282 ret = rdma_copy_addr(addr, dst->dev, neigh->ha);
283put:
Aleksey Senin38617c62008-12-24 10:16:37 -0800284 dst_release(dst);
285 return ret;
286}
Roland Dreier2c4ab622008-12-29 23:37:14 -0800287#else
Sean Heftyd14714d2009-11-19 16:46:25 -0800288static int addr6_resolve(struct sockaddr_in6 *src_in,
289 struct sockaddr_in6 *dst_in,
290 struct rdma_dev_addr *addr)
Roland Dreier2c4ab622008-12-29 23:37:14 -0800291{
292 return -EADDRNOTAVAIL;
293}
294#endif
Aleksey Senin38617c62008-12-24 10:16:37 -0800295
Sean Hefty923c1002009-11-19 13:26:51 -0800296static int addr_resolve(struct sockaddr *src_in,
297 struct sockaddr *dst_in,
298 struct rdma_dev_addr *addr)
Aleksey Senin38617c62008-12-24 10:16:37 -0800299{
300 if (src_in->sa_family == AF_INET) {
Sean Hefty923c1002009-11-19 13:26:51 -0800301 return addr4_resolve((struct sockaddr_in *) src_in,
Aleksey Senin38617c62008-12-24 10:16:37 -0800302 (struct sockaddr_in *) dst_in, addr);
303 } else
Sean Heftyd14714d2009-11-19 16:46:25 -0800304 return addr6_resolve((struct sockaddr_in6 *) src_in,
Aleksey Senin38617c62008-12-24 10:16:37 -0800305 (struct sockaddr_in6 *) dst_in, addr);
306}
307
David Howellsc4028952006-11-22 14:57:56 +0000308static void process_req(struct work_struct *work)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700309{
310 struct addr_req *req, *temp_req;
Aleksey Senin38617c62008-12-24 10:16:37 -0800311 struct sockaddr *src_in, *dst_in;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700312 struct list_head done_list;
313
314 INIT_LIST_HEAD(&done_list);
315
316 mutex_lock(&lock);
317 list_for_each_entry_safe(req, temp_req, &req_list, list) {
Krishna Kumarc78bb842006-11-24 16:02:34 +0530318 if (req->status == -ENODATA) {
Aleksey Senin38617c62008-12-24 10:16:37 -0800319 src_in = (struct sockaddr *) &req->src_addr;
320 dst_in = (struct sockaddr *) &req->dst_addr;
Sean Hefty923c1002009-11-19 13:26:51 -0800321 req->status = addr_resolve(src_in, dst_in, req->addr);
Krishna Kumarc78bb842006-11-24 16:02:34 +0530322 if (req->status && time_after_eq(jiffies, req->timeout))
323 req->status = -ETIMEDOUT;
324 else if (req->status == -ENODATA)
325 continue;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700326 }
Roland Dreier04699a12006-11-29 15:33:09 -0800327 list_move_tail(&req->list, &done_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700328 }
329
330 if (!list_empty(&req_list)) {
331 req = list_entry(req_list.next, struct addr_req, list);
332 set_timeout(req->timeout);
333 }
334 mutex_unlock(&lock);
335
336 list_for_each_entry_safe(req, temp_req, &done_list, list) {
337 list_del(&req->list);
Aleksey Senin38617c62008-12-24 10:16:37 -0800338 req->callback(req->status, (struct sockaddr *) &req->src_addr,
339 req->addr, req->context);
Sean Hefty7a118df2006-10-31 11:12:59 -0800340 put_client(req->client);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700341 kfree(req);
342 }
343}
344
Sean Hefty7a118df2006-10-31 11:12:59 -0800345int rdma_resolve_ip(struct rdma_addr_client *client,
346 struct sockaddr *src_addr, struct sockaddr *dst_addr,
Sean Hefty7025fcd2006-06-17 20:37:28 -0700347 struct rdma_dev_addr *addr, int timeout_ms,
348 void (*callback)(int status, struct sockaddr *src_addr,
349 struct rdma_dev_addr *addr, void *context),
350 void *context)
351{
Aleksey Senin38617c62008-12-24 10:16:37 -0800352 struct sockaddr *src_in, *dst_in;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700353 struct addr_req *req;
354 int ret = 0;
355
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700356 req = kzalloc(sizeof *req, GFP_KERNEL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700357 if (!req)
358 return -ENOMEM;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700359
Sean Heftyd2e08862009-11-19 12:55:22 -0800360 src_in = (struct sockaddr *) &req->src_addr;
361 dst_in = (struct sockaddr *) &req->dst_addr;
362
363 if (src_addr) {
364 if (src_addr->sa_family != dst_addr->sa_family) {
365 ret = -EINVAL;
366 goto err;
367 }
368
369 memcpy(src_in, src_addr, ip_addr_size(src_addr));
370 } else {
371 src_in->sa_family = dst_addr->sa_family;
372 }
373
374 memcpy(dst_in, dst_addr, ip_addr_size(dst_addr));
Sean Hefty7025fcd2006-06-17 20:37:28 -0700375 req->addr = addr;
376 req->callback = callback;
377 req->context = context;
Sean Hefty7a118df2006-10-31 11:12:59 -0800378 req->client = client;
379 atomic_inc(&client->refcount);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700380
Sean Heftyd14714d2009-11-19 16:46:25 -0800381 req->status = addr_resolve(src_in, dst_in, addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700382 switch (req->status) {
383 case 0:
384 req->timeout = jiffies;
385 queue_req(req);
386 break;
387 case -ENODATA:
388 req->timeout = msecs_to_jiffies(timeout_ms) + jiffies;
389 queue_req(req);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700390 break;
391 default:
392 ret = req->status;
Sean Hefty7a118df2006-10-31 11:12:59 -0800393 atomic_dec(&client->refcount);
Sean Heftyd2e08862009-11-19 12:55:22 -0800394 goto err;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700395 }
396 return ret;
Sean Heftyd2e08862009-11-19 12:55:22 -0800397err:
398 kfree(req);
399 return ret;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700400}
401EXPORT_SYMBOL(rdma_resolve_ip);
402
403void rdma_addr_cancel(struct rdma_dev_addr *addr)
404{
405 struct addr_req *req, *temp_req;
406
407 mutex_lock(&lock);
408 list_for_each_entry_safe(req, temp_req, &req_list, list) {
409 if (req->addr == addr) {
410 req->status = -ECANCELED;
411 req->timeout = jiffies;
Roland Dreier04699a12006-11-29 15:33:09 -0800412 list_move(&req->list, &req_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700413 set_timeout(req->timeout);
414 break;
415 }
416 }
417 mutex_unlock(&lock);
418}
419EXPORT_SYMBOL(rdma_addr_cancel);
420
Roland Dreier3cd96562006-09-22 15:22:46 -0700421static int netevent_callback(struct notifier_block *self, unsigned long event,
Tom Tuckere795d092006-07-30 20:44:19 -0700422 void *ctx)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700423{
Roland Dreier3cd96562006-09-22 15:22:46 -0700424 if (event == NETEVENT_NEIGH_UPDATE) {
Tom Tuckere795d092006-07-30 20:44:19 -0700425 struct neighbour *neigh = ctx;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700426
Steve Wise1f126672007-01-23 19:03:17 -0600427 if (neigh->nud_state & NUD_VALID) {
Tom Tuckere795d092006-07-30 20:44:19 -0700428 set_timeout(jiffies);
429 }
430 }
Sean Hefty7025fcd2006-06-17 20:37:28 -0700431 return 0;
432}
433
Tom Tuckere795d092006-07-30 20:44:19 -0700434static struct notifier_block nb = {
435 .notifier_call = netevent_callback
Sean Hefty7025fcd2006-06-17 20:37:28 -0700436};
437
Peter Huewe716abb12009-06-23 10:38:42 -0700438static int __init addr_init(void)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700439{
Sean Heftyc7f743a2007-02-01 12:23:37 -0800440 addr_wq = create_singlethread_workqueue("ib_addr");
Sean Hefty7025fcd2006-06-17 20:37:28 -0700441 if (!addr_wq)
442 return -ENOMEM;
443
Tom Tuckere795d092006-07-30 20:44:19 -0700444 register_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700445 return 0;
446}
447
Peter Huewe716abb12009-06-23 10:38:42 -0700448static void __exit addr_cleanup(void)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700449{
Tom Tuckere795d092006-07-30 20:44:19 -0700450 unregister_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700451 destroy_workqueue(addr_wq);
452}
453
454module_init(addr_init);
455module_exit(addr_cleanup);