]> www.infradead.org Git - users/jedix/linux-maple.git/commit
sif driver initial commit part 3
authorKnut Omang <knut.omang@oracle.com>
Wed, 25 May 2016 09:01:11 +0000 (11:01 +0200)
committerSantosh Shilimkar <santosh.shilimkar@oracle.com>
Tue, 31 May 2016 15:41:14 +0000 (08:41 -0700)
commit7e0b60f6dc9f1cd5d22d10bcc75d6c6521b8a36e
tree21b3b1d8f074c27682c2c89208cb520492304601
parentc9f42a310e20c1d7491b014457fed14ee3559f1e
sif driver initial commit part 3

sif_pt.c:        SIF (private) page table management
sif_pt.h:        SIF (private) page table management.
sif_qp.c:        Implementation of IB queue pair logic for sif
sif_qp.h:        Interface to internal IB queue pair logic for sif
sif_query.c:     SIF implementation of some of IB query APIs
sif_query.h:     SIF implementation of some of IB query APIs
sif_r3.c:        Special handling specific for psif revision 3 and earlier
sif_r3.h:        Special handling specific for psif revision 3 and earlier
sif_rq.c:        Implementation of sif receive queues
sif_rq.h:        Interface to sif receive queues
sif_sndrcv.c:    Implementation of post send/recv logic for SIF
sif_sndrcv.h:    Interface to IB send/receive, MAD packet recv and
sif_spt.c:       Experimental implementation of shared use of the OS's page tables.
sif_spt.h:       Experimental (still unsafe)
sif_sq.c:        Implementation of the send queue side of an IB queue pair
sif_sq.h:        Implementation of the send queue side of an IB queue pair
sif_srq.c:       Interface to shared receive queues for SIF
sif_srq.h:       Interface to internal Shared receive queue logic for SIF
sif_tqp.c:       Implementation of EPSA tunneling QP for SIF

Signed-off-by: Knut Omang <knut.omang@oracle.com>
19 files changed:
drivers/infiniband/hw/sif/sif_pt.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_pt.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_qp.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_qp.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_query.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_query.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_r3.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_r3.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_rq.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_rq.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_sndrcv.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_sndrcv.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_spt.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_spt.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_sq.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_sq.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_srq.c [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_srq.h [new file with mode: 0644]
drivers/infiniband/hw/sif/sif_tqp.c [new file with mode: 0644]