jump label: Introduce static_branch() interface
[deliverable/linux.git] / include / net / netevent.h
CommitLineData
792d1932
TT
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
274b3426 15struct dst_entry;
792d1932
TT
16
17struct netevent_redirect {
18 struct dst_entry *old;
19 struct dst_entry *new;
20};
21
22enum netevent_notif_type {
23 NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
792d1932
TT
24 NETEVENT_REDIRECT, /* arg is struct netevent_redirect ptr */
25};
26
27extern int register_netevent_notifier(struct notifier_block *nb);
28extern int unregister_netevent_notifier(struct notifier_block *nb);
29extern int call_netevent_notifiers(unsigned long val, void *v);
30
31#endif
32#endif
This page took 0.410005 seconds and 5 git commands to generate.