All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] virtio-console: remove unnecessary kmemdup()
@ 2021-08-01  5:16 ` Xianting Tian
  0 siblings, 0 replies; 9+ messages in thread
From: Xianting Tian @ 2021-08-01  5:16 UTC (permalink / raw)
  To: gregkh, jirislaby, amit, arnd
  Cc: linuxppc-dev, virtualization, linux-kernel, Xianting Tian

hvc framework will never pass stack memory to the put_chars() function,
So the calling of kmemdup() is unnecessary, remove it.

Fixes: c4baad5029 ("virtio-console: avoid DMA from stack")
Signed-off-by: Xianting Tian <xianting.tian@linux.alibaba.com>
---
 drivers/char/virtio_console.c | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index 7eaf303a7..4ed3ffb1d 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -1117,8 +1117,6 @@ static int put_chars(u32 vtermno, const char *buf, int count)
 {
 	struct port *port;
 	struct scatterlist sg[1];
-	void *data;
-	int ret;
 
 	if (unlikely(early_put_chars))
 		return early_put_chars(vtermno, buf, count);
@@ -1127,14 +1125,8 @@ static int put_chars(u32 vtermno, const char *buf, int count)
 	if (!port)
 		return -EPIPE;
 
-	data = kmemdup(buf, count, GFP_ATOMIC);
-	if (!data)
-		return -ENOMEM;
-
-	sg_init_one(sg, data, count);
-	ret = __send_to_port(port, sg, 1, count, data, false);
-	kfree(data);
-	return ret;
+	sg_init_one(sg, buf, count);
+	return __send_to_port(port, sg, 1, count, (void *)buf, false);
 }
 
 /*
-- 
2.17.1


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

end of thread, other threads:[~2021-08-02 23:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-01  5:16 [PATCH 2/2] virtio-console: remove unnecessary kmemdup() Xianting Tian
2021-08-01  5:16 ` Xianting Tian
2021-08-02  7:25 ` Jiri Slaby
2021-08-02  7:25   ` Jiri Slaby
2021-08-02  8:32   ` Xianting Tian
2021-08-02  8:40     ` Jiri Slaby
2021-08-02  8:40       ` Jiri Slaby
2021-08-02  8:55       ` Xianting Tian
2021-08-02  8:55         ` Xianting Tian

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.