diff options
| author | John W. Linville <linville@tuxdriver.com> | 2006-08-04 14:24:15 -0400 |
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2006-08-04 14:24:15 -0400 |
| commit | 71bfe47f023c55c322607939b786ce0a44627dfc (patch) | |
| tree | f59c37feb00f1df2e0f4ec282ae9c80ad6bb0cdc /include/net/netevent.h | |
| parent | 73c1ac1e3b6c989b9b5f7b2313ac590a1c3b6d6a (diff) | |
| parent | efe78cda3596f8a6d1c2d4a6b1a221bafa3e1a48 (diff) | |
Merge branch 'from-linus' into upstream
Diffstat (limited to 'include/net/netevent.h')
| -rw-r--r-- | include/net/netevent.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/net/netevent.h b/include/net/netevent.h new file mode 100644 index 000000000000..e5d216241423 --- /dev/null +++ b/include/net/netevent.h | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | #ifndef _NET_EVENT_H | ||
| 2 | #define _NET_EVENT_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Generic netevent notifiers | ||
| 6 | * | ||
| 7 | * Authors: | ||
| 8 | * Tom Tucker <tom@opengridcomputing.com> | ||
| 9 | * Steve Wise <swise@opengridcomputing.com> | ||
| 10 | * | ||
| 11 | * Changes: | ||
| 12 | */ | ||
| 13 | #ifdef __KERNEL__ | ||
| 14 | |||
| 15 | #include <net/dst.h> | ||
| 16 | |||
| 17 | struct netevent_redirect { | ||
| 18 | struct dst_entry *old; | ||
| 19 | struct dst_entry *new; | ||
| 20 | }; | ||
| 21 | |||
| 22 | enum netevent_notif_type { | ||
| 23 | NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */ | ||
| 24 | NETEVENT_PMTU_UPDATE, /* arg is struct dst_entry ptr */ | ||
| 25 | NETEVENT_REDIRECT, /* arg is struct netevent_redirect ptr */ | ||
| 26 | }; | ||
| 27 | |||
| 28 | extern int register_netevent_notifier(struct notifier_block *nb); | ||
| 29 | extern int unregister_netevent_notifier(struct notifier_block *nb); | ||
| 30 | extern int call_netevent_notifiers(unsigned long val, void *v); | ||
| 31 | |||
| 32 | #endif | ||
| 33 | #endif | ||
