You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the data member in struct bpf_lpm_trie_key is unused in dae, struct bpf_lpm_trie_key_hdr is obviously a better option. By using the new struct bpf_lpm_trie_key_hdr, the following code in dae should be changed:
struct bpf_lpm_trie_key
has been deprecated since kernel 6.9. It is recommended to usestruct bpf_lpm_trie_key_u8
(when the "data" member is needed for byte access) orstruct bpf_lpm_trie_key_hdr
(when using an alternative type for the trailing flexible array member) instead.data
member instruct bpf_lpm_trie_key
is unused in dae,struct bpf_lpm_trie_key_hdr
is obviously a better option. By using the newstruct bpf_lpm_trie_key_hdr
, the following code in dae should be changed:The text was updated successfully, but these errors were encountered: