[rds-devel] Please pull RDS for OFED 1.5

Andy Grover andy.grover at oracle.com
Wed Aug 12 15:52:20 PDT 2009


Hi Vlad,

Please pull the following tree. It adds back TCP support to RDS, and
also breaks TCP and IB/iWARP into separately-loadable modules from core RDS.

Thanks -- Regards -- Andy

The following changes since commit 587c7e062b3d558a333991f57a7754c92bd8874a:
  Vladimir Sokolovsky (1):
        Merge branch 'dev' of
ssh://vlad@sofa.openfabrics.org/home/jon/scm/ofed_kernel-1.5 into
ofed_kernel_1_5

are available in the git repository at:

  git://git.openfabrics.org/~agrover/ofed_1_5/linux-2.6.git
code-drop/20090812

Andy Grover (8):
      RDS: Re-add TCP transport to RDS
      RDS: Export symbols from core RDS
      RDS: Modularize RDMA and TCP transports
      RDS: Track transports via an array, not a list
      RDS: Fix OFED build scripts for addition of RDS/TCP
      RDS: Fix backport scripts for RDS/TCP addition
      RDS: Remove rds_rdma.h
      RDS: Add a debug message suggesting to load transport modules

 include/linux/rds.h                                |   12 +
 .../backport/2.6.16_sles10_sp2/rds_to_2_6_28.patch |    5 +-
 .../backport/2.6.18-EL5.2/rds_to_2_6_28.patch      |    3 +-
 .../backport/2.6.18-EL5.3/rds_to_2_6_28.patch      |    3 +-
 .../backport/2.6.18-EL5.4/rds_to_2_6_28.patch      |    5 +-
 kernel_patches/backport/2.6.18/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.19/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.20/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.21/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.22/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.23/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.24/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.25/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.26/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.27/rds_to_2_6_28.patch |    3 +-
 kernel_patches/backport/2.6.28/rds_to_2_6_28.patch |    3 +-
 .../backport/2.6.9_U6/rds_to_2_6_28.patch          |    3 +-
 .../backport/2.6.9_U7/rds_to_2_6_28.patch          |    3 +-
 net/rds/Kconfig                                    |   14 +
 net/rds/Makefile                                   |   11 +-
 net/rds/af_rds.c                                   |    8 -
 net/rds/bind.c                                     |    3 +
 net/rds/cong.c                                     |    1 +
 net/rds/connection.c                               |    5 +
 net/rds/ib.c                                       |    1 +
 net/rds/info.c                                     |    3 +
 net/rds/iw.c                                       |    1 +
 net/rds/message.c                                  |    6 +
 net/rds/page.c                                     |    1 +
 net/rds/rdma_transport.c                           |    6 +
 net/rds/rds.h                                      |    6 +
 net/rds/rds_rdma.h                                 |  248 --------------
 net/rds/recv.c                                     |    4 +
 net/rds/send.c                                     |    3 +
 net/rds/stats.c                                    |    2 +
 net/rds/tcp.c                                      |  320
++++++++++++++++++
 net/rds/tcp.h                                      |   93 +++++
 net/rds/tcp_connect.c                              |  153 +++++++++
 net/rds/tcp_listen.c                               |  199 +++++++++++
 net/rds/tcp_recv.c                                 |  356
++++++++++++++++++++
 net/rds/tcp_send.c                                 |  263 +++++++++++++++
 net/rds/tcp_stats.c                                |   74 ++++
 net/rds/threads.c                                  |    2 +
 net/rds/transport.c                                |   31 ++-
 ofed_scripts/configure                             |   32 +-
 ofed_scripts/makefile                              |    4 +-
 46 files changed, 1612 insertions(+), 305 deletions(-)
 delete mode 100644 net/rds/rds_rdma.h
 create mode 100644 net/rds/tcp.c
 create mode 100644 net/rds/tcp.h
 create mode 100644 net/rds/tcp_connect.c
 create mode 100644 net/rds/tcp_listen.c
 create mode 100644 net/rds/tcp_recv.c
 create mode 100644 net/rds/tcp_send.c
 create mode 100644 net/rds/tcp_stats.c



More information about the rds-devel mailing list