diff options
author | Steve Wise <swise@opengridcomputing.com> | 2008-01-21 14:42:13 -0600 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-01-25 14:17:45 -0800 |
commit | c6b5b5047417c1becb5e48e748e3acb3801079a1 (patch) | |
tree | 8a4efd832544869ec93646be2f5d409119b9b309 /drivers/infiniband/hw/cxgb3/cxio_wr.h | |
parent | d08ca26ceec4dfbcfdbada4ad728db742ccaecd1 (diff) | |
download | linux-c6b5b5047417c1becb5e48e748e3acb3801079a1.tar.gz linux-c6b5b5047417c1becb5e48e748e3acb3801079a1.tar.bz2 linux-c6b5b5047417c1becb5e48e748e3acb3801079a1.zip |
RDMA/cxgb3: Mark QP as privileged based on user capabilities
This is needed to support zero-stag properly.
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb3/cxio_wr.h')
-rw-r--r-- | drivers/infiniband/hw/cxgb3/cxio_wr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb3/cxio_wr.h b/drivers/infiniband/hw/cxgb3/cxio_wr.h index de366b0627b8..969d4d928455 100644 --- a/drivers/infiniband/hw/cxgb3/cxio_wr.h +++ b/drivers/infiniband/hw/cxgb3/cxio_wr.h @@ -324,7 +324,8 @@ struct t3_genbit { }; enum rdma_init_wr_flags { - RECVS_POSTED = 1, + RECVS_POSTED = (1<<0), + PRIV_QP = (1<<1), }; union t3_wr { |