All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH rdma-core 0/7] libhns: userspace library for hns
@ 2016-10-26 13:04 Lijun Ou
       [not found] ` <1477487048-62256-1-git-send-email-oulijun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 22+ messages in thread
From: Lijun Ou @ 2016-10-26 13:04 UTC (permalink / raw)
  To: dledford-H+wXaHxf7aLQT0dZR+AlfA, linux-rdma-u79uwXL29TY76Z2rM5mHXA
  Cc: linuxarm-hv44wF8Li93QT0dZR+AlfA

This patch series introduces userspace library for hns RoCE driver.

Lijun Ou (7):
  libhns: Add initial main frame
  libhns: Add verbs of querying device and querying port
  libhns: Add verbs of pd and mr support
  libhns: Add verbs of cq support
  libhns: Add verbs of qp support
  libhns: Add verbs of post_send and post_recv support
  libhns: Add consolidated repo for userspace library of hns

 CMakeLists.txt                   |   1 +
 MAINTAINERS                      |   6 +
 README.md                        |   1 +
 providers/hns/CMakeLists.txt     |  15 +
 providers/hns/hns_roce_u.c       | 228 +++++++++++
 providers/hns/hns_roce_u.h       | 262 ++++++++++++
 providers/hns/hns_roce_u_abi.h   |  69 ++++
 providers/hns/hns_roce_u_buf.c   |  61 +++
 providers/hns/hns_roce_u_db.h    |  54 +++
 providers/hns/hns_roce_u_hw_v1.c | 839 +++++++++++++++++++++++++++++++++++++++
 providers/hns/hns_roce_u_hw_v1.h | 242 +++++++++++
 providers/hns/hns_roce_u_verbs.c | 525 ++++++++++++++++++++++++
 12 files changed, 2303 insertions(+)
 create mode 100644 providers/hns/CMakeLists.txt
 create mode 100644 providers/hns/hns_roce_u.c
 create mode 100644 providers/hns/hns_roce_u.h
 create mode 100644 providers/hns/hns_roce_u_abi.h
 create mode 100644 providers/hns/hns_roce_u_buf.c
 create mode 100644 providers/hns/hns_roce_u_db.h
 create mode 100644 providers/hns/hns_roce_u_hw_v1.c
 create mode 100644 providers/hns/hns_roce_u_hw_v1.h
 create mode 100644 providers/hns/hns_roce_u_verbs.c

-- 
1.9.1

--
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

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2016-11-10 17:30 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-26 13:04 [PATCH rdma-core 0/7] libhns: userspace library for hns Lijun Ou
     [not found] ` <1477487048-62256-1-git-send-email-oulijun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-10-26 13:04   ` [PATCH rdma-core 1/7] libhns: Add initial main frame Lijun Ou
     [not found]     ` <1477487048-62256-2-git-send-email-oulijun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-10-26 16:20       ` Jason Gunthorpe
     [not found]         ` <20161026162053.GE24898-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-27  3:41           ` oulijun
     [not found]             ` <5811776F.20908-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-10-27 14:51               ` Jason Gunthorpe
     [not found]                 ` <20161027145139.GD6818-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-28  7:28                   ` oulijun
2016-10-28  7:59                   ` oulijun
     [not found]                     ` <58130573.4010902-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-10-28 16:40                       ` Jason Gunthorpe
     [not found]                         ` <20161028164030.GA17289-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-29  1:16                           ` oulijun
     [not found]                             ` <5813F869.7010606-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-11-07 23:15                               ` Jason Gunthorpe
     [not found]                                 ` <20161107231532.GB7002-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-11-08 12:54                                   ` Leon Romanovsky
     [not found]                                     ` <20161108125441.GB27883-2ukJVAZIZ/Y@public.gmane.org>
2016-11-09 13:10                                       ` oulijun
     [not found]                                         ` <58232047.4060709-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-11-10 17:30                                           ` Jason Gunthorpe
2016-10-26 13:04   ` [PATCH rdma-core 2/7] libhns: Add verbs of querying device and querying port Lijun Ou
2016-10-26 13:04   ` [PATCH rdma-core 3/7] libhns: Add verbs of pd and mr support Lijun Ou
2016-10-26 13:04   ` [PATCH rdma-core 4/7] libhns: Add verbs of cq support Lijun Ou
2016-10-26 13:04   ` [PATCH rdma-core 5/7] libhns: Add verbs of qp support Lijun Ou
     [not found]     ` <1477487048-62256-6-git-send-email-oulijun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-10-26 16:23       ` Jason Gunthorpe
     [not found]         ` <20161026162321.GF24898-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-27  2:25           ` oulijun
2016-10-26 13:04   ` [PATCH rdma-core 6/7] libhns: Add verbs of post_send and post_recv support Lijun Ou
2016-10-26 13:04   ` [PATCH rdma-core 7/7] libhns: Add consolidated repo for userspace library of hns Lijun Ou
     [not found]     ` <1477487048-62256-8-git-send-email-oulijun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-10-26 16:33       ` Jason Gunthorpe

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.