Hi Linus, Another small RC update, nothing too interesting, 5.9 is looking good so far. Thanks, Jason The following changes since commit d012a7190fc1fd72ed48911e77ca97ba4521bccd: Linux 5.9-rc2 (2020-08-23 14:08:43 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git tags/for-linus for you to fetch changes up to 0b089c1ef7047652b13b4cdfdb1e0e7dbdb8c9ab: IB/isert: Fix unaligned immediate-data handling (2020-09-09 13:46:03 -0300) ---------------------------------------------------------------- RDMA second 5.9-rc pull request A number of driver bug fixes and a few recent regressions: - Several bug fixes for bnxt_re. Crashing, incorrect data reported, and corruption on new HW - Memory leak and crash in rxe - Fix sysfs corruption in rxe if the netdev name is too long - Fix a crash on error unwind in the new cq_pool code - Fix kobject panics in rtrs by working device lifetime properly - Fix a data corruption bug in iser target related to misaligned buffers ---------------------------------------------------------------- Dinghao Liu (1): RDMA/rxe: Fix memleak in rxe_mem_init_user Kamal Heib (2): RDMA/rxe: Fix panic when calling kmem_cache_create() RDMA/core: Fix reported speed and width Mark Bloch (1): RDMA/mlx4: Read pkey table length instead of hardcoded value Md Haris Iqbal (2): RDMA/rtrs-srv: Replace device_register with device_initialize and device_add RDMA/rtrs-srv: Set .release function for rtrs srv device during device init Naresh Kumar PBS (3): RDMA/bnxt_re: Static NQ depth allocation RDMA/bnxt_re: Restrict the max_gids to 256 RDMA/bnxt_re: Fix driver crash on unaligned PSN entry address Sagi Grimberg (1): IB/isert: Fix unaligned immediate-data handling Selvin Xavier (3): RDMA/bnxt_re: Do not report transparent vlan from QP1 RDMA/bnxt_re: Fix the qp table indexing RDMA/bnxt_re: Remove the qp from list only if the qp destroy succeeds Xi Wang (1): RDMA/core: Fix unsafe linked list traversal after failing to allocate CQ Yi Zhang (1): RDMA/rxe: Fix the parent sysfs read when the interface has 15 chars YueHaibing (1): RDMA/bnxt_re: Remove set but not used variable 'qplib_ctx' drivers/infiniband/core/cq.c | 4 +- drivers/infiniband/core/verbs.c | 2 +- drivers/infiniband/hw/bnxt_re/ib_verbs.c | 43 ++++++++----- drivers/infiniband/hw/bnxt_re/main.c | 5 +- drivers/infiniband/hw/bnxt_re/qplib_fp.c | 26 +++++--- drivers/infiniband/hw/bnxt_re/qplib_rcfw.c | 10 +-- drivers/infiniband/hw/bnxt_re/qplib_rcfw.h | 5 ++ drivers/infiniband/hw/bnxt_re/qplib_sp.c | 2 +- drivers/infiniband/hw/bnxt_re/qplib_sp.h | 1 + drivers/infiniband/hw/mlx4/main.c | 3 +- drivers/infiniband/sw/rxe/rxe.c | 4 ++ drivers/infiniband/sw/rxe/rxe.h | 2 + drivers/infiniband/sw/rxe/rxe_mr.c | 1 + drivers/infiniband/sw/rxe/rxe_sysfs.c | 5 ++ drivers/infiniband/sw/rxe/rxe_verbs.c | 2 +- drivers/infiniband/ulp/isert/ib_isert.c | 93 ++++++++++++++-------------- drivers/infiniband/ulp/isert/ib_isert.h | 41 +++++++++--- drivers/infiniband/ulp/rtrs/rtrs-srv-sysfs.c | 16 ++--- drivers/infiniband/ulp/rtrs/rtrs-srv.c | 9 +++ 19 files changed, 168 insertions(+), 106 deletions(-)