From 7105b056583186a8e18d0da46e4e8db46592f0ab Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 8 Jun 2009 14:33:25 +0200 Subject: [PATCH] xen nic: use qemu_malloc Signed-off-by: Gerd Hoffmann --- hw/xen_nic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/xen_nic.c b/hw/xen_nic.c index 048d86568b..5fcc701904 100644 --- a/hw/xen_nic.c +++ b/hw/xen_nic.c @@ -176,7 +176,7 @@ static void net_tx_packets(struct XenNetDev *netdev) if (txreq.flags & NETTXF_csum_blank) { /* have read-only mapping -> can't fill checksum in-place */ if (!tmpbuf) - tmpbuf = malloc(PAGE_SIZE); + tmpbuf = qemu_malloc(PAGE_SIZE); memcpy(tmpbuf, page + txreq.offset, txreq.size); net_checksum_calculate(tmpbuf, txreq.size); qemu_send_packet(netdev->vs, tmpbuf, txreq.size); @@ -190,7 +190,7 @@ static void net_tx_packets(struct XenNetDev *netdev) break; netdev->tx_work = 0; } - free(tmpbuf); + qemu_free(tmpbuf); } /* ------------------------------------------------------------- */ -- 2.11.4.GIT