1. 20 Jun, 2012 3 commits
    • Marc Kleine-Budde's avatar
      can: c_can_pci: fix compilation on non HAVE_CLK archs · 1aa2d1da
      Marc Kleine-Budde authored
      In commit:
      
        5b92da04 c_can_pci: generic module for C_CAN/D_CAN on PCI
      
      the c_can_pci driver has been added. It uses clk_*() functions
      resulting in a link error on archs without clock support. This
      patch removed these clk_() functions as these parts of the driver
      are not tested.
      
      Cc: Federico Vaga <federico.vaga@gmail.com>
      Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      1aa2d1da
    • David S. Miller's avatar
      ipv4: Early TCP socket demux. · 41063e9d
      David S. Miller authored
      Input packet processing for local sockets involves two major demuxes.
      One for the route and one for the socket.
      
      But we can optimize this down to one demux for certain kinds of local
      sockets.
      
      Currently we only do this for established TCP sockets, but it could
      at least in theory be expanded to other kinds of connections.
      
      If a TCP socket is established then it's identity is fully specified.
      
      This means that whatever input route was used during the three-way
      handshake must work equally well for the rest of the connection since
      the keys will not change.
      
      Once we move to established state, we cache the receive packet's input
      route to use later.
      
      Like the existing cached route in sk->sk_dst_cache used for output
      packets, we have to check for route invalidations using dst->obsolete
      and dst->ops->check().
      
      Early demux occurs outside of a socket locked section, so when a route
      invalidation occurs we defer the fixup of sk->sk_rx_dst until we are
      actually inside of established state packet processing and thus have
      the socket locked.
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      41063e9d
    • David S. Miller's avatar
      inet: Sanitize inet{,6} protocol demux. · f9242b6b
      David S. Miller authored
      Don't pretend that inet_protos[] and inet6_protos[] are hashes, thay
      are just a straight arrays.  Remove all unnecessary hash masking.
      
      Document MAX_INET_PROTOS.
      
      Use RAW_HTABLE_SIZE when appropriate.
      Reported-by: default avatarBen Hutchings <bhutchings@solarflare.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      f9242b6b
  2. 19 Jun, 2012 37 commits