diff options
author | Jiri Pirko <[email protected]> | 2024-06-19 08:17:48 +0200 |
---|---|---|
committer | Jakub Kicinski <[email protected]> | 2024-06-20 07:10:32 -0700 |
commit | 48dea8f7bb011608fd969749a1980f8311ef45f2 (patch) | |
tree | 8540167a0373cd95f09c260721cd0b00f53c24ab | |
parent | 3f67782e10f25d36abc909c2a5756382d937cd6f (diff) |
selftests: virtio_net: add forgotten config options
One may use tools/testing/selftests/drivers/net/virtio_net/config
for example for vng build command like this one:
$ vng -v -b -f tools/testing/selftests/drivers/net/virtio_net/config
In that case, the needed kernel config options are not turned on.
Add the missed kernel config options.
Reported-by: Jakub Kicinski <[email protected]>
Closes: https://lore.kernel.org/netdev/[email protected]/
Reported-by: Matthieu Baerts <[email protected]>
Closes: https://lore.kernel.org/netdev/[email protected]/
Fixes: ccfaed04db5e ("selftests: virtio_net: add initial tests")
Signed-off-by: Jiri Pirko <[email protected]>
Reviewed-by: Xuan Zhuo <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r-- | tools/testing/selftests/drivers/net/virtio_net/config | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/testing/selftests/drivers/net/virtio_net/config b/tools/testing/selftests/drivers/net/virtio_net/config index f35de0542b60..bcf7555eaffe 100644 --- a/tools/testing/selftests/drivers/net/virtio_net/config +++ b/tools/testing/selftests/drivers/net/virtio_net/config @@ -1,2 +1,8 @@ -CONFIG_VIRTIO_NET=y +CONFIG_BPF_SYSCALL=y +CONFIG_CGROUP_BPF=y +CONFIG_IPV6=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_NET_VRF=m CONFIG_VIRTIO_DEBUG=y +CONFIG_VIRTIO_NET=y |