Merge branch 'bpf-next/skb-meta-dynptr' into 'bpf-next/master'

Merge skb-meta-dynptr branch into master branch after fixing a compiler
warning. No conflict.

Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
This commit is contained in:
Martin KaFai Lau
2025-09-04 21:10:13 -07:00

View File

@@ -1816,7 +1816,7 @@ static inline void bpf_xdp_copy_buf(struct xdp_buff *xdp, unsigned long off, voi
static inline void *bpf_skb_meta_pointer(struct sk_buff *skb, u32 offset)
{
return NULL;
return ERR_PTR(-EOPNOTSUPP);
}
#endif /* CONFIG_NET */