summaryrefslogtreecommitdiffstats
path: root/net/Makefile.objs
diff options
context:
space:
mode:
authorPavel Dovgalyuk2016-09-26 10:08:21 +0200
committerJason Wang2017-01-06 03:38:00 +0100
commit646c5478c04297485e3e045cd8969d2ae7642004 (patch)
tree866c3f19ca73a262c3f814e48bf7de0e92ba2d68 /net/Makefile.objs
parentMerge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into ... (diff)
downloadqemu-646c5478c04297485e3e045cd8969d2ae7642004.tar.gz
qemu-646c5478c04297485e3e045cd8969d2ae7642004.tar.xz
qemu-646c5478c04297485e3e045cd8969d2ae7642004.zip
record/replay: add network support
This patch adds support of recording and replaying network packets in irount rr mode. Record and replay for network interactions is performed with the network filter. Each backend must have its own instance of the replay filter as follows: -netdev user,id=net1 -device rtl8139,netdev=net1 -object filter-replay,id=replay,netdev=net1 Replay network filter is used to record and replay network packets. While recording the virtual machine this filter puts all packets coming from the outer world into the log. In replay mode packets from the log are injected into the network device. All interactions with network backend in replay mode are disabled. v5 changes: - using iov_to_buf function instead of loop Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net/Makefile.objs')
-rw-r--r--net/Makefile.objs1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/Makefile.objs b/net/Makefile.objs
index 2a80df5fa7..2e2fd43014 100644
--- a/net/Makefile.objs
+++ b/net/Makefile.objs
@@ -19,3 +19,4 @@ common-obj-y += filter-mirror.o
common-obj-y += colo-compare.o
common-obj-y += colo.o
common-obj-y += filter-rewriter.o
+common-obj-y += filter-replay.o