Searched refs:nla_xdp (Results 1 – 1 of 1) sorted by relevance
1232 struct nlattr *nla, *nla_xdp; in bpf_attach_xdp() local1284 nla_xdp = (struct nlattr *)((char *)nla + NLA_HDRLEN); in bpf_attach_xdp()1288 nla_xdp->nla_type = 1/*IFLA_XDP_FD*/; in bpf_attach_xdp()1289 nla_xdp->nla_len = NLA_HDRLEN + sizeof(progfd); in bpf_attach_xdp()1290 memcpy((char *)nla_xdp + NLA_HDRLEN, &progfd, sizeof(progfd)); in bpf_attach_xdp()1291 nla->nla_len += nla_xdp->nla_len; in bpf_attach_xdp()1295 nla_xdp = (struct nlattr *)((char *)nla + nla->nla_len); in bpf_attach_xdp()1296 nla_xdp->nla_type = 3/*IFLA_XDP_FLAGS*/; in bpf_attach_xdp()1297 nla_xdp->nla_len = NLA_HDRLEN + sizeof(flags); in bpf_attach_xdp()1298 memcpy((char *)nla_xdp + NLA_HDRLEN, &flags, sizeof(flags)); in bpf_attach_xdp()[all …]