diff options
author | 2014-05-21 17:36:33 -0700 | |
---|---|---|
committer | 2014-05-21 17:36:33 -0700 | |
commit | 03c1b4e8e560455a2634a76998883a22f1a01207 (patch) | |
tree | 30ca1237d094d66df1dc1533f7bf39b3877b5932 /tools | |
parent | x86, mm: Replace arch_vma_name with vm_ops->name for vsyscalls (diff) | |
parent | Merge commit '7ed6fb9b5a5510e4ef78ab27419184741169978a' into x86/espfix (diff) | |
download | wireguard-linux-03c1b4e8e560455a2634a76998883a22f1a01207.tar.xz wireguard-linux-03c1b4e8e560455a2634a76998883a22f1a01207.zip |
Merge remote-tracking branch 'origin/x86/espfix' into x86/vdso
Merge x86/espfix into x86/vdso, due to changes in the vdso setup code
that otherwise cause conflicts.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to '')
-rw-r--r-- | tools/net/bpf_dbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/bpf_dbg.c b/tools/net/bpf_dbg.c index bb31813e43dd..9a287bec695a 100644 --- a/tools/net/bpf_dbg.c +++ b/tools/net/bpf_dbg.c @@ -820,7 +820,7 @@ do_div: r->A &= r->X; break; case BPF_ALU_AND | BPF_K: - r->A &= r->X; + r->A &= K; break; case BPF_ALU_OR | BPF_X: r->A |= r->X; |