]> Git Repo - linux.git/blobdiff - lib/test_bpf.c
Merge tag 'armsoc-late' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[linux.git] / lib / test_bpf.c
index 8f22fbedc3a699d07f05375d0a0832cc9da1d1b0..93f45011a59d01ef017aa2a1a4a68ee6f4060bce 100644 (file)
@@ -5621,7 +5621,10 @@ static struct bpf_prog *generate_filter(int which, int *err)
                fp->type = BPF_PROG_TYPE_SOCKET_FILTER;
                memcpy(fp->insnsi, fptr, fp->len * sizeof(struct bpf_insn));
 
-               bpf_prog_select_runtime(fp);
+               /* We cannot error here as we don't need type compatibility
+                * checks.
+                */
+               fp = bpf_prog_select_runtime(fp, err);
                break;
        }
 
This page took 0.029749 seconds and 4 git commands to generate.