From: Mike Christie <mchristi@redhat.com>
To: lixiubo@cmss.chinamobile.com, nab@linux-iscsi.org
Cc: linux-scsi@vger.kernel.org, target-devel@vger.kernel.org
Subject: Re: [PATCH] tcmu: Fix flushing cmd entry dcache page
Date: Sat, 1 Jul 2017 18:31:05 -0500 [thread overview]
Message-ID: <595830B9.9070505@redhat.com> (raw)
In-Reply-To: <1498810456-10609-1-git-send-email-lixiubo@cmss.chinamobile.com>
On 06/30/2017 03:14 AM, lixiubo@cmss.chinamobile.com wrote:
> From: Xiubo Li <lixiubo@cmss.chinamobile.com>
>
> When feeding the tcmu's cmd ring, we need to flush the dcache page
> for the cmd entry to make sure these kernel stores are visible to
> user space mappings of that page.
>
> For the none PAD cmd entry, this will be flushed at the end of the
> tcmu_queue_cmd_ring().
>
> Signed-off-by: Xiubo Li <lixiubo@cmss.chinamobile.com>
> ---
> drivers/target/target_core_user.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/target/target_core_user.c b/drivers/target/target_core_user.c
> index 203bff1..930800c 100644
> --- a/drivers/target/target_core_user.c
> +++ b/drivers/target/target_core_user.c
> @@ -699,21 +699,21 @@ static inline size_t tcmu_cmd_get_cmd_size(struct tcmu_cmd *tcmu_cmd,
> size_t pad_size = head_to_end(cmd_head, udev->cmdr_size);
>
> entry = (void *) mb + CMDR_OFF + cmd_head;
> - tcmu_flush_dcache_range(entry, sizeof(*entry));
> tcmu_hdr_set_op(&entry->hdr.len_op, TCMU_OP_PAD);
> tcmu_hdr_set_len(&entry->hdr.len_op, pad_size);
> entry->hdr.cmd_id = 0; /* not used for PAD */
> entry->hdr.kflags = 0;
> entry->hdr.uflags = 0;
> + tcmu_flush_dcache_range(entry, sizeof(*entry));
>
> UPDATE_HEAD(mb->cmd_head, pad_size, udev->cmdr_size);
> + tcmu_flush_dcache_range(mb, sizeof(*mb));
>
> cmd_head = mb->cmd_head % udev->cmdr_size; /* UAM */
> WARN_ON(cmd_head != 0);
> }
>
> entry = (void *) mb + CMDR_OFF + cmd_head;
> - tcmu_flush_dcache_range(entry, sizeof(*entry));
> tcmu_hdr_set_op(&entry->hdr.len_op, TCMU_OP_CMD);
> entry->hdr.cmd_id = tcmu_cmd->cmd_id;
> entry->hdr.kflags = 0;
>
Looks ok to me.
Reviewed-by: Mike Christie <mchristi@redhat.com>
next prev parent reply other threads:[~2017-07-01 23:31 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-30 8:14 [PATCH] tcmu: Fix flushing cmd entry dcache page lixiubo
2017-06-30 23:18 ` Mike Christie
2017-07-01 23:31 ` Mike Christie [this message]
2017-07-03 5:36 ` Nicholas A. Bellinger
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=595830B9.9070505@redhat.com \
--to=mchristi@redhat.com \
--cc=linux-scsi@vger.kernel.org \
--cc=lixiubo@cmss.chinamobile.com \
--cc=nab@linux-iscsi.org \
--cc=target-devel@vger.kernel.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.