virtio_console: Use kmalloc instead of kzalloc
authorSjur Brændeland <sjur.brandeland@stericsson.com>
Mon, 15 Oct 2012 07:57:34 +0000 (09:57 +0200)
committerRusty Russell <rusty@rustcorp.com.au>
Tue, 18 Dec 2012 04:50:39 +0000 (15:20 +1030)
commit0127f6855e643c6b8fd5fbe3b5fa23c9d26cd237
tree3f4d424926d3cceb7f70d62a79d25fc8e85d4fea
parentfe5295374ec9ac56ba3b619c5c1792b3fd66d859
virtio_console: Use kmalloc instead of kzalloc

Avoid the more cpu expensive kzalloc when allocating buffers.
Originally kzalloc was intended for isolating the guest from
the host by not sending random guest data to the host. But device
isolation is not yet in place so kzalloc is not really needed.

Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
drivers/char/virtio_console.c