1. 23 Jun, 2012 2 commits
  2. 22 Jun, 2012 1 commit
  3. 20 Jun, 2012 1 commit
  4. 19 Jun, 2012 5 commits
    • stigge@antcom.de's avatar
      net: lpc_eth: Driver cleanup · b31525d1
      stigge@antcom.de authored
      This patch removes some nowadays superfluous definitions (one unused define and
      an obsolete function forward declaration) and corrects a netdev_err() to
      netdev_dbg().
      Signed-off-by: default avatarRoland Stigge <stigge@antcom.de>
      Signed-off-by: default avatarAlexandre Pereira da Silva <aletes.xgr@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b31525d1
    • Pablo Neira Ayuso's avatar
      netfilter: fix missing symbols if CONFIG_NETFILTER_NETLINK_QUEUE_CT unset · 674147e2
      Pablo Neira Ayuso authored
      ERROR: "nfqnl_ct_parse" [net/netfilter/nfnetlink_queue.ko] undefined!
      ERROR: "nfqnl_ct_seq_adjust" [net/netfilter/nfnetlink_queue.ko] undefined!
      ERROR: "nfqnl_ct_put" [net/netfilter/nfnetlink_queue.ko] undefined!
      ERROR: "nfqnl_ct_get" [net/netfilter/nfnetlink_queue.ko] undefined!
      
      We have to use CONFIG_NETFILTER_NETLINK_QUEUE_CT in
      include/net/netfilter/nfnetlink_queue.h, not CONFIG_NF_CONNTRACK.
      Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      674147e2
    • David S. Miller's avatar
      Merge branch 'master' of git://1984.lsi.us.es/nf-next · 6bdc5f49
      David S. Miller authored
      Pablo says:
      
      ====================
      The following patchset provides fixes for issues that were recently introduced
      by my new cthelper infrastructure. They have been spotted by Randy Dunlap,
      Andrew Morton and Dan Carpenter.
      
      The patches provide:
      
      * compilation fixes if CONFIG_NF_CONNTRACK is disabled: I moved all the
        conntrack code from nfnetlink_queue.c to nfnetlink_queue_ct.c to avoid
        peppering the entire code with lots of ifdefs. I needed to rename
        nfnetlink_queue.c to nfnetlink_queue_core.c to get it working with the
        Makefile tweaks I've added.
      
      * fix NULL pointer dereference via ctnetlink while trying to change the helper
        for an existing conntrack entry. I don't find any reasonable use case for
        changing the helper from one to another in run-time. Thus, now ctnetlink
        returns -EOPNOTSUPP for this operation.
      
      * fix possible out-of-bound zeroing of the conntrack extension area due to
        the helper automatic assignation routine.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6bdc5f49
    • David S. Miller's avatar
      Merge tag 'batman-adv-for-davem' of git://git.open-mesh.org/linux-merge · f032537f
      David S. Miller authored
      Included changes:
      
      * major skb->data pointer usage fix
      * interval version update
      * added get_ethtool_stats() support
      * endianess clean up
      * routing protocol API improvement wrt TT commit code
      * fix locking in hash table code
      * minor cleanups and fixes
      f032537f
    • Pablo Neira Ayuso's avatar
      netfilter: nfnetlink_queue: fix compilation with NF_CONNTRACK disabled · 7c622345
      Pablo Neira Ayuso authored
      In "9cb01766 netfilter: add glue code to integrate nfnetlink_queue and ctnetlink"
      the compilation with NF_CONNTRACK disabled is broken. This patch fixes this
      issue.
      
      I have moved the conntrack part into nfnetlink_queue_ct.c to avoid
      peppering the entire nfnetlink_queue.c code with ifdefs.
      
      I also needed to rename nfnetlink_queue.c to nfnetlink_queue_pkt.c
      to update the net/netfilter/Makefile to support conditional compilation
      of the conntrack integration.
      
      This patch also adds CONFIG_NETFILTER_QUEUE_CT in case you want to explicitly
      disable the integration between nf_conntrack and nfnetlink_queue.
      Reported-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
      7c622345
  5. 18 Jun, 2012 23 commits
  6. 17 Jun, 2012 6 commits
  7. 16 Jun, 2012 2 commits