[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH 09/12] softmmu/vl.c: Add filter-ubpf for netdev as other netf
|
From: |
Zhang Chen |
|
Subject: |
[RFC PATCH 09/12] softmmu/vl.c: Add filter-ubpf for netdev as other netfilters |
|
Date: |
Fri, 17 Jun 2022 15:36:27 +0800 |
Signed-off-by: Zhang Chen <chen.zhang@intel.com>
---
softmmu/vl.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/softmmu/vl.c b/softmmu/vl.c
index 4c1e94b00e..d924fb1c71 100644
--- a/softmmu/vl.c
+++ b/softmmu/vl.c
@@ -1822,7 +1822,8 @@ static bool object_create_early(const char *type)
g_str_equal(type, "filter-redirector") ||
g_str_equal(type, "colo-compare") ||
g_str_equal(type, "filter-rewriter") ||
- g_str_equal(type, "filter-replay")) {
+ g_str_equal(type, "filter-replay") ||
+ g_str_equal(type, "filter-ubpf")) {
return false;
}
--
2.25.1
[RFC PATCH 02/12] meson: Add ubpf build config and misc, Zhang Chen, 2022/06/17
[RFC PATCH 03/12] ebpf/uBPF: Introduce userspace ebpf data structure, Zhang Chen, 2022/06/17
[RFC PATCH 05/12] ebpf/uBPF: Add qemu_prepare_ubpf to load ebpf binary, Zhang Chen, 2022/06/17
[RFC PATCH 04/12] ebpf/uBPF: Introduce ubpf initialize functions, Zhang Chen, 2022/06/17
[RFC PATCH 06/12] ebpf/uBPF: Add qemu_ubpf_run_once excute real ebpf program, Zhang Chen, 2022/06/17
[RFC PATCH 07/12] net/filter: Introduce filter-ubpf module, Zhang Chen, 2022/06/17
[RFC PATCH 09/12] softmmu/vl.c: Add filter-ubpf for netdev as other netfilters,
Zhang Chen <=
[RFC PATCH 08/12] qapi: Add FilterUbpfProperties and qemu-options, Zhang Chen, 2022/06/17
[RFC PATCH 10/12] net/filter-ubpf.c: run the ubpf program to handle network packet, Zhang Chen, 2022/06/17
[RFC PATCH 11/12] docs/devel: Add userspace-ebpf.rst, Zhang Chen, 2022/06/17
[RFC PATCH 12/12] test/qtest: Add ubpf basic test case, Zhang Chen, 2022/06/17
Re: [RFC PATCH 00/12] Introduce QEMU userspace ebpf support, Andrew Melnichenko, 2022/06/29