Jelajahi Sumber

hv_netvsc: Allocate the sendbuf in a NUMA aware way

Allocate the send buffer in a NUMA aware way.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
K. Y. Srinivasan 10 tahun lalu
induk
melakukan
5defde5946
1 mengubah file dengan 3 tambahan dan 1 penghapusan
  1. 3 1
      drivers/net/hyperv/netvsc.c

+ 3 - 1
drivers/net/hyperv/netvsc.c

@@ -326,7 +326,9 @@ static int netvsc_init_buf(struct hv_device *device)
 
 
 	/* Now setup the send buffer.
 	/* Now setup the send buffer.
 	 */
 	 */
-	net_device->send_buf = vzalloc(net_device->send_buf_size);
+	net_device->send_buf = vzalloc_node(net_device->send_buf_size, node);
+	if (!net_device->send_buf)
+		net_device->send_buf = vzalloc(net_device->send_buf_size);
 	if (!net_device->send_buf) {
 	if (!net_device->send_buf) {
 		netdev_err(ndev, "unable to allocate send "
 		netdev_err(ndev, "unable to allocate send "
 			   "buffer of size %d\n", net_device->send_buf_size);
 			   "buffer of size %d\n", net_device->send_buf_size);