#ifndef CPUSCHED_H #define CPUSCHED_H extern void init_cpusched(unsigned int cpus); extern unsigned int socket_to_cpu(int fd); extern unsigned int register_socket(int fd); extern void unregister_socket(int fd); extern void destroy_cpusched(void); #endif /* CPUSCHED_H */ feed' href='https://git.distanz.ch/cgit.cgi/linux/net-next.git/atom/?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Conole <aconole@bytheb.org>2016-09-21 11:35:05 -0400
committerPablo Neira Ayuso <pablo@netfilter.org>2016-09-24 21:30:19 +0200
commitd4bb5caa9cc1a802ba25f605b24b5640c025806b (patch)
tree6386a7de4e22bb333ad4bbb0fa7dc92cbc941aa4
parente2361cb90a0327bdab34d01d1a7b9dbd67c31e60 (diff)
netfilter: Only allow sane values in nf_register_net_hook
This commit adds an upfront check for sane values to be passed when registering a netfilter hook. This will be used in a future patch for a simplified hook list traversal. Signed-off-by: Aaron Conole <aconole@bytheb.org> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r--net/netfilter/core.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/netfilter/core.c b/net/netfilter/core.c