All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] add LSC and Rxq interrupt for virtio-user
@ 2017-03-03 17:56 Jianfeng Tan
  2017-03-03 17:56 ` [PATCH 1/5] eal/linux: add interrupt type for vdev Jianfeng Tan
                   ` (6 more replies)
  0 siblings, 7 replies; 38+ messages in thread
From: Jianfeng Tan @ 2017-03-03 17:56 UTC (permalink / raw)
  To: dev; +Cc: yuanhan.liu, david.marchand, Jianfeng Tan

This is an attempt to add LSC and Rxq interrupt for a virtual device,
virtio-user (with the backend of both vhost-user and vhost-kernel).

HOW TO TEST:

Step 1: start testpmd with a virtual vhost device:
  $ testpmd -c 0x3 -n 4 --socket-mem 1024 --no-pci \
	  --vdev 'eth_vhost0,iface=/tmp/sock0' -- -i

Step 2: start l3fwd-power with a virtio-user device:
  $ l3fwd-power -c 0xc -n 4 --socket-mem 1024 --no-pci \
	  --file-prefix=l3fwd-pwd \
	  --vdev=virtio_user0,path=/tmp/sock0 \
	  -- -p 1 -P --config="(0,0,1)" \
	  --no-numa --parse-ptype

Step 3: start burst in testpmd
  (testpmd)> start tx_first

  Packets will be received and forwarded back by l3fwd-power.
  And l3fwd-power will keep in polling mode.

Step 4: stop burst in testpmd
  (testpmd)> stop

  l3fwd-power will change to interrupt mode with few CPU
  consumption.

Step 5: kill testpmd
  $ kill -p `pidof testpmd`

  The link status will be changed to down in l3fwd-power.

Signed-off-by: Jianfeng Tan <jianfeng.tan@intel.com>

Jianfeng Tan (5):
  eal/linux: add interrupt type for vdev
  net/virtio-user: add rxq interrupt mode support
  net/virtio-user: support to report net status
  net/virtio-user: add lsc support with vhost-user adapter
  net/virtio-user: add lsc support with vhost-kernel adapter

 drivers/net/virtio/virtio_ethdev.c                 | 46 +++++++++----
 drivers/net/virtio/virtio_ethdev.h                 |  2 +
 drivers/net/virtio/virtio_user/virtio_user_dev.c   | 52 ++++++++++++++-
 drivers/net/virtio/virtio_user/virtio_user_dev.h   |  4 +-
 drivers/net/virtio/virtio_user_ethdev.c            | 76 +++++++++++++++++++---
 lib/librte_eal/linuxapp/eal/eal_interrupts.c       | 32 ++++++++-
 lib/librte_eal/linuxapp/eal/eal_pci_vfio.c         |  2 +
 .../linuxapp/eal/include/exec-env/rte_interrupts.h |  5 +-
 8 files changed, 192 insertions(+), 27 deletions(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2017-04-01  5:16 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-03 17:56 [PATCH 0/5] add LSC and Rxq interrupt for virtio-user Jianfeng Tan
2017-03-03 17:56 ` [PATCH 1/5] eal/linux: add interrupt type for vdev Jianfeng Tan
2017-03-03 17:56 ` [PATCH 2/5] net/virtio-user: add rxq interrupt mode support Jianfeng Tan
2017-03-17  6:47   ` Yuanhan Liu
2017-03-28  1:33     ` Tan, Jianfeng
2017-03-03 17:56 ` [PATCH 3/5] net/virtio-user: support to report net status Jianfeng Tan
2017-03-17  6:54   ` Yuanhan Liu
2017-03-27  7:46     ` Tan, Jianfeng
2017-03-29  6:33       ` Yuanhan Liu
2017-03-29  7:07         ` Tan, Jianfeng
2017-03-29  7:14           ` Yuanhan Liu
2017-03-29  7:48             ` Tan, Jianfeng
2017-03-29  8:00               ` Yuanhan Liu
2017-03-29  8:33                 ` Tan, Jianfeng
2017-03-29  8:36                   ` Yuanhan Liu
2017-03-30  3:14                     ` Tan, Jianfeng
2017-03-03 17:56 ` [PATCH 4/5] net/virtio-user: add lsc support with vhost-user adapter Jianfeng Tan
2017-03-17  8:29   ` Yuanhan Liu
2017-03-27  1:51     ` Tan, Jianfeng
2017-03-03 17:56 ` [PATCH 5/5] net/virtio-user: add lsc support with vhost-kernel adapter Jianfeng Tan
2017-03-28  8:21 ` [PATCH v2 0/5] add LSC and Rxq interrupt for virtio-user Jianfeng Tan
2017-03-28  8:21   ` [PATCH v2 1/5] eal/linux: add interrupt type for vdev Jianfeng Tan
2017-03-28  8:21   ` [PATCH v2 2/5] net/virtio: add interrupt configure " Jianfeng Tan
2017-03-29  6:27     ` Yuanhan Liu
2017-03-29  7:03       ` Tan, Jianfeng
2017-03-29  7:09         ` Yuanhan Liu
2017-03-29  7:27           ` Tan, Jianfeng
2017-03-29  7:30             ` Yuanhan Liu
2017-03-28  8:21   ` [PATCH v2 3/5] net/virtio-user: add rxq interrupt mode support Jianfeng Tan
2017-03-28  8:21   ` [PATCH v2 4/5] net/virtio-user: support to report net status Jianfeng Tan
2017-03-28  8:21   ` [PATCH v2 5/5] net/virtio-user: add lsc support Jianfeng Tan
2017-03-31 19:44 ` [PATCH v3 0/5] add LSC and Rxq interrupt for virtio-user Jianfeng Tan
2017-03-31 19:44   ` [PATCH v3 1/5] eal/linux: add interrupt type for vdev Jianfeng Tan
2017-03-31 19:44   ` [PATCH v3 2/5] net/virtio-user: move eventfd open/close into init/uninit Jianfeng Tan
2017-03-31 19:44   ` [PATCH v3 3/5] net/virtio-user: add rxq interrupt mode support Jianfeng Tan
2017-03-31 19:44   ` [PATCH v3 4/5] net/virtio-user: support to report net status Jianfeng Tan
2017-03-31 19:44   ` [PATCH v3 5/5] net/virtio-user: add lsc support Jianfeng Tan
2017-04-01  5:13     ` Yuanhan Liu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.