6059283378
The only user is cxgb3 driver. old_neigh is used to check device change, but it must not happen on redirect. In this sense, we can remove old_neigh argument. Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
34 lines
760 B
C
34 lines
760 B
C
#ifndef _NET_EVENT_H
|
|
#define _NET_EVENT_H
|
|
|
|
/*
|
|
* Generic netevent notifiers
|
|
*
|
|
* Authors:
|
|
* Tom Tucker <tom@opengridcomputing.com>
|
|
* Steve Wise <swise@opengridcomputing.com>
|
|
*
|
|
* Changes:
|
|
*/
|
|
|
|
struct dst_entry;
|
|
struct neighbour;
|
|
|
|
struct netevent_redirect {
|
|
struct dst_entry *old;
|
|
struct dst_entry *new;
|
|
struct neighbour *neigh;
|
|
const void *daddr;
|
|
};
|
|
|
|
enum netevent_notif_type {
|
|
NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
|
|
NETEVENT_REDIRECT, /* arg is struct netevent_redirect ptr */
|
|
};
|
|
|
|
extern int register_netevent_notifier(struct notifier_block *nb);
|
|
extern int unregister_netevent_notifier(struct notifier_block *nb);
|
|
extern int call_netevent_notifiers(unsigned long val, void *v);
|
|
|
|
#endif
|