Loading arch/arm/net/bpf_jit_32.c +10 −0 Original line number Diff line number Diff line Loading @@ -852,6 +852,16 @@ static int build_body(struct jit_ctx *ctx) off = offsetof(struct sk_buff, queue_mapping); emit(ARM_LDRH_I(r_A, r_skb, off), ctx); break; case BPF_LDX | BPF_W | BPF_ABS: /* * load a 32bit word from struct seccomp_data. * seccomp_check_filter() will already have checked * that k is 32bit aligned and lies within the * struct seccomp_data. */ ctx->seen |= SEEN_SKB; emit(ARM_LDR_I(r_A, r_skb, k), ctx); break; default: return -1; } Loading Loading
arch/arm/net/bpf_jit_32.c +10 −0 Original line number Diff line number Diff line Loading @@ -852,6 +852,16 @@ static int build_body(struct jit_ctx *ctx) off = offsetof(struct sk_buff, queue_mapping); emit(ARM_LDRH_I(r_A, r_skb, off), ctx); break; case BPF_LDX | BPF_W | BPF_ABS: /* * load a 32bit word from struct seccomp_data. * seccomp_check_filter() will already have checked * that k is 32bit aligned and lies within the * struct seccomp_data. */ ctx->seen |= SEEN_SKB; emit(ARM_LDR_I(r_A, r_skb, k), ctx); break; default: return -1; } Loading