Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

netfilter: nf_queue: whitespace cleanup

A future patch will modify the hook drop and outfn functions. This will
cause the line lengths to take up too much space. This is simply a
readability change.

Signed-off-by: Aaron Conole <aconole@bytheb.org>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

authored by

Aaron Conole and committed by
Pablo Neira Ayuso
54f17bbc d4bb5caa

+4 -4
+4 -4
include/net/netfilter/nf_queue.h
··· 22 22 23 23 /* Packet queuing */ 24 24 struct nf_queue_handler { 25 - int (*outfn)(struct nf_queue_entry *entry, 26 - unsigned int queuenum); 27 - void (*nf_hook_drop)(struct net *net, 28 - struct nf_hook_ops *ops); 25 + int (*outfn)(struct nf_queue_entry *entry, 26 + unsigned int queuenum); 27 + void (*nf_hook_drop)(struct net *net, 28 + struct nf_hook_ops *ops); 29 29 }; 30 30 31 31 void nf_register_queue_handler(struct net *net, const struct nf_queue_handler *qh);