|
@@ -4310,16 +4310,15 @@ static u32 xdp_convert_ctx_access(enum bpf_access_type type,
|
|
|
si->dst_reg, si->dst_reg,
|
|
|
offsetof(struct xdp_rxq_info, dev));
|
|
|
*insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
|
|
|
- bpf_target_off(struct net_device,
|
|
|
- ifindex, 4, target_size));
|
|
|
+ offsetof(struct net_device, ifindex));
|
|
|
break;
|
|
|
case offsetof(struct xdp_md, rx_queue_index):
|
|
|
*insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct xdp_buff, rxq),
|
|
|
si->dst_reg, si->src_reg,
|
|
|
offsetof(struct xdp_buff, rxq));
|
|
|
*insn++ = BPF_LDX_MEM(BPF_W, si->dst_reg, si->dst_reg,
|
|
|
- bpf_target_off(struct xdp_rxq_info,
|
|
|
- queue_index, 4, target_size));
|
|
|
+ offsetof(struct xdp_rxq_info,
|
|
|
+ queue_index));
|
|
|
break;
|
|
|
}
|
|
|
|