aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRalph Campbell <ralph.campbell@qlogic.com>2006-09-22 18:22:24 -0400
committerRoland Dreier <rolandd@cisco.com>2006-09-22 18:22:24 -0400
commit64f817ba98095156149ba5991592d5d039f6da74 (patch)
tree72aaa87275033036bbf0e886c1cb7cf1e9d38bb5 /drivers
parentfab97220c9e409a98b1956ba677ddd2dd43b0b95 (diff)
IB/uverbs: Allow resize CQ operation to return driver-specific data
Add a ib_uverbs_resize_cq_resp.driver_data field so that low-level drivers can return data from a resize CQ operation to userspace. Have ib_uverbs_resize_cq() only copy the cqe field, to avoid having to bump the userspace ABI. Signed-off-by: Ralph Campbell <ralph.campbell@qlogic.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/infiniband/core/uverbs_cmd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
index 8b6df7cec0bf..deae43f31e79 100644
--- a/drivers/infiniband/core/uverbs_cmd.c
+++ b/drivers/infiniband/core/uverbs_cmd.c
@@ -879,11 +879,10 @@ ssize_t ib_uverbs_resize_cq(struct ib_uverbs_file *file,
879 if (ret) 879 if (ret)
880 goto out; 880 goto out;
881 881
882 memset(&resp, 0, sizeof resp);
883 resp.cqe = cq->cqe; 882 resp.cqe = cq->cqe;
884 883
885 if (copy_to_user((void __user *) (unsigned long) cmd.response, 884 if (copy_to_user((void __user *) (unsigned long) cmd.response,
886 &resp, sizeof resp)) 885 &resp, sizeof resp.cqe))
887 ret = -EFAULT; 886 ret = -EFAULT;
888 887
889out: 888out: