This group is locked. No changes can be made to the group while it is locked.
Date
1 - 4 of 4
BPF Maps with wildcards
Marinos Dimolianis
Hi all, I am trying to find a way to represent wildcards in BPF Map Keys?
I could not find anything relevant to that, does anyone know anything further. Are there any efforts towards that functionality? Regards, Marinos |
Yonghong Song
On Wed, Nov 18, 2020 at 6:20 AM <dimolianis.marinos@...> wrote:
The closest map is lpm (trie) map. You may want to take a look. |
Marinos Dimolianis
Thanks for the response. LPM is actually the closest solution however I wanted a structure closer to the way TCAMs operate in which you can have wildcards also in the interim bits. I believe that something like that does not exist and I need to implement it using available structures in eBPF/XDP. Στις Πέμ, 19 Νοε 2020 στις 5:27 π.μ., ο/η Y Song <ys114321@...> έγραψε: On Wed, Nov 18, 2020 at 6:20 AM <dimolianis.marinos@...> wrote: |
Yonghong Song
On Thu, Nov 19, 2020 at 9:57 AM Marinos Dimolianis
<dimolianis.marinos@...> wrote: eBPF/XDP. Right, BPF does not have TCAM style maps. If you organize data structure properly, you may be able to use LPM.
|