~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to include/net/netevent.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 *
11
11
 *      Changes:
12
12
 */
13
 
#ifdef __KERNEL__
14
13
 
15
14
struct dst_entry;
16
15
 
21
20
 
22
21
enum netevent_notif_type {
23
22
        NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
24
 
        NETEVENT_PMTU_UPDATE,      /* arg is struct dst_entry ptr */
25
23
        NETEVENT_REDIRECT,         /* arg is struct netevent_redirect ptr */
26
24
};
27
25
 
30
28
extern int call_netevent_notifiers(unsigned long val, void *v);
31
29
 
32
30
#endif
33
 
#endif