mirror of
https://github.com/torvalds/linux.git
synced 2024-12-05 10:32:35 +00:00
bpf: Fix bpf_prog_pack build HPAGE_PMD_SIZE
Fix build with CONFIG_TRANSPARENT_HUGEPAGE=n with BPF_PROG_PACK_SIZE as
PAGE_SIZE.
Fixes: 57631054fa
("bpf: Introduce bpf_prog_pack allocator")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Song Liu <song@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20220208220509.4180389-3-song@kernel.org
This commit is contained in:
parent
0f350231b5
commit
c1b13a9451
@ -814,7 +814,11 @@ int bpf_jit_add_poke_descriptor(struct bpf_prog *prog,
|
||||
* allocator. The prog_pack allocator uses HPAGE_PMD_SIZE page (2MB on x86)
|
||||
* to host BPF programs.
|
||||
*/
|
||||
#ifdef CONFIG_TRANSPARENT_HUGEPAGE
|
||||
#define BPF_PROG_PACK_SIZE HPAGE_PMD_SIZE
|
||||
#else
|
||||
#define BPF_PROG_PACK_SIZE PAGE_SIZE
|
||||
#endif
|
||||
#define BPF_PROG_CHUNK_SHIFT 6
|
||||
#define BPF_PROG_CHUNK_SIZE (1 << BPF_PROG_CHUNK_SHIFT)
|
||||
#define BPF_PROG_CHUNK_MASK (~(BPF_PROG_CHUNK_SIZE - 1))
|
||||
@ -826,7 +830,7 @@ struct bpf_prog_pack {
|
||||
unsigned long bitmap[BITS_TO_LONGS(BPF_PROG_CHUNK_COUNT)];
|
||||
};
|
||||
|
||||
#define BPF_PROG_MAX_PACK_PROG_SIZE HPAGE_PMD_SIZE
|
||||
#define BPF_PROG_MAX_PACK_PROG_SIZE BPF_PROG_PACK_SIZE
|
||||
#define BPF_PROG_SIZE_TO_NBITS(size) (round_up(size, BPF_PROG_CHUNK_SIZE) / BPF_PROG_CHUNK_SIZE)
|
||||
|
||||
static DEFINE_MUTEX(pack_mutex);
|
||||
|
Loading…
Reference in New Issue
Block a user