[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH RESEND v7 18/19] ebpf: Refactor tun_rss_steering_prog()
|
From: |
Akihiko Odaki |
|
Subject: |
[PATCH RESEND v7 18/19] ebpf: Refactor tun_rss_steering_prog() |
|
Date: |
Sat, 18 Nov 2023 18:25:58 +0900 |
This saves branches and makes later BPF program changes easier.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
tools/ebpf/rss.bpf.c | 26 +++++++++++---------------
1 file changed, 11 insertions(+), 15 deletions(-)
diff --git a/tools/ebpf/rss.bpf.c b/tools/ebpf/rss.bpf.c
index 22c75d5912..012af38df1 100644
--- a/tools/ebpf/rss.bpf.c
+++ b/tools/ebpf/rss.bpf.c
@@ -544,27 +544,23 @@ int tun_rss_steering_prog(struct __sk_buff *skb)
config = bpf_map_lookup_elem(&tap_rss_map_configurations, &key);
toe = bpf_map_lookup_elem(&tap_rss_map_toeplitz_key, &key);
- if (config && toe) {
- if (!config->redirect) {
- return config->default_queue;
- }
+ if (!config || !toe) {
+ return 0;
+ }
- if (calculate_rss_hash(skb, config, toe, &hash)) {
- __u32 table_idx = hash % config->indirections_len;
- __u16 *queue = 0;
+ if (config->redirect && calculate_rss_hash(skb, config, toe, &hash)) {
+ __u32 table_idx = hash % config->indirections_len;
+ __u16 *queue = 0;
- queue = bpf_map_lookup_elem(&tap_rss_map_indirection_table,
- &table_idx);
+ queue = bpf_map_lookup_elem(&tap_rss_map_indirection_table,
+ &table_idx);
- if (queue) {
- return *queue;
- }
+ if (queue) {
+ return *queue;
}
-
- return config->default_queue;
}
- return 0;
+ return config->default_queue;
}
char _license[] SEC("license") = "GPL v2";
--
2.42.1
- [PATCH RESEND v7 07/19] virtio-net: Copy header only when necessary, (continued)
- [PATCH RESEND v7 07/19] virtio-net: Copy header only when necessary, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 08/19] virtio-net: Disable RSS on reset, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 09/19] virtio-net: Unify the logic to update NIC state for RSS, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 10/19] virtio-net: Return an error when vhost cannot enable RSS, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 11/19] virtio-net: Report RSS warning at device realization, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 12/19] virtio-net: Always set populate_hash, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 13/19] virtio-net: Do not write hashes to peer buffer, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 14/19] ebpf: Fix RSS error handling, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 16/19] ebpf: Simplify error handling, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 15/19] ebpf: Use standard section name, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 18/19] ebpf: Refactor tun_rss_steering_prog(),
Akihiko Odaki <=
- [PATCH RESEND v7 19/19] ebpf: Add a separate target for skeleton, Akihiko Odaki, 2023/11/18
- [PATCH RESEND v7 17/19] ebpf: Return 0 when configuration fails, Akihiko Odaki, 2023/11/18