]> git.baikalelectronics.ru Git - kernel.git/commit
tuntap: multiqueue support
authorJason Wang <jasowang@redhat.com>
Wed, 31 Oct 2012 19:46:00 +0000 (19:46 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 1 Nov 2012 15:14:08 +0000 (11:14 -0400)
commitad875707461d9d1409ce0203780868f6dde7245d
treec3e3de9051548b119743e5c3ae1ecf62bd32f40e
parent2f0d2fc1704d48a20dd3db70e52f969efc0d97a4
tuntap: multiqueue support

This patch converts tun/tap to a multiqueue devices and expose the multiqueue
queues as multiple file descriptors to userspace. Internally, each tun_file were
abstracted as a queue, and an array of pointers to tun_file structurs were
stored in tun_structure device, so multiple tun_files were allowed to be
attached to the device as multiple queues.

When choosing txq, we first try to identify a flow through its rxhash, if it
does not have such one, we could try recorded rxq and then use them to choose
the transmit queue. This policy may be changed in the future.

Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tun.c