* [PATCH rdma-core] util: fix bad argument passed to s390_mmio_write
@ 2017-08-04 9:18 Nicolas Morey-Chaisemartin
[not found] ` <7e93dac1-6b15-6ca0-efba-6c05b92afe17-PVCUbA2IIkVH1sytvemUSjhD77mM7E+b@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Morey-Chaisemartin @ 2017-08-04 9:18 UTC (permalink / raw)
To: linux-rdma-u79uwXL29TY76Z2rM5mHXA
Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin-IBi9RG/b67k@public.gmane.org>
---
util/mmio.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/mmio.h b/util/mmio.h
index be22fb76..101af9dd 100644
--- a/util/mmio.h
+++ b/util/mmio.h
@@ -208,7 +208,7 @@ __le64 mmio_read64_le(const void *addr);
#ifdef __s390x__
static inline void mmio_memcpy_x64(void *dest, const void *src, size_t bytecnt)
{
- s390_mmio_write(addr, src, bytecnt);
+ s390_mmio_write(dest, src, bytecnt);
}
#else
--
2.14.0.rc1.4.gab083fa77
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH rdma-core] util: fix bad argument passed to s390_mmio_write
@ 2017-08-04 9:20 Nicolas Morey-Chaisemartin
[not found] ` <a30f4084-1f1b-44c3-ac03-c627586e0604-l3A5Bk7waGM@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Morey-Chaisemartin @ 2017-08-04 9:20 UTC (permalink / raw)
To: linux-rdma-u79uwXL29TY76Z2rM5mHXA
Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin-IBi9RG/b67k@public.gmane.org>
---
util/mmio.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/mmio.h b/util/mmio.h
index be22fb76..101af9dd 100644
--- a/util/mmio.h
+++ b/util/mmio.h
@@ -208,7 +208,7 @@ __le64 mmio_read64_le(const void *addr);
#ifdef __s390x__
static inline void mmio_memcpy_x64(void *dest, const void *src, size_t bytecnt)
{
- s390_mmio_write(addr, src, bytecnt);
+ s390_mmio_write(dest, src, bytecnt);
}
#else
--
2.14.0.rc1.4.gab083fa77
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH rdma-core] util: fix bad argument passed to s390_mmio_write
[not found] ` <7e93dac1-6b15-6ca0-efba-6c05b92afe17-PVCUbA2IIkVH1sytvemUSjhD77mM7E+b@public.gmane.org>
@ 2017-08-04 12:05 ` Nicolas Morey-Chaisemartin
0 siblings, 0 replies; 6+ messages in thread
From: Nicolas Morey-Chaisemartin @ 2017-08-04 12:05 UTC (permalink / raw)
To: linux-rdma-u79uwXL29TY76Z2rM5mHXA
Sorry about this one. Sent from the wrong address. Please ignore
Le 04/08/2017 à 11:18, Nicolas Morey-Chaisemartin a écrit :
> Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin-IBi9RG/b67k@public.gmane.org>
> ---
> util/mmio.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/util/mmio.h b/util/mmio.h
> index be22fb76..101af9dd 100644
> --- a/util/mmio.h
> +++ b/util/mmio.h
> @@ -208,7 +208,7 @@ __le64 mmio_read64_le(const void *addr);
> #ifdef __s390x__
> static inline void mmio_memcpy_x64(void *dest, const void *src, size_t bytecnt)
> {
> - s390_mmio_write(addr, src, bytecnt);
> + s390_mmio_write(dest, src, bytecnt);
> }
> #else
>
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH rdma-core] util: fix bad argument passed to s390_mmio_write
[not found] ` <a30f4084-1f1b-44c3-ac03-c627586e0604-l3A5Bk7waGM@public.gmane.org>
@ 2017-08-04 15:35 ` Jason Gunthorpe
[not found] ` <20170804153528.GB9472-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Jason Gunthorpe @ 2017-08-04 15:35 UTC (permalink / raw)
To: Nicolas Morey-Chaisemartin; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA
Reviewed-by: Jason Gunthorpe <jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
On Fri, Aug 04, 2017 at 11:20:47AM +0200, Nicolas Morey-Chaisemartin wrote:
> Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin-IBi9RG/b67k@public.gmane.org>
> util/mmio.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/util/mmio.h b/util/mmio.h
> index be22fb76..101af9dd 100644
> +++ b/util/mmio.h
> @@ -208,7 +208,7 @@ __le64 mmio_read64_le(const void *addr);
> #ifdef __s390x__
> static inline void mmio_memcpy_x64(void *dest, const void *src, size_t bytecnt)
> {
> - s390_mmio_write(addr, src, bytecnt);
> + s390_mmio_write(dest, src, bytecnt);
> }
> #else
>
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH rdma-core] util: fix bad argument passed to s390_mmio_write
[not found] ` <20170804153528.GB9472-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
@ 2017-08-21 14:26 ` Nicolas Morey-Chaisemartin
[not found] ` <75eaeecd-68f0-ac8f-a948-e972ed9d5ec9-l3A5Bk7waGM@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Morey-Chaisemartin @ 2017-08-21 14:26 UTC (permalink / raw)
To: Jason Gunthorpe; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA
Hi,
This is an easy enough compilation fix.
Could we get it in for v15 ?
Nicolas
Le 04/08/2017 à 17:35, Jason Gunthorpe a écrit :
> Reviewed-by: Jason Gunthorpe <jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
>
> On Fri, Aug 04, 2017 at 11:20:47AM +0200, Nicolas Morey-Chaisemartin wrote:
>> Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin-IBi9RG/b67k@public.gmane.org>
>> util/mmio.h | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/util/mmio.h b/util/mmio.h
>> index be22fb76..101af9dd 100644
>> +++ b/util/mmio.h
>> @@ -208,7 +208,7 @@ __le64 mmio_read64_le(const void *addr);
>> #ifdef __s390x__
>> static inline void mmio_memcpy_x64(void *dest, const void *src, size_t bytecnt)
>> {
>> - s390_mmio_write(addr, src, bytecnt);
>> + s390_mmio_write(dest, src, bytecnt);
>> }
>> #else
>>
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH rdma-core] util: fix bad argument passed to s390_mmio_write
[not found] ` <75eaeecd-68f0-ac8f-a948-e972ed9d5ec9-l3A5Bk7waGM@public.gmane.org>
@ 2017-08-21 14:55 ` Leon Romanovsky
0 siblings, 0 replies; 6+ messages in thread
From: Leon Romanovsky @ 2017-08-21 14:55 UTC (permalink / raw)
To: Nicolas Morey-Chaisemartin
Cc: Jason Gunthorpe, linux-rdma-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 225 bytes --]
On Mon, Aug 21, 2017 at 04:26:33PM +0200, Nicolas Morey-Chaisemartin wrote:
> Hi,
>
> This is an easy enough compilation fix.
> Could we get it in for v15 ?
Sorry,
It looks like that I missed it.
It is applied now.
Thanks
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-08-21 14:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-04 9:20 [PATCH rdma-core] util: fix bad argument passed to s390_mmio_write Nicolas Morey-Chaisemartin
[not found] ` <a30f4084-1f1b-44c3-ac03-c627586e0604-l3A5Bk7waGM@public.gmane.org>
2017-08-04 15:35 ` Jason Gunthorpe
[not found] ` <20170804153528.GB9472-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2017-08-21 14:26 ` Nicolas Morey-Chaisemartin
[not found] ` <75eaeecd-68f0-ac8f-a948-e972ed9d5ec9-l3A5Bk7waGM@public.gmane.org>
2017-08-21 14:55 ` Leon Romanovsky
-- strict thread matches above, loose matches on Subject: below --
2017-08-04 9:18 Nicolas Morey-Chaisemartin
[not found] ` <7e93dac1-6b15-6ca0-efba-6c05b92afe17-PVCUbA2IIkVH1sytvemUSjhD77mM7E+b@public.gmane.org>
2017-08-04 12:05 ` Nicolas Morey-Chaisemartin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox