]> git.baikalelectronics.ru Git - kernel.git/commit
vhost: introduce O(1) vq metadata cache
authorJason Wang <jasowang@redhat.com>
Tue, 28 Feb 2017 09:56:02 +0000 (17:56 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 1 Mar 2017 23:35:06 +0000 (01:35 +0200)
commit52f88933c005b1dc11ba26d2c1c86049eb0a6d03
tree2c09c351ea07a45719a217a37fcc2fcec8591dff
parent353f8046af9c3c47de07bbd1a8a706bbad7c6d2b
vhost: introduce O(1) vq metadata cache

When device IOTLB is enabled, all address translations were stored in
interval tree. O(lgN) searching time could be slow for virtqueue
metadata (avail, used and descriptors) since they were accessed much
often than other addresses. So this patch introduces an O(1) array
which points to the interval tree nodes that store the translations of
vq metadata. Those array were update during vq IOTLB prefetching and
were reset during each invalidation and tlb update. Each time we want
to access vq metadata, this small array were queried before interval
tree. This would be sufficient for static mappings but not dynamic
mappings, we could do optimizations on top.

Test were done with l2fwd in guest (2M hugepage):

   noiommu  | before        | after
tx 1.32Mpps | 1.06Mpps(82%) | 1.30Mpps(98%)
rx 2.33Mpps | 1.46Mpps(63%) | 2.29Mpps(98%)

We can almost reach the same performance as noiommu mode.

Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vhost/vhost.c
drivers/vhost/vhost.h