public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Adit Ranadive <aditr-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
To: dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	pv-drivers-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org
Cc: Adit Ranadive <aditr-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>,
	jhansen-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org,
	asarwade-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org,
	georgezhang-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org,
	bryantan-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org
Subject: [PATCH 0/4] Update module PVRDMA to VMW_PVRDMA
Date: Fri, 9 Dec 2016 09:10:02 -0800	[thread overview]
Message-ID: <cover.1481303342.git.aditr@vmware.com> (raw)

Hi Doug,

These are the patches for changing the pvrdma.ko module to vmw_pvrdma.ko.
They based on top of your vmw_pvrdma branch.

Thanks,
Adit
---

Adit Ranadive (4):
  IB/vmw_pvrdma: Rename module to vmw_pvrdma
  IB/vmw_pvrdma: Update file paths
  IB: Update to build vmw_pvrdma
  IB/vmw_pvrdma: Update ABI file name

 MAINTAINERS                                        |    2 +-
 drivers/infiniband/Kconfig                         |    2 +-
 drivers/infiniband/hw/Makefile                     |    2 +-
 drivers/infiniband/hw/pvrdma/Kconfig               |    7 -
 drivers/infiniband/hw/pvrdma/Makefile              |    3 -
 drivers/infiniband/hw/pvrdma/pvrdma.h              |  474 --------
 drivers/infiniband/hw/pvrdma/pvrdma_cmd.c          |  119 --
 drivers/infiniband/hw/pvrdma/pvrdma_cq.c           |  425 -------
 drivers/infiniband/hw/pvrdma/pvrdma_dev_api.h      |  586 ----------
 drivers/infiniband/hw/pvrdma/pvrdma_doorbell.c     |  127 --
 drivers/infiniband/hw/pvrdma/pvrdma_main.c         | 1211 --------------------
 drivers/infiniband/hw/pvrdma/pvrdma_misc.c         |  304 -----
 drivers/infiniband/hw/pvrdma/pvrdma_mr.c           |  334 ------
 drivers/infiniband/hw/pvrdma/pvrdma_qp.c           |  972 ----------------
 drivers/infiniband/hw/pvrdma/pvrdma_ring.h         |  131 ---
 drivers/infiniband/hw/pvrdma/pvrdma_verbs.c        |  577 ----------
 drivers/infiniband/hw/pvrdma/pvrdma_verbs.h        |  435 -------
 drivers/infiniband/hw/vmw_pvrdma/Kconfig           |    7 +
 drivers/infiniband/hw/vmw_pvrdma/Makefile          |    3 +
 drivers/infiniband/hw/vmw_pvrdma/pvrdma.h          |  474 ++++++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_cmd.c      |  119 ++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c       |  425 +++++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h  |  586 ++++++++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_doorbell.c |  127 ++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c     | 1211 ++++++++++++++++++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_misc.c     |  304 +++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.c       |  334 ++++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c       |  972 ++++++++++++++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_ring.h     |  131 +++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.c    |  577 ++++++++++
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.h    |  435 +++++++
 include/uapi/rdma/Kbuild                           |    2 +-
 include/uapi/rdma/pvrdma-abi.h                     |  289 -----
 include/uapi/rdma/vmw_pvrdma-abi.h                 |  289 +++++
 34 files changed, 5998 insertions(+), 5998 deletions(-)
 delete mode 100644 drivers/infiniband/hw/pvrdma/Kconfig
 delete mode 100644 drivers/infiniband/hw/pvrdma/Makefile
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma.h
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_cmd.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_cq.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_dev_api.h
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_doorbell.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_main.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_misc.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_mr.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_qp.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_ring.h
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_verbs.c
 delete mode 100644 drivers/infiniband/hw/pvrdma/pvrdma_verbs.h
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/Kconfig
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/Makefile
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma.h
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_cmd.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_doorbell.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_misc.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_ring.h
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.c
 create mode 100644 drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.h
 delete mode 100644 include/uapi/rdma/pvrdma-abi.h
 create mode 100644 include/uapi/rdma/vmw_pvrdma-abi.h

-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2016-12-09 17:10 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-09 17:10 Adit Ranadive [this message]
     [not found] ` <cover.1481303342.git.aditr-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
2016-12-09 17:10   ` [PATCH 1/4] IB/vmw_pvrdma: Rename module to vmw_pvrdma Adit Ranadive
2016-12-09 17:10   ` [PATCH 2/4] IB/vmw_pvrdma: Update file paths Adit Ranadive
2016-12-09 17:10   ` [PATCH 3/4] IB: Update to build vmw_pvrdma Adit Ranadive
2016-12-09 17:10   ` [PATCH 4/4] IB/vmw_pvrdma: Update ABI file name Adit Ranadive

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=cover.1481303342.git.aditr@vmware.com \
    --to=aditr-pghwnbhtmq7qt0dzr+alfa@public.gmane.org \
    --cc=asarwade-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org \
    --cc=bryantan-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=georgezhang-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org \
    --cc=jhansen-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=pv-drivers-pghWNbHTmq7QT0dZR+AlfA@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox