From: Leon Romanovsky <leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Yonatan Cohen <yonatanc-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Subject: Re: [PATCH rdma-next 1/6] IB/uverbs: Allow CQ moderation with modify CQ
Date: Mon, 23 Oct 2017 12:42:14 +0300 [thread overview]
Message-ID: <20171023094214.GG2106@mtr-leonro.local> (raw)
In-Reply-To: <20171019053524.11135-2-leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 3112 bytes --]
On Thu, Oct 19, 2017 at 08:35:19AM +0300, Leon Romanovsky wrote:
> From: Yonatan Cohen <yonatanc-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>
> Uverbs support in modify_cq for CQ moderation only.
> Gives ability to change cq_max_count and cq_period.
> CQ moderation enhance performance by moderating the number
> of cookies needed to create an event instead of application
> having to suffer from event per cookie.
> To achieve CQ moderation the application needs to set cq_max_count
> and cq_period.
> cq_max_count - defines the number of cookies
> needed to create an event.
> cq_period - defines the timeout (micro seconds) between last
> event and a new one that will occur even if
> cq_max_count was not satisfied
>
> Signed-off-by: Yonatan Cohen <yonatanc-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Reviewed-by: Majd Dibbiny <majd-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Signed-off-by: Leon Romanovsky <leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> ---
> drivers/infiniband/core/uverbs.h | 1 +
> drivers/infiniband/core/uverbs_cmd.c | 36 +++++++++++++++++++++++++++++++++++
> drivers/infiniband/core/uverbs_main.c | 1 +
> include/rdma/ib_verbs.h | 4 ++++
> include/uapi/rdma/ib_user_verbs.h | 11 ++++++++++-
> 5 files changed, 52 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/infiniband/core/uverbs.h b/drivers/infiniband/core/uverbs.h
> index ee2739ae4305..deccefb71a6b 100644
> --- a/drivers/infiniband/core/uverbs.h
> +++ b/drivers/infiniband/core/uverbs.h
> @@ -306,5 +306,6 @@ IB_UVERBS_DECLARE_EX_CMD(destroy_wq);
> IB_UVERBS_DECLARE_EX_CMD(create_rwq_ind_table);
> IB_UVERBS_DECLARE_EX_CMD(destroy_rwq_ind_table);
> IB_UVERBS_DECLARE_EX_CMD(modify_qp);
> +IB_UVERBS_DECLARE_EX_CMD(modify_cq);
>
> #endif /* UVERBS_H */
> diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
> index ab29a0327831..c7819e5540f1 100644
> --- a/drivers/infiniband/core/uverbs_cmd.c
> +++ b/drivers/infiniband/core/uverbs_cmd.c
> @@ -3856,3 +3856,39 @@ int ib_uverbs_ex_query_device(struct ib_uverbs_file *file,
> err = ib_copy_to_udata(ucore, &resp, resp.response_length);
> return err;
> }
> +
> +int ib_uverbs_ex_modify_cq(struct ib_uverbs_file *file,
> + struct ib_device *ib_dev,
> + struct ib_udata *ucore,
> + struct ib_udata *uhw)
> +{
> + struct ib_uverbs_ex_modify_cq cmd = {};
> + struct ib_cq *cq;
> + int ret;
> +
> + /* sanity checks */
> + if (ucore->inlen > sizeof(cmd) &&
> + !ib_is_udata_cleared(ucore, sizeof(cmd),
> + ucore->inlen - sizeof(cmd)))
> + return -EOPNOTSUPP;
> +
> + ret = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
> + if (ret)
> + return ret;
> +
> + if (cmd.attr_mask != IB_CQ_MODERATE)
> + return -EINVAL;
> +
> + if (!cmd.comp_mask)
> + return -EINVAL;
No way that it worked, comp_mask is never set, so it is supposed to be
zero and it is always returning EINVAL.
Additionally, the "attr_mask" is already carrying the same information as
"comp_mask" will handle, hence the "comp_mask" should be dropped.
Thanks
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-10-23 9:42 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-19 5:35 [PATCH rdma-next 0/6] Expose CQ moderation to user space Leon Romanovsky
[not found] ` <20171019053524.11135-1-leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2017-10-19 5:35 ` [PATCH rdma-next 1/6] IB/uverbs: Allow CQ moderation with modify CQ Leon Romanovsky
[not found] ` <20171019053524.11135-2-leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2017-10-23 9:42 ` Leon Romanovsky [this message]
2017-10-25 18:28 ` Doug Ledford
[not found] ` <1508956084.3325.50.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-10-25 18:50 ` Leon Romanovsky
2017-10-19 5:35 ` [PATCH rdma-next 2/6] IB/mlx4: Exposing modify CQ callback to uverbs layer Leon Romanovsky
2017-10-19 5:35 ` [PATCH rdma-next 3/6] IB/mlx5: " Leon Romanovsky
2017-10-19 5:35 ` [PATCH rdma-next 4/6] IB/uverbs: Add CQ moderation capability to query_device Leon Romanovsky
2017-10-19 5:35 ` [PATCH rdma-next 5/6] IB/mlx4: " Leon Romanovsky
2017-10-19 5:35 ` [PATCH rdma-next 6/6] IB/mlx5: " Leon Romanovsky
2017-10-23 9:47 ` [PATCH rdma-next 0/6] Expose CQ moderation to user space Leon Romanovsky
[not found] ` <20171023094744.GH2106-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-10-23 13:08 ` Shiraz Saleem
[not found] ` <20171023130804.GA21584-GOXS9JX10wfOxmVO0tvppfooFf0ArEBIu+b9c/7xato@public.gmane.org>
2017-10-23 15:29 ` Jason Gunthorpe
[not found] ` <20171023152919.GC11952-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2017-10-24 13:26 ` Shiraz Saleem
2017-10-23 16:54 ` Leon Romanovsky
2017-10-23 15:26 ` Jason Gunthorpe
[not found] ` <20171023152638.GB11952-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2017-10-23 16:57 ` Leon Romanovsky
2017-10-25 18:30 ` Doug Ledford
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171023094214.GG2106@mtr-leonro.local \
--to=leon-dgejt+ai2ygdnm+yrofe0a@public.gmane.org \
--cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=yonatanc-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.