USB: s3c-hsotg: Fix control request processing
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / net / netevent.h
blob22b239c17eaa4509cd24a19146dd5676ff5b989a
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:
13 #ifdef __KERNEL__
15 struct dst_entry;
17 struct netevent_redirect {
18 struct dst_entry *old;
19 struct dst_entry *new;
22 enum netevent_notif_type {
23 NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
24 NETEVENT_REDIRECT, /* arg is struct netevent_redirect ptr */
27 extern int register_netevent_notifier(struct notifier_block *nb);
28 extern int unregister_netevent_notifier(struct notifier_block *nb);
29 extern int call_netevent_notifiers(unsigned long val, void *v);
31 #endif
32 #endif