cregit-Linux how code gets into the kernel

Release 4.7 include/net/netevent.h

Directory: include/net
#ifndef _NET_EVENT_H

#define _NET_EVENT_H

/*
 *      Generic netevent notifiers
 *
 *      Authors:
 *      Tom Tucker              <tom@opengridcomputing.com>
 *      Steve Wise              <swise@opengridcomputing.com>
 *
 *      Changes:
 */

struct dst_entry;
struct neighbour;


struct netevent_redirect {
	
struct dst_entry *old;
	
struct dst_entry *new;
	
struct neighbour *neigh;
	
const void *daddr;
};


enum netevent_notif_type {
	
NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
	
NETEVENT_REDIRECT,	   /* arg is struct netevent_redirect ptr */
};

int register_netevent_notifier(struct notifier_block *nb);
int unregister_netevent_notifier(struct notifier_block *nb);
int call_netevent_notifiers(unsigned long val, void *v);

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
tom tuckertom tucker6780.72%125.00%
david s. millerdavid s. miller1214.46%125.00%
herbert xuherbert xu33.61%125.00%
hideaki yoshifujihideaki yoshifuji11.20%125.00%
Total83100.00%4100.00%
Directory: include/net
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}