[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <55534659.9000606@mellanox.com>
Date: Wed, 13 May 2015 15:40:57 +0300
From: Amir Vadai <amirv@...lanox.com>
To: Alexander Duyck <alexander.h.duyck@...hat.com>
CC: <achiad@...lanox.com>, Or Gerlitz <ogerlitz@...lanox.com>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: dma_alloc_coherent() to use memory close to cpu
Hi Alex,
dma_alloc_coherent() is allocating memory close to the device -
according to dev_to_node(dev). Sometimes it is better to use memory
close to the CPU. e.g. when it is a buffer that NIC writes and CPU reads.
It seems that you thought that too, and added a commit to ixgbe driver
that follows that logic [1].
You added calls to set_dev_node() before and after the allocation.
This seems to be prone to races in case multiple process want to alloc
in parallel. The proper fix seems to be to extend the
dma_alloc_coherent() to accept a NUMA node as an argument (if device's
node is not good enough).
I looked for, but couldn't find any discussion about that - is there a
special reason not to extend dma_alloc_coherent()?
[1] - de88eee ("ixgbe: Allocate rings as part of the q_vector")
Thanks,
Amir
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists