]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
IB/rdmavt: Add pkey query stub
authorDennis Dalessandro <dennis.dalessandro@intel.com>
Wed, 6 Jan 2016 17:54:16 +0000 (09:54 -0800)
committerDoug Ledford <dledford@redhat.com>
Fri, 11 Mar 2016 01:37:06 +0000 (20:37 -0500)
The pkey table will reside in the rvt structure but it will be modified
only when the driver requests then rvt will simply read the value to return
in the query.

Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/sw/rdmavt/vt.c
include/rdma/rdma_vt.h

index 5ac241c7966fbc69572668cd68b2b87525702a2a..fc5372d75280907dd087cfbd2e5cb9a08b4a4e49 100644 (file)
@@ -137,6 +137,26 @@ static int rvt_modify_port(struct ib_device *ibdev, u8 port,
        return -EOPNOTSUPP;
 }
 
+/**
+ * rvt_query_pkey - Return a pkey from the table at a given index
+ * @ibdev: Verbs IB dev
+ * @port: Port number
+ * @intex: Index into pkey table
+ *
+ * Returns 0 on failure pkey otherwise
+ */
+static int rvt_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
+                         u16 *pkey)
+{
+       /*
+        * Driver will be responsible for keeping rvt_dev_info.pkey_table up to
+        * date. This function will just return that value. There is no need to
+        * lock, if a stale value is read and sent to the user so be it there is
+        * no way to protect against that anyway.
+        */
+       return 0;
+}
+
 /*
  * Check driver override. If driver passes a value use it, otherwise we use our
  * own value.
@@ -154,6 +174,7 @@ int rvt_register_device(struct rvt_dev_info *rdi)
        CHECK_DRIVER_OVERRIDE(rdi, modify_device);
        CHECK_DRIVER_OVERRIDE(rdi, query_port);
        CHECK_DRIVER_OVERRIDE(rdi, modify_port);
+       CHECK_DRIVER_OVERRIDE(rdi, query_pkey);
 
        /* DMA Operations */
        rdi->ibdev.dma_ops =
index 2990e03bdd9e65650b586d886c051e912d90cdce..bf072a436a34b7e4c241cee1a29851ba4c571846 100644 (file)
@@ -114,12 +114,13 @@ struct rvt_dev_info {
         * The driver will also be responsible for filling in certain members of
         * dparms.props
         */
-
        struct ib_device ibdev;
 
        /* Driver specific properties */
        struct rvt_driver_params dparms;
 
+       /* PKey Table goes here */
+
        /*
         * The work to create port files in /sys/class Infiniband is different
         * depending on the driver. This should not be extracted away and