]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'bpf-dedup-fixes'
authorDaniel Borkmann <daniel@iogearbox.net>
Fri, 1 Mar 2019 00:31:48 +0000 (01:31 +0100)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 1 Mar 2019 00:31:49 +0000 (01:31 +0100)
commit51fc740d5fd631f0fbb423d24297fda658a3f087
tree4c448c63fd71c34c6eb9c606f13a6662ab07170b
parent99bb48dbc49281a7039d15d07ef3f3a9b6975e15
parent6d3d6a05b9285cbbdc4268eb78555b368e4ca6c4
Merge branch 'bpf-dedup-fixes'

Andrii Nakryiko says:

====================
This patchset fixes a bug in btf_dedup() algorithm, which under specific
hash collision causes infinite loop. It also exposes ability to tune BTF
deduplication table size, with double purpose of allowing applications to
adjust size according to the size of BTF data, as well as allowing a simple
way to force hash collisions by setting table size to 1.

- Patch #1 fixes bug in btf_dedup testing code that's checking strings
- Patch #2 fixes pointer arg formatting in btf.h
- Patch #3 adds option to specify custom dedup table size
- Patch #4 fixes aforementioned bug in btf_dedup
- Patch #5 adds test that validates the fix

v1->v2:
- remove "Fixes" from formatting change patch
- extract roundup_pow2_max func for dedup table size
- btf_equal_struct -> btf_shallow_equal_struct
- explain in comment why we can't rely on just btf_dedup_is_equiv
====================

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>