All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] nvmet: use Retain Async Event bit to clear AEN
@ 2018-07-26 21:00 Chaitanya Kulkarni
  2018-07-27 13:18 ` Hannes Reinecke
  0 siblings, 1 reply; 3+ messages in thread
From: Chaitanya Kulkarni @ 2018-07-26 21:00 UTC (permalink / raw)


In the current implementation, we clear the AEN bit when we get the
"get log page" command if given log page is associated with AEN.
This patch allows optionally retaining the AEN for the ctrl
under consideration when Retain Asynchronous Event (RAE) bit is set
as a part of "get log page" command.

This allows the host to read the Log page and optionally retaining the
AEN associated with this log page when using userspace tools like
nvme-cli.

Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni at wdc.com>
---
Changes since V1:-

1. Add aen_bit to the helper so it be used for different log pages.
---
 drivers/nvme/target/admin-cmd.c | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/drivers/nvme/target/admin-cmd.c b/drivers/nvme/target/admin-cmd.c
index 16a9b24270f9..731b620ddc06 100644
--- a/drivers/nvme/target/admin-cmd.c
+++ b/drivers/nvme/target/admin-cmd.c
@@ -19,6 +19,19 @@
 #include <asm/unaligned.h>
 #include "nvmet.h"
 
+/*
+ * This helper allows us to clear the AEN based on the RAE bit,
+ * Please use this helper when processing the log pages which are
+ * associated with the AEN.
+ */
+static inline void nvmet_clear_aen(struct nvmet_req *req, u32 aen_bit)
+{
+	int rae = le32_to_cpu(req->cmd->common.cdw10[0]) & 1 << 15;
+
+	if (!rae)
+		clear_bit(aen_bit, &req->sq->ctrl->aen_masked);
+}
+
 u32 nvmet_get_log_page_len(struct nvme_command *cmd)
 {
 	u32 len = le16_to_cpu(cmd->get_log_page.numdu);
@@ -176,7 +189,7 @@ static void nvmet_execute_get_log_changed_ns(struct nvmet_req *req)
 	if (!status)
 		status = nvmet_zero_sgl(req, len, req->data_len - len);
 	ctrl->nr_changed_ns = 0;
-	clear_bit(NVME_AEN_CFG_NS_ATTR, &ctrl->aen_masked);
+	nvmet_clear_aen(req, NVME_AEN_CFG_NS_ATTR);
 	mutex_unlock(&ctrl->lock);
 out:
 	nvmet_req_complete(req, status);
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH V2] nvmet: use Retain Async Event bit to clear AEN
  2018-07-26 21:00 [PATCH V2] nvmet: use Retain Async Event bit to clear AEN Chaitanya Kulkarni
@ 2018-07-27 13:18 ` Hannes Reinecke
  2018-07-27 15:14   ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Hannes Reinecke @ 2018-07-27 13:18 UTC (permalink / raw)


On 07/26/2018 11:00 PM, Chaitanya Kulkarni wrote:
> In the current implementation, we clear the AEN bit when we get the
> "get log page" command if given log page is associated with AEN.
> This patch allows optionally retaining the AEN for the ctrl
> under consideration when Retain Asynchronous Event (RAE) bit is set
> as a part of "get log page" command.
> 
> This allows the host to read the Log page and optionally retaining the
> AEN associated with this log page when using userspace tools like
> nvme-cli.
> 
> Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni at wdc.com>
> ---
> Changes since V1:-
> 
> 1. Add aen_bit to the helper so it be used for different log pages.
> ---
>  drivers/nvme/target/admin-cmd.c | 15 ++++++++++++++-
>  1 file changed, 14 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/nvme/target/admin-cmd.c b/drivers/nvme/target/admin-cmd.c
> index 16a9b24270f9..731b620ddc06 100644
> --- a/drivers/nvme/target/admin-cmd.c
> +++ b/drivers/nvme/target/admin-cmd.c
> @@ -19,6 +19,19 @@
>  #include <asm/unaligned.h>
>  #include "nvmet.h"
>  
> +/*
> + * This helper allows us to clear the AEN based on the RAE bit,
> + * Please use this helper when processing the log pages which are
> + * associated with the AEN.
> + */
> +static inline void nvmet_clear_aen(struct nvmet_req *req, u32 aen_bit)
> +{
> +	int rae = le32_to_cpu(req->cmd->common.cdw10[0]) & 1 << 15;
> +
> +	if (!rae)
> +		clear_bit(aen_bit, &req->sq->ctrl->aen_masked);
> +}
> +
>  u32 nvmet_get_log_page_len(struct nvme_command *cmd)
>  {
>  	u32 len = le16_to_cpu(cmd->get_log_page.numdu);
> @@ -176,7 +189,7 @@ static void nvmet_execute_get_log_changed_ns(struct nvmet_req *req)
>  	if (!status)
>  		status = nvmet_zero_sgl(req, len, req->data_len - len);
>  	ctrl->nr_changed_ns = 0;
> -	clear_bit(NVME_AEN_CFG_NS_ATTR, &ctrl->aen_masked);
> +	nvmet_clear_aen(req, NVME_AEN_CFG_NS_ATTR);
>  	mutex_unlock(&ctrl->lock);
>  out:
>  	nvmet_req_complete(req, status);
> 
Doesn't this apply to the NS CHANGED log page, too?
IIRC RAE is a generic bit, and not restricted to implementation in
individual log pages ...

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		   Teamlead Storage & Networking
hare at suse.de			               +49 911 74053 688
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 N?rnberg
GF: F. Imend?rffer, J. Smithard, J. Guild, D. Upmanyu, G. Norton
HRB 21284 (AG N?rnberg)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH V2] nvmet: use Retain Async Event bit to clear AEN
  2018-07-27 13:18 ` Hannes Reinecke
@ 2018-07-27 15:14   ` Christoph Hellwig
  0 siblings, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2018-07-27 15:14 UTC (permalink / raw)


On Fri, Jul 27, 2018@03:18:06PM +0200, Hannes Reinecke wrote:
> >  	u32 len = le16_to_cpu(cmd->get_log_page.numdu);
> > @@ -176,7 +189,7 @@ static void nvmet_execute_get_log_changed_ns(struct nvmet_req *req)
> >  	if (!status)
> >  		status = nvmet_zero_sgl(req, len, req->data_len - len);
> >  	ctrl->nr_changed_ns = 0;
> > -	clear_bit(NVME_AEN_CFG_NS_ATTR, &ctrl->aen_masked);
> > +	nvmet_clear_aen(req, NVME_AEN_CFG_NS_ATTR);
> >  	mutex_unlock(&ctrl->lock);
> >  out:
> >  	nvmet_req_complete(req, status);
> > 
> Doesn't this apply to the NS CHANGED log page, too?

That code is the changes ns log page..

> IIRC RAE is a generic bit, and not restricted to implementation in
> individual log pages ...

Somewhat generic - only for log pages that have an associated AEN.
The only other one is the ana change log in the ana series.  I'll
make sure to cover that as well when merging this patch and the ANA
series.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-07-27 15:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-26 21:00 [PATCH V2] nvmet: use Retain Async Event bit to clear AEN Chaitanya Kulkarni
2018-07-27 13:18 ` Hannes Reinecke
2018-07-27 15:14   ` Christoph Hellwig

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.