Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1275198

[PATCH 1/2] fs/pstore: Use memcpy_toio instead of memcpy

From Enric Balletbo i Serra <eballetbo@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 1/2] fs/pstore: Use memcpy_toio instead of memcpy
Date 2015-11-23 11:00 +0100
Message-ID <qxW4I-8tT-31@gated-at.bofh.it> (permalink)
References <qxW4G-8tT-1@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Furquan Shaikh <furquan@google.com>

persistent_ram_update uses vmap / iomap based on whether the buffer is in
memory region or reserved region. However, both map it as non-cacheable
memory. For armv8 specifically, non-cacheable mapping requests use a
memory type that has to be accessed aligned to the request size. memcpy()
doesn't guarantee that.

Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Olof Johansson <olofj@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Signed-off-by: Enric Balletbo Serra <enric.balletbo@collabora.com>
---
 fs/pstore/ram_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/pstore/ram_core.c b/fs/pstore/ram_core.c
index 76c3f80..351164d 100644
--- a/fs/pstore/ram_core.c
+++ b/fs/pstore/ram_core.c
@@ -299,7 +299,7 @@ static void notrace persistent_ram_update(struct persistent_ram_zone *prz,
 	const void *s, unsigned int start, unsigned int count)
 {
 	struct persistent_ram_buffer *buffer = prz->buffer;
-	memcpy(buffer->data + start, s, count);
+	memcpy_toio(buffer->data + start, s, count);
 	persistent_ram_update_ecc(prz, start, count);
 }
 
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread


Thread

[PATCH 0/2] fs/pstore: Use memcpy_from/toio() instead of memcpy. Enric Balletbo i Serra <eballetbo@gmail.com> - 2015-11-23 11:00 +0100
  [PATCH 2/2] fs/pstore: Use memcpy_fromio() to save old ramoops buffer Enric Balletbo i Serra <eballetbo@gmail.com> - 2015-11-23 11:00 +0100
  [PATCH 1/2] fs/pstore: Use memcpy_toio instead of memcpy Enric Balletbo i Serra <eballetbo@gmail.com> - 2015-11-23 11:00 +0100

csiph-web