diff options
-rw-r--r-- | kernel/bpf/verifier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 3fc6e39b223e..796b68d00119 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c | |||
@@ -33,7 +33,7 @@ | |||
33 | * - out of bounds or malformed jumps | 33 | * - out of bounds or malformed jumps |
34 | * The second pass is all possible path descent from the 1st insn. | 34 | * The second pass is all possible path descent from the 1st insn. |
35 | * Since it's analyzing all pathes through the program, the length of the | 35 | * Since it's analyzing all pathes through the program, the length of the |
36 | * analysis is limited to 32k insn, which may be hit even if total number of | 36 | * analysis is limited to 64k insn, which may be hit even if total number of |
37 | * insn is less then 4K, but there are too many branches that change stack/regs. | 37 | * insn is less then 4K, but there are too many branches that change stack/regs. |
38 | * Number of 'branches to be analyzed' is limited to 1k | 38 | * Number of 'branches to be analyzed' is limited to 1k |
39 | * | 39 | * |