Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1393518 > unrolled thread
| Started by | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| First post | 2016-05-03 17:30 +0200 |
| Last post | 2016-05-03 19:50 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] lightnvm: pass dma address to hardware rather than pointer Arnd Bergmann <arnd@arndb.de> - 2016-05-03 17:30 +0200
Re: [PATCH] lightnvm: pass dma address to hardware rather than pointer Javier González <javier@cnexlabs.com> - 2016-05-03 18:30 +0200
Re: [PATCH] lightnvm: pass dma address to hardware rather than pointer Matias Bjørling <m@bjorling.me> - 2016-05-03 19:50 +0200
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-05-03 17:30 +0200 |
| Subject | [PATCH] lightnvm: pass dma address to hardware rather than pointer |
| Message-ID | <ruKqS-24h-31@gated-at.bofh.it> |
A recent change to lightnvm added code to pass a kernel pointer
to the hardware, which gcc complained about:
drivers/nvme/host/lightnvm.c: In function 'nvme_nvm_rqtocmd':
drivers/nvme/host/lightnvm.c:472:32: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
c->ph_rw.metadata = cpu_to_le64(rqd->meta_list);
It looks like this has no way of working anyway, so this changes
the code to pass the dma_address instead. This was most likely
what was intended here. Neither of the two are currently ever
written to, so the effect is the same for now.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: a34b1eb78e21 ("lightnvm: enable metadata to be sent to device")
---
drivers/nvme/host/lightnvm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/nvme/host/lightnvm.c b/drivers/nvme/host/lightnvm.c
index fadeb54bc7df..65de1e56e59a 100644
--- a/drivers/nvme/host/lightnvm.c
+++ b/drivers/nvme/host/lightnvm.c
@@ -469,7 +469,7 @@ static inline void nvme_nvm_rqtocmd(struct request *rq, struct nvm_rq *rqd,
c->ph_rw.opcode = rqd->opcode;
c->ph_rw.nsid = cpu_to_le32(ns->ns_id);
c->ph_rw.spba = cpu_to_le64(rqd->ppa_addr.ppa);
- c->ph_rw.metadata = cpu_to_le64(rqd->meta_list);
+ c->ph_rw.metadata = cpu_to_le64(rqd->dma_meta_list);
c->ph_rw.control = cpu_to_le16(rqd->flags);
c->ph_rw.length = cpu_to_le16(rqd->nr_pages - 1);
--
2.7.0
[toc] | [next] | [standalone]
| From | Javier González <javier@cnexlabs.com> |
|---|---|
| Date | 2016-05-03 18:30 +0200 |
| Subject | Re: [PATCH] lightnvm: pass dma address to hardware rather than pointer |
| Message-ID | <ruLmV-2Uv-3@gated-at.bofh.it> |
| In reply to | #1393518 |
[Multipart message — attachments visible in raw view] — view raw
> > On 03 May 2016, at 17:22, Arnd Bergmann <arnd@arndb.de> wrote: > > A recent change to lightnvm added code to pass a kernel pointer > to the hardware, which gcc complained about: > > drivers/nvme/host/lightnvm.c: In function 'nvme_nvm_rqtocmd': > drivers/nvme/host/lightnvm.c:472:32: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] > c->ph_rw.metadata = cpu_to_le64(rqd->meta_list); > > It looks like this has no way of working anyway, so this changes > the code to pass the dma_address instead. This was most likely > what was intended here. Neither of the two are currently ever > written to, so the effect is the same for now. > Thanks Arnd. It was my mistake. I had it fixed in the pblk branch, where we use the metadata field and was waiting to send it together with other fixes. Javier.
[toc] | [prev] | [next] | [standalone]
| From | Matias Bjørling <m@bjorling.me> |
|---|---|
| Date | 2016-05-03 19:50 +0200 |
| Subject | Re: [PATCH] lightnvm: pass dma address to hardware rather than pointer |
| Message-ID | <ruMCm-3Wx-17@gated-at.bofh.it> |
| In reply to | #1393518 |
On 05/03/2016 05:22 PM, Arnd Bergmann wrote:
> A recent change to lightnvm added code to pass a kernel pointer
> to the hardware, which gcc complained about:
>
> drivers/nvme/host/lightnvm.c: In function 'nvme_nvm_rqtocmd':
> drivers/nvme/host/lightnvm.c:472:32: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
> c->ph_rw.metadata = cpu_to_le64(rqd->meta_list);
>
> It looks like this has no way of working anyway, so this changes
> the code to pass the dma_address instead. This was most likely
> what was intended here. Neither of the two are currently ever
> written to, so the effect is the same for now.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: a34b1eb78e21 ("lightnvm: enable metadata to be sent to device")
> ---
> drivers/nvme/host/lightnvm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/nvme/host/lightnvm.c b/drivers/nvme/host/lightnvm.c
> index fadeb54bc7df..65de1e56e59a 100644
> --- a/drivers/nvme/host/lightnvm.c
> +++ b/drivers/nvme/host/lightnvm.c
> @@ -469,7 +469,7 @@ static inline void nvme_nvm_rqtocmd(struct request *rq, struct nvm_rq *rqd,
> c->ph_rw.opcode = rqd->opcode;
> c->ph_rw.nsid = cpu_to_le32(ns->ns_id);
> c->ph_rw.spba = cpu_to_le64(rqd->ppa_addr.ppa);
> - c->ph_rw.metadata = cpu_to_le64(rqd->meta_list);
> + c->ph_rw.metadata = cpu_to_le64(rqd->dma_meta_list);
> c->ph_rw.control = cpu_to_le16(rqd->flags);
> c->ph_rw.length = cpu_to_le16(rqd->nr_pages - 1);
>
>
Thanks Arnd, good catch. I haven't sent the 4.7 patches upstream yet. Do
you want me to squash your patch into Javier's or keep it separately?
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web