iwlwifi: mvm: add compile-time option to disable EBS
[linux-2.6/btrfs-unstable.git] / include / net / netevent.h
blobf440df172b5603eb307a4fd0378dcc9f77d05277
1 #ifndef _NET_EVENT_H
2 #define _NET_EVENT_H
4 /*
5 * Generic netevent notifiers
7 * Authors:
8 * Tom Tucker <tom@opengridcomputing.com>
9 * Steve Wise <swise@opengridcomputing.com>
11 * Changes:
14 struct dst_entry;
15 struct neighbour;
17 struct netevent_redirect {
18 struct dst_entry *old;
19 struct dst_entry *new;
20 struct neighbour *neigh;
21 const void *daddr;
24 enum netevent_notif_type {
25 NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
26 NETEVENT_REDIRECT, /* arg is struct netevent_redirect ptr */
27 NETEVENT_DELAY_PROBE_TIME_UPDATE, /* arg is struct neigh_parms ptr */
30 int register_netevent_notifier(struct notifier_block *nb);
31 int unregister_netevent_notifier(struct notifier_block *nb);
32 int call_netevent_notifiers(unsigned long val, void *v);
34 #endif