]> git.kernelconcepts.de Git - karo-tx-linux.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)
commit30c5d7f0da82f55c86c0a09bf21c0623474bb17f
tree8c7f72b86814e9ced1da12c285dd80de2793384a
parent67de5dfbc176ea86ab0278658b5d55f64207ff2d
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