~ubuntu-branches/ubuntu/quantal/linux-lowlatency/quantal-proposed

« back to all changes in this revision

Viewing changes to net/ipv4/netfilter.c

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft, Andy Whitcroft
  • Date: 2012-06-21 09:16:38 UTC
  • Revision ID: package-import@ubuntu.com-20120621091638-gubhv4nox8xez1ct
Tags: 3.5.0-1.1
[ Andy Whitcroft]

* Rebuild lowlatency against Ubuntu-3.5.0-1.1
* All new configuration system to allow configuration deltas to be
  exposed via debian.lowlatency/config-delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#include <net/netfilter/nf_queue.h>
13
13
 
14
14
/* route_me_harder function, used by iptable_nat, iptable_mangle + ip_queue */
15
 
int ip_route_me_harder(struct sk_buff *skb, unsigned addr_type)
 
15
int ip_route_me_harder(struct sk_buff *skb, unsigned int addr_type)
16
16
{
17
17
        struct net *net = dev_net(skb_dst(skb)->dev);
18
18
        const struct iphdr *iph = ip_hdr(skb);
237
237
 
238
238
module_init(ipv4_netfilter_init);
239
239
module_exit(ipv4_netfilter_fini);
240
 
 
241
 
#ifdef CONFIG_SYSCTL
242
 
struct ctl_path nf_net_ipv4_netfilter_sysctl_path[] = {
243
 
        { .procname = "net", },
244
 
        { .procname = "ipv4", },
245
 
        { .procname = "netfilter", },
246
 
        { }
247
 
};
248
 
EXPORT_SYMBOL_GPL(nf_net_ipv4_netfilter_sysctl_path);
249
 
#endif /* CONFIG_SYSCTL */