diff mbox series

[bpf-next] mips, bpf: Fix Makefile that referenced a removed file

Message ID 20211007142339.633899-1-johan.almbladh@anyfinetworks.com (mailing list archive)
State Accepted
Commit 065485ac5e8621daf44a0f0e4e844d9f4a451c27
Delegated to: BPF
Headers show
Series [bpf-next] mips, bpf: Fix Makefile that referenced a removed file | expand

Checks

Context Check Description
netdev/cover_letter success Single patches do not need cover letters
netdev/fixes_present success Fixes tag not required for -next series
netdev/patch_count success Link
netdev/tree_selection success Clearly marked for bpf-next
netdev/subject_prefix success Link
netdev/cc_maintainers warning 2 maintainers not CCed: linux-mips@vger.kernel.org tsbogend@alpha.franken.de
netdev/source_inline success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/module_param success Was 0 now: 0
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/verify_fixes success Fixes tag looks correct
netdev/checkpatch warning WARNING: Unknown commit id '06b339fe5450', maybe rebased or not pulled?
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/header_inline success No static functions without inline keyword in header files
bpf/vmtest-bpf-next-PR success PR summary
bpf/vmtest-bpf-next success VM_Test

Commit Message

Johan Almbladh Oct. 7, 2021, 2:23 p.m. UTC
This patch removes a stale Makefile reference to the cBPF JIT that was
removed.

Fixes: 06b339fe5450 ("mips, bpf: Remove old BPF JIT implementations")
Signed-off-by: Johan Almbladh <johan.almbladh@anyfinetworks.com>
---
 arch/mips/net/Makefile | 1 -
 1 file changed, 1 deletion(-)

Comments

patchwork-bot+netdevbpf@kernel.org Oct. 7, 2021, 8 p.m. UTC | #1
Hello:

This patch was applied to bpf/bpf-next.git (master)
by Daniel Borkmann <daniel@iogearbox.net>:

On Thu,  7 Oct 2021 16:23:39 +0200 you wrote:
> This patch removes a stale Makefile reference to the cBPF JIT that was
> removed.
> 
> Fixes: 06b339fe5450 ("mips, bpf: Remove old BPF JIT implementations")
> Signed-off-by: Johan Almbladh <johan.almbladh@anyfinetworks.com>
> ---
>  arch/mips/net/Makefile | 1 -
>  1 file changed, 1 deletion(-)

Here is the summary with links:
  - [bpf-next] mips, bpf: Fix Makefile that referenced a removed file
    https://git.kernel.org/bpf/bpf-next/c/065485ac5e86

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/arch/mips/net/Makefile b/arch/mips/net/Makefile
index 602bf242b13f..95e826781dbc 100644
--- a/arch/mips/net/Makefile
+++ b/arch/mips/net/Makefile
@@ -1,7 +1,6 @@ 
 # SPDX-License-Identifier: GPL-2.0-only
 # MIPS networking code
 
-obj-$(CONFIG_MIPS_CBPF_JIT) += bpf_jit.o bpf_jit_asm.o
 obj-$(CONFIG_MIPS_EBPF_JIT) += bpf_jit_comp.o
 
 ifeq ($(CONFIG_32BIT),y)