xdp-tutorial
xdp-tutorial copied to clipboard
About BPF_MAP_TYPE_HASH_OF_MAPS (map in map)
I have two map. Could I use it like the following ? 2 diferent keys store a same inner map kv.
outer_map
inner_map
outer_map(key_a, inner_map(key1, val1))
outer_map(key_b, inner_map(key1, val1))
I think so? Did you try it?
I think so? Did you try it?
I'll have a try later. Then,I will share with you.