From: Dennis Dalessandro <dennis.dalessandro@intel.com>
To: dledford@redhat.com
Cc: Mike Marciniszyn <mike.marciniszyn@intel.com>,
Dean Luick <dean.luick@intel.com>,
Jakub Pawlak <jakub.pawlak@intel.com>,
Ira Weiny <ira.weiny@intel.com>,
Tadeusz Struk <tadeusz.struk@intel.com>,
linux-rdma@vger.kernel.org,
Tymoteusz Kielan <tymoteusz.kielan@intel.com>,
Brian Welty <brian.welty@intel.com>,
stable@vger.kernel.org,
Jason Gunthorpe <jgunthorpe@obsidianresearch.com>,
Easwar Hariharan <easwar.hariharan@intel.com>,
Krzysztof Blaszkowski <krzysztof.blaszkowski@intel.com>,
Sebastian Sanchez <sebastian.sanchez@intel.com>,
Jianxin Xiong <jianxin.xiong@intel.com>
Subject: [PATCH 00/12] For 4.9 rc
Date: Mon, 17 Oct 2016 04:19:01 -0700 [thread overview]
Message-ID: <20161017103326.7934.21558.stgit@scvm10.sc.intel.com> (raw)
Doug,
Here are some more patches for hfi1 and rdmavt. That I didn't bother to send
at the tail end of the merge window based on Linus' recent response on the
list.
I think these could for the next RC. They build on the most recent patch set
[1] that is pending on the list.
If we need to remove any of these, or from [1] for the RC let me know and I can
respin or you can just drop.
Note there is another stable fix in here.
[1] http://marc.info/?l=linux-rdma&m=147610526924704&w=2
Can also be found in GitHub repo at:
https://github.com/ddalessa/kernel/tree/for-4.9
---
Dennis Dalessandro (1):
IB/hfi1: Remove leftover snoop references
Easwar Hariharan (3):
IB/hfi1: Add active channel and backplane support for integrated devices
IB/hfi1: Clean up unused argument
IB/hfi1: Delete unused lock
Ira Weiny (1):
IB/hfi1: Fix rnr_timer addition
Jakub Pawlak (1):
IB/hfi1: Unify access to GUID entries
Jianxin Xiong (1):
IB/hfi1: Fix a potential memory leak in hfi1_create_ctxts()
Krzysztof Blaszkowski (1):
IB/hfi1: Return ENODEV for unsupported PCI device ids.
Mike Marciniszyn (2):
IB/rdmvat: Organize hot path calldowns into a single cacheline
IB/hfi1: Optimize pio cachelines
Sebastian Sanchez (1):
IB/hfi1: Optimize devdata cachelines
Tadeusz Struk (1):
IB/hfi1: Fix an Oops on pci device force remove
drivers/infiniband/hw/hfi1/chip.c | 29 +---
drivers/infiniband/hw/hfi1/chip_registers.h | 3
drivers/infiniband/hw/hfi1/file_ops.c | 5 +
drivers/infiniband/hw/hfi1/firmware.c | 136 ++++++++++++++++---
drivers/infiniband/hw/hfi1/hfi.h | 193 +++++++++++++--------------
drivers/infiniband/hw/hfi1/init.c | 58 +++++---
drivers/infiniband/hw/hfi1/mad.c | 19 +--
drivers/infiniband/hw/hfi1/pcie.c | 3
drivers/infiniband/hw/hfi1/pio.h | 10 +
drivers/infiniband/hw/hfi1/platform.c | 149 +++++++++++++++++----
drivers/infiniband/hw/hfi1/platform.h | 117 ++++++++++++++++
drivers/infiniband/hw/hfi1/rc.c | 2
drivers/infiniband/hw/hfi1/ruc.c | 16 --
drivers/infiniband/hw/hfi1/trace_rx.h | 60 --------
drivers/infiniband/hw/hfi1/verbs.c | 15 +-
drivers/infiniband/hw/hfi1/verbs.h | 3
include/rdma/rdma_vt.h | 46 +++---
17 files changed, 557 insertions(+), 307 deletions(-)
--
-Denny
next reply other threads:[~2016-10-17 11:19 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-17 11:19 Dennis Dalessandro [this message]
[not found] ` <20161017103326.7934.21558.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2016-10-17 11:19 ` [PATCH 01/12] IB/rdmvat: Organize hot path calldowns into a single cacheline Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 02/12] IB/hfi1: Optimize pio cachelines Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 03/12] IB/hfi1: Fix an Oops on pci device force remove Dennis Dalessandro
[not found] ` <20161017111918.7934.72325.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2016-10-17 16:07 ` Jason Gunthorpe
[not found] ` <20161017160731.GA5679-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-19 18:01 ` Tadeusz Struk
2016-10-25 15:57 ` [PATCH v2 " Dennis Dalessandro
[not found] ` <20161025155754.4950.23412.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2016-10-25 16:48 ` Jason Gunthorpe
[not found] ` <20161025164851.GA28096-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-25 17:38 ` Tadeusz Struk
[not found] ` <7f4cbe0c-0c83-48b2-9901-4a5e27b306b4-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-10-25 18:03 ` Jason Gunthorpe
2016-10-17 11:19 ` [PATCH 04/12] IB/hfi1: Return ENODEV for unsupported PCI device ids Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 05/12] IB/hfi1: Unify access to GUID entries Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 06/12] IB/hfi1: Optimize devdata cachelines Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 07/12] IB/hfi1: Fix a potential memory leak in hfi1_create_ctxts() Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 08/12] IB/hfi1: Add active channel and backplane support for integrated devices Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 09/12] IB/hfi1: Remove leftover snoop references Dennis Dalessandro
2016-10-17 11:19 ` [PATCH 10/12] IB/hfi1: Clean up unused argument Dennis Dalessandro
2016-10-17 11:20 ` [PATCH 11/12] IB/hfi1: Delete unused lock Dennis Dalessandro
2016-10-17 11:20 ` [PATCH 12/12] IB/hfi1: Fix rnr_timer addition Dennis Dalessandro
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=20161017103326.7934.21558.stgit@scvm10.sc.intel.com \
--to=dennis.dalessandro@intel.com \
--cc=brian.welty@intel.com \
--cc=dean.luick@intel.com \
--cc=dledford@redhat.com \
--cc=easwar.hariharan@intel.com \
--cc=ira.weiny@intel.com \
--cc=jakub.pawlak@intel.com \
--cc=jgunthorpe@obsidianresearch.com \
--cc=jianxin.xiong@intel.com \
--cc=krzysztof.blaszkowski@intel.com \
--cc=linux-rdma@vger.kernel.org \
--cc=mike.marciniszyn@intel.com \
--cc=sebastian.sanchez@intel.com \
--cc=stable@vger.kernel.org \
--cc=tadeusz.struk@intel.com \
--cc=tymoteusz.kielan@intel.com \
/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.