lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 14 Dec 2012 01:56:54 -0800
From:	Roland Dreier <roland@...nel.org>
To:	Linus Torvalds <torvalds@...ux-foundation.org>
Cc:	LKML <linux-kernel@...r.kernel.org>,
	"linux-rdma@...r.kernel.org" <linux-rdma@...r.kernel.org>
Subject: Re: [GIT PULL] please pull infiniband.git

On Mon, Dec 10, 2012 at 9:59 PM, Roland Dreier <roland@...nel.org> wrote:
> Hi Linus,
>
> Please pull from
>
>     git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git tags/rdma-for-linus

Hi Linus,

Any problem with this tree, or did it just slip through the cracks?

Thanks,
  Roland

> ----------------------------------------------------------------
>
> First batch of InfiniBand/RDMA changes for the 3.8 merge window:
>  - A good chunk of Bart Van Assche's SRP fixes
>  - UAPI disintegration from David Howells
>  - mlx4 support for "64-byte CQE" hardware feature from Or Gerlitz
>  - Other miscellaneous fixes
>
> ----------------------------------------------------------------
> Alan Cox (2):
>       IB/ipath: Remove unreachable code
>       RDMA/amsol1100: Fix missing break
>
> Bart Van Assche (14):
>       IB/srp: Increase block layer timeout
>       IB/srp: Eliminate state SRP_TARGET_CONNECTING
>       IB/srp: Keep processing commands during host removal
>       IB/srp: Simplify SCSI error handling
>       IB/srp: Introduce srp_handle_qp_err()
>       IB/srp: Process all error completions
>       IB/srp: Suppress superfluous error messages
>       IB/srp: Introduce the helper function srp_remove_target()
>       IB/srp: Eliminate state SRP_TARGET_DEAD
>       IB/srp: Document sysfs attributes
>       srp_transport: Fix attribute registration
>       srp_transport: Simplify attribute initialization code
>       srp_transport: Document sysfs attributes
>       IB/srp: Allow SRP disconnect through sysfs
>
> David Howells (1):
>       UAPI: (Scripted) Disintegrate include/rdma
>
> Ishai Rabinovitz (1):
>       IB/srp: destroy and recreate QP and CQs when reconnecting
>
> Jack Morgenstein (2):
>       IB/mlx4: Fix spinlock order to avoid lockdep warnings
>       mlx4_core: Fix potential deadlock in mlx4_eq_int()
>
> Julia Lawall (3):
>       RDMA/nes: Use WARN()
>       RDMA/cxgb4: use WARN
>       RDMA/cxgb3: use WARN
>
> Or Gerlitz (1):
>       mlx4: 64-byte CQE/EQE support
>
> Roland Dreier (4):
>       Merge branches 'cxgb4', 'misc', 'mlx4', 'nes' and 'uapi' into for-next
>       Merge branches 'cma' and 'mlx4' into for-next
>       Merge branch 'srp' into for-next
>       Merge branch 'nes' into for-next
>
> Tatyana Nikolova (7):
>       RDMA/nes: Fix incorrect address of IP header
>       RDMA/nes: Fix for unlinking skbs from empty list
>       RDMA/nes: Fix for sending fpdus in order to hardware
>       RDMA/nes: Fix for incorrect multicast address in the perfect filter table
>       RDMA/nes: Fix for BUG_ON due to adding already-pending timer
>       RDMA/nes: Fix for terminate timer crash
>       RDMA/nes: Fix for crash when registering zero length MR for CQ
>
> Vu Pham (1):
>       IB/srp: send disconnect request without waiting for CM timewait exit
>
> shefty (1):
>       RDMA/cm: Change return value from find_gid_port()
>
>  Documentation/ABI/stable/sysfs-driver-ib_srp   |  156 ++++++++++++
>  Documentation/ABI/stable/sysfs-transport-srp   |   19 ++
>  drivers/infiniband/core/cma.c                  |    9 +-
>  drivers/infiniband/hw/amso1100/c2_ae.c         |    1 +
>  drivers/infiniband/hw/cxgb3/iwch_cm.c          |    6 +-
>  drivers/infiniband/hw/cxgb4/cm.c               |    6 +-
>  drivers/infiniband/hw/ipath/ipath_init_chip.c  |   10 -
>  drivers/infiniband/hw/mlx4/cm.c                |    4 +-
>  drivers/infiniband/hw/mlx4/cq.c                |   34 ++-
>  drivers/infiniband/hw/mlx4/main.c              |   27 +-
>  drivers/infiniband/hw/mlx4/mlx4_ib.h           |    1 +
>  drivers/infiniband/hw/mlx4/user.h              |   12 +-
>  drivers/infiniband/hw/nes/nes.h                |    1 +
>  drivers/infiniband/hw/nes/nes_cm.c             |   32 +--
>  drivers/infiniband/hw/nes/nes_hw.c             |    9 +-
>  drivers/infiniband/hw/nes/nes_mgt.c            |   42 ++--
>  drivers/infiniband/hw/nes/nes_nic.c            |   13 +-
>  drivers/infiniband/hw/nes/nes_verbs.c          |    9 +-
>  drivers/infiniband/ulp/srp/ib_srp.c            |  314 ++++++++++++++----------
>  drivers/infiniband/ulp/srp/ib_srp.h            |   11 +-
>  drivers/net/ethernet/mellanox/mlx4/cmd.c       |   11 +-
>  drivers/net/ethernet/mellanox/mlx4/en_cq.c     |    2 +-
>  drivers/net/ethernet/mellanox/mlx4/en_netdev.c |    1 +
>  drivers/net/ethernet/mellanox/mlx4/en_rx.c     |    5 +-
>  drivers/net/ethernet/mellanox/mlx4/en_tx.c     |    5 +-
>  drivers/net/ethernet/mellanox/mlx4/eq.c        |   36 ++-
>  drivers/net/ethernet/mellanox/mlx4/fw.c        |   30 ++-
>  drivers/net/ethernet/mellanox/mlx4/fw.h        |    1 +
>  drivers/net/ethernet/mellanox/mlx4/main.c      |   38 ++-
>  drivers/net/ethernet/mellanox/mlx4/mlx4_en.h   |    1 +
>  drivers/scsi/scsi_transport_srp.c              |   51 ++--
>  include/linux/mlx4/device.h                    |   21 ++
>  include/rdma/Kbuild                            |    6 -
>  include/rdma/rdma_netlink.h                    |   36 +--
>  include/scsi/scsi_transport_srp.h              |    8 +
>  include/uapi/rdma/Kbuild                       |    6 +
>  include/{ => uapi}/rdma/ib_user_cm.h           |    0
>  include/{ => uapi}/rdma/ib_user_mad.h          |    0
>  include/{ => uapi}/rdma/ib_user_sa.h           |    0
>  include/{ => uapi}/rdma/ib_user_verbs.h        |    0
>  include/uapi/rdma/rdma_netlink.h               |   37 +++
>  include/{ => uapi}/rdma/rdma_user_cm.h         |    0
>  42 files changed, 689 insertions(+), 322 deletions(-)
>  create mode 100644 Documentation/ABI/stable/sysfs-driver-ib_srp
>  create mode 100644 Documentation/ABI/stable/sysfs-transport-srp
>  rename include/{ => uapi}/rdma/ib_user_cm.h (100%)
>  rename include/{ => uapi}/rdma/ib_user_mad.h (100%)
>  rename include/{ => uapi}/rdma/ib_user_sa.h (100%)
>  rename include/{ => uapi}/rdma/ib_user_verbs.h (100%)
>  create mode 100644 include/uapi/rdma/rdma_netlink.h
>  rename include/{ => uapi}/rdma/rdma_user_cm.h (100%)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ