From: Tommi Rantala Date: Sat, 18 Dec 2021 16:08:07 +0000 (+0200) Subject: docs: Fix BPF_HISTGRAM typo in reference guide X-Git-Tag: v0.24.0~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d166dda884713ba6879b0b0491e2feaa80d6bd61;p=platform%2Fupstream%2Fbcc.git docs: Fix BPF_HISTGRAM typo in reference guide Fix typo in reference guide, should be BPF_HISTOGRAM. --- diff --git a/docs/reference_guide.md b/docs/reference_guide.md index ad20cfc8..bc5c2d3e 100644 --- a/docs/reference_guide.md +++ b/docs/reference_guide.md @@ -869,7 +869,7 @@ Maps are BPF data stores, and are the basis for higher level object types includ Syntax: ```BPF_TABLE(_table_type, _key_type, _leaf_type, _name, _max_entries)``` -Creates a map named ```_name```. Most of the time this will be used via higher-level macros, like BPF_HASH, BPF_ARRAY, BPF_HISTGRAM, etc. +Creates a map named ```_name```. Most of the time this will be used via higher-level macros, like BPF_HASH, BPF_ARRAY, BPF_HISTOGRAM, etc. `BPF_F_TABLE` is a variant that takes a flag in the last parameter. `BPF_TABLE(...)` is actually a wrapper to `BPF_F_TABLE(..., 0 /* flag */)`.