All of lore.kernel.org
 help / color / mirror / Atom feed
From: Roland Dreier <rdreier@cisco.com>
To: torvalds@osdl.org
Cc: linux-kernel@vger.kernel.org, openib-general@openib.org,
	bos@pathscale.com
Subject: [git pull] InfiniBand: Add PathScale driver
Date: Fri, 31 Mar 2006 13:19:41 -0800	[thread overview]
Message-ID: <adasloyxqfm.fsf@cisco.com> (raw)

Linus, please pull from

    master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git for-linus

This tree is also available from kernel.org mirrors at:

    git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git for-linus

The pull will get the following changes, which add the ipath driver
for PathScale HCAs:

Bryan O'Sullivan:
      IB/ipath: core device driver
      IB/ipath: core driver header files
      IB/ipath: support for HyperTransport devices
      IB/ipath: support for PCI Express devices
      IB/ipath: chip initialisation code, and diag support
      IB/ipath: misc driver support code
      IB/ipath: sysfs and ipathfs support for core driver
      IB/ipath: support for userspace apps using core driver
      IB/ipath: layering interfaces used by higher-level driver code
      IB/ipath: infiniband header files
      IB/ipath: infiniband UC and UD protocol support
      IB/ipath: infiniband RC protocol support
      IB/ipath: misc infiniband code, part 1
      IB/ipath: misc infiniband code, part 2
      IB/ipath: infiniband verbs support
      IB/ipath: kbuild infrastructure

 MAINTAINERS                                     |    6 
 drivers/Makefile                                |    1 
 drivers/infiniband/Kconfig                      |    1 
 drivers/infiniband/Makefile                     |    1 
 drivers/infiniband/hw/ipath/Kconfig             |   16 
 drivers/infiniband/hw/ipath/Makefile            |   36 
 drivers/infiniband/hw/ipath/ipath_common.h      |  616 +++++++
 drivers/infiniband/hw/ipath/ipath_cq.c          |  295 +++
 drivers/infiniband/hw/ipath/ipath_debug.h       |   96 +
 drivers/infiniband/hw/ipath/ipath_diag.c        |  379 ++++
 drivers/infiniband/hw/ipath/ipath_driver.c      | 1983 +++++++++++++++++++++++
 drivers/infiniband/hw/ipath/ipath_eeprom.c      |  613 +++++++
 drivers/infiniband/hw/ipath/ipath_file_ops.c    | 1910 ++++++++++++++++++++++
 drivers/infiniband/hw/ipath/ipath_fs.c          |  605 +++++++
 drivers/infiniband/hw/ipath/ipath_ht400.c       | 1586 ++++++++++++++++++
 drivers/infiniband/hw/ipath/ipath_init_chip.c   |  951 +++++++++++
 drivers/infiniband/hw/ipath/ipath_intr.c        |  841 ++++++++++
 drivers/infiniband/hw/ipath/ipath_kernel.h      |  884 ++++++++++
 drivers/infiniband/hw/ipath/ipath_keys.c        |  236 +++
 drivers/infiniband/hw/ipath/ipath_layer.c       | 1515 ++++++++++++++++++
 drivers/infiniband/hw/ipath/ipath_layer.h       |  181 ++
 drivers/infiniband/hw/ipath/ipath_mad.c         | 1352 ++++++++++++++++
 drivers/infiniband/hw/ipath/ipath_mr.c          |  383 ++++
 drivers/infiniband/hw/ipath/ipath_pe800.c       | 1247 ++++++++++++++
 drivers/infiniband/hw/ipath/ipath_qp.c          |  913 +++++++++++
 drivers/infiniband/hw/ipath/ipath_rc.c          | 1857 ++++++++++++++++++++++
 drivers/infiniband/hw/ipath/ipath_registers.h   |  446 +++++
 drivers/infiniband/hw/ipath/ipath_ruc.c         |  552 ++++++
 drivers/infiniband/hw/ipath/ipath_srq.c         |  273 +++
 drivers/infiniband/hw/ipath/ipath_stats.c       |  303 ++++
 drivers/infiniband/hw/ipath/ipath_sysfs.c       |  778 +++++++++
 drivers/infiniband/hw/ipath/ipath_uc.c          |  645 +++++++
 drivers/infiniband/hw/ipath/ipath_ud.c          |  621 +++++++
 drivers/infiniband/hw/ipath/ipath_user_pages.c  |  207 ++
 drivers/infiniband/hw/ipath/ipath_verbs.c       | 1222 ++++++++++++++
 drivers/infiniband/hw/ipath/ipath_verbs.h       |  697 ++++++++
 drivers/infiniband/hw/ipath/ipath_verbs_mcast.c |  333 ++++
 drivers/infiniband/hw/ipath/ipath_wc_x86_64.c   |  157 ++
 drivers/infiniband/hw/ipath/ips_common.h        |  263 +++
 drivers/infiniband/hw/ipath/verbs_debug.h       |  107 +
 40 files changed, 25108 insertions(+), 0 deletions(-)
 create mode 100644 drivers/infiniband/hw/ipath/Kconfig
 create mode 100644 drivers/infiniband/hw/ipath/Makefile
 create mode 100644 drivers/infiniband/hw/ipath/ipath_common.h
 create mode 100644 drivers/infiniband/hw/ipath/ipath_cq.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_debug.h
 create mode 100644 drivers/infiniband/hw/ipath/ipath_diag.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_driver.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_eeprom.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_file_ops.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_fs.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_ht400.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_init_chip.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_intr.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_kernel.h
 create mode 100644 drivers/infiniband/hw/ipath/ipath_keys.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_layer.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_layer.h
 create mode 100644 drivers/infiniband/hw/ipath/ipath_mad.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_mr.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_pe800.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_qp.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_rc.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_registers.h
 create mode 100644 drivers/infiniband/hw/ipath/ipath_ruc.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_srq.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_stats.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_sysfs.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_uc.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_ud.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_user_pages.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_verbs.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_verbs.h
 create mode 100644 drivers/infiniband/hw/ipath/ipath_verbs_mcast.c
 create mode 100644 drivers/infiniband/hw/ipath/ipath_wc_x86_64.c
 create mode 100644 drivers/infiniband/hw/ipath/ips_common.h
 create mode 100644 drivers/infiniband/hw/ipath/verbs_debug.h

                 reply	other threads:[~2006-03-31 21:19 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=adasloyxqfm.fsf@cisco.com \
    --to=rdreier@cisco.com \
    --cc=bos@pathscale.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=openib-general@openib.org \
    --cc=torvalds@osdl.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.