]> git.baikalelectronics.ru Git - kernel.git/commit
net/xen-netfront: Make it running on 64KB page granularity
authorJulien Grall <julien.grall@citrix.com>
Fri, 10 Apr 2015 13:42:21 +0000 (14:42 +0100)
committerDavid Vrabel <david.vrabel@citrix.com>
Fri, 23 Oct 2015 13:20:40 +0000 (14:20 +0100)
commitf38fdccd8ce7b2af6d776d5987c4fae4de84d774
tree8c7f72b86814e9ced1da12c285dd80de2793384a
parent9aeaa8a73a0c2af0e1a411aa1ede3245baf9b247
net/xen-netfront: Make it running on 64KB page granularity

The PV network protocol is using 4KB page granularity. The goal of this
patch is to allow a Linux using 64KB page granularity using network
device on a non-modified Xen.

It's only necessary to adapt the ring size and break skb data in small
chunk of 4KB. The rest of the code is relying on the grant table code.

Note that we allocate a Linux page for each rx skb but only the first
4KB is used. We may improve the memory usage by extending the size of
the rx skb.

Signed-off-by: Julien Grall <julien.grall@citrix.com>
Reviewed-by: David Vrabel <david.vrabel@citrix.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
drivers/net/xen-netfront.c