1. 09 9月, 2010 9 次提交
    • A
      RDS: Explicitly allocate rm in sendmsg() · fc445084
      Andy Grover 提交于
      r_m_copy_from_user used to allocate the rm as well as kernel
      buffers for the data, and then copy the data in. Now, sendmsg()
      allocates the rm, although the data buffer alloc still happens
      in r_m_copy_from_user.
      
      SGs are still allocated with rm, but now r_m_alloc_sgs() is
      used to reserve them. This allows multiple SG lists to be
      allocated from the one rm -- this is important once we also
      want to alloc our rdma sgl from this pool.
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      fc445084
    • A
      RDS: cleanup/fix rds_rdma_unuse · 3ef13f3c
      Andy Grover 提交于
      First, it looks to me like the atomic_inc is wrong.
      We should be decrementing refcount only once here, no? It's
      already being done by the mr_put() at the end.
      
      Second, simplify the logic a bit by bailing early (with a warning)
      if !mr.
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      3ef13f3c
    • A
      RDS: break out rdma and data ops into nested structs in rds_message · e779137a
      Andy Grover 提交于
      Clearly separate rdma-related variables in rm from data-related ones.
      This is in anticipation of adding atomic support.
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      e779137a
    • A
      RDS: cleanup: remove "== NULL"s and "!= NULL"s in ptr comparisons · 8690bfa1
      Andy Grover 提交于
      Favor "if (foo)" style over "if (foo != NULL)".
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      8690bfa1
    • A
      RDS: move rds_shutdown_worker impl. to rds_conn_shutdown · 2dc39357
      Andy Grover 提交于
      This fits better in connection.c, rather than threads.c.
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      2dc39357
    • A
      RDS: Fix locking in send on m_rs_lock · 9de0864c
      Andy Grover 提交于
      Do not nest m_rs_lock under c_lock
      
      Disable interrupts in {rdma,atomic}_send_complete
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      9de0864c
    • A
      RDS: Rewrite rds_send_drop_to() for clarity · 7c82eaf0
      Andy Grover 提交于
      This function has been the source of numerous bugs; it's just
      too complicated. Simplified to nest spinlocks cleanly within
      the second loop body, and kick out early if there are no
      rms to drop.
      
      This will be a little slower because conn lock is grabbed for
      each entry instead of "caching" the lock across rms, but this
      should be entirely irrelevant to fastpath performance.
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      7c82eaf0
    • T
      RDS: Fix corrupted rds_mrs · 35b52c70
      Tina Yang 提交于
      On second look at this bug (OFED #2002), it seems that the
      collision is not with the retransmission queue (packet acked
      by the peer), but with the local send completion.  A theoretical
      sequence of events (from time t0 to t3) is thought to be as
      follows,
      
      Thread #1
      t0:
          sock_release
          rds_release
          rds_send_drop_to /* wait on send completion */
      t2:
          rds_rdma_drop_keys()   /* destroy & free all mrs */
      
      Thread #2
      t1:
          rds_ib_send_cq_comp_handler
          rds_ib_send_unmap_rm
          rds_message_unmapped   /* wake up #1 @ t0 */
      t3:
          rds_message_put
          rds_message_purge
          rds_mr_put   /* memory corruption detected */
      
      The problem with the rds_rdma_drop_keys() is it could
      remove a mr's refcount more than its due (i.e. repeatedly
      as long as it still remains in the tree (mr->r_refcount > 0)).
      Theoretically it should remove only one reference - reference
      by the tree.
      
              /* Release any MRs associated with this socket */
              while ((node = rb_first(&rs->rs_rdma_keys))) {
                      mr = container_of(node, struct rds_mr, r_rb_node);
                      if (mr->r_trans == rs->rs_transport)
                              mr->r_invalidate = 0;
                      rds_mr_put(mr);
              }
      
      I think the correct way of doing it is to remove the mr from
      the tree and rds_destroy_mr it first, then a rds_mr_put()
      to decrement its reference count by one.  Whichever thread
      holds the last reference will free the mr via rds_mr_put().
      Signed-off-by: NTina Yang <tina.yang@oracle.com>
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      35b52c70
    • A
      RDS: Fix BUG_ONs to not fire when in a tasklet · 9e2effba
      Andy Grover 提交于
      in_interrupt() is true in softirqs. The BUG_ONs are supposed
      to check for if irqs are disabled, so we should use
      BUG_ON(irqs_disabled()) instead, duh.
      Signed-off-by: NAndy Grover <andy.grover@oracle.com>
      9e2effba
  2. 19 8月, 2010 1 次提交
  3. 29 5月, 2010 1 次提交
  4. 18 5月, 2010 1 次提交
  5. 23 4月, 2010 1 次提交
  6. 21 4月, 2010 1 次提交
  7. 30 3月, 2010 1 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  8. 25 3月, 2010 1 次提交
  9. 17 3月, 2010 13 次提交
  10. 04 2月, 2010 1 次提交
  11. 30 11月, 2009 1 次提交
  12. 20 11月, 2009 1 次提交
    • S
      RDMA/cm: fix loopback address support · 6f8372b6
      Sean Hefty 提交于
      The RDMA CM is intended to support the use of a loopback address
      when establishing a connection; however, the behavior of the CM
      when loopback addresses are used is confusing and does not always
      work, depending on whether loopback was specified by the server,
      the client, or both.
      
      The defined behavior of rdma_bind_addr is to associate an RDMA
      device with an rdma_cm_id, as long as the user specified a non-
      zero address.  (ie they weren't just trying to reserve a port)
      Currently, if the loopback address is passed to rdam_bind_addr,
      no device is associated with the rdma_cm_id.  Fix this.
      
      If a loopback address is specified by the client as the destination
      address for a connection, it will fail to establish a connection.
      This is true even if the server is listing across all addresses or
      on the loopback address itself.  The issue is that the server tries
      to translate the IP address carried in the REQ message to a local
      net_device address, which fails.  The translation is not needed in
      this case, since the REQ carries the actual HW address that should
      be used.
      
      Finally, cleanup loopback support to be more transport neutral.
      Replace separate calls to get/set the sgid and dgid from the
      device address to a single call that behaves correctly depending
      on the format of the device address.  And support both IPv4 and
      IPv6 address formats.
      Signed-off-by: NSean Hefty <sean.hefty@intel.com>
      
      [ Fixed RDS build by s/ib_addr_get/rdma_addr_get/  - Roland ]
      Signed-off-by: NRoland Dreier <rolandd@cisco.com>
      6f8372b6
  13. 19 11月, 2009 1 次提交
  14. 12 11月, 2009 1 次提交
    • E
      sysctl net: Remove unused binary sysctl code · f8572d8f
      Eric W. Biederman 提交于
      Now that sys_sysctl is a compatiblity wrapper around /proc/sys
      all sysctl strategy routines, and all ctl_name and strategy
      entries in the sysctl tables are unused, and can be
      revmoed.
      
      In addition neigh_sysctl_register has been modified to no longer
      take a strategy argument and it's callers have been modified not
      to pass one.
      
      Cc: "David Miller" <davem@davemloft.net>
      Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
      Cc: netdev@vger.kernel.org
      Signed-off-by: NEric W. Biederman <ebiederm@xmission.com>
      f8572d8f
  15. 06 11月, 2009 1 次提交
  16. 31 10月, 2009 5 次提交