1. 20 Oct, 2008 8 commits
  2. 16 Oct, 2008 6 commits
  3. 15 Oct, 2008 23 commits
  4. 14 Oct, 2008 3 commits
    • Randy Macleod's avatar
      Phonet: Simple doc fix. · 3497b2f2
      Randy Macleod authored
      From: "Randy Macleod" <macleodr@nortel.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      3497b2f2
    • Pablo Neira Ayuso's avatar
      netfilter: ctnetlink: remove bogus module dependency between ctnetlink and nf_nat · e6a7d3c0
      Pablo Neira Ayuso authored
      This patch removes the module dependency between ctnetlink and
      nf_nat by means of an indirect call that is initialized when
      nf_nat is loaded. Now, nf_conntrack_netlink only requires
      nf_conntrack and nfnetlink.
      
      This patch puts nfnetlink_parse_nat_setup_hook into the
      nf_conntrack_core to avoid dependencies between ctnetlink,
      nf_conntrack_ipv4 and nf_conntrack_ipv6.
      
      This patch also introduces the function ctnetlink_change_nat
      that is only invoked from the creation path. Actually, the
      nat handling cannot be invoked from the update path since
      this is not allowed. By introducing this function, we remove
      the useless nat handling in the update path and we avoid
      deadlock-prone code.
      
      This patch also adds the required EAGAIN logic for nfnetlink.
      Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e6a7d3c0
    • Patrick McHardy's avatar
      netfilter: fix ebtables dependencies · 129404a1
      Patrick McHardy authored
      Ingo Molnar reported a build error with ebtables:
      
      ERROR: "ebt_register_table" [net/bridge/netfilter/ebtable_filter.ko] undefined!
      ERROR: "ebt_do_table" [net/bridge/netfilter/ebtable_filter.ko] undefined!
      ERROR: "ebt_unregister_table" [net/bridge/netfilter/ebtable_filter.ko] undefined!
      ERROR: "ebt_register_table" [net/bridge/netfilter/ebtable_broute.ko] undefined!
      ERROR: "ebt_do_table" [net/bridge/netfilter/ebtable_broute.ko] undefined!
      ERROR: "ebt_unregister_table" [net/bridge/netfilter/ebtable_broute.ko] undefined!
      make[1]: *** [__modpost] Error 1
      make: *** [modules] Error 2
      
      This reason is a missing dependencies that got lost during Kconfig cleanups.
      Restore it.
      Tested-by: default avatarIngo Molnar <mingo@elte.hu>
      Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      129404a1