diff options
author | Yu Kuai <yukuai3@huawei.com> | 2021-06-05 18:18:35 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-07 12:28:40 -0700 |
commit | 996bccc39afba3db1309b8cd845f1f463516050e (patch) | |
tree | 60bca26a18bcca6392c9abab320336751be69267 /net/sched | |
parent | 274e5d0e55aa37f2bcee42f618b1923cab0ceabf (diff) |
sch_htb: fix doc warning in htb_add_class_to_row()
Add description for parameters of htb_add_class_to_row() to fix
gcc W=1 warnings:
net/sched/sch_htb.c:351: warning: Function parameter or member 'q' not described in 'htb_add_class_to_row'
net/sched/sch_htb.c:351: warning: Function parameter or member 'cl' not described in 'htb_add_class_to_row'
net/sched/sch_htb.c:351: warning: Function parameter or member 'mask' not described in 'htb_add_class_to_row'
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_htb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index 5ad28df6b18c..97a9df42849e 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c @@ -349,6 +349,9 @@ static inline void htb_next_rb_node(struct rb_node **n) /** * htb_add_class_to_row - add class to its row + * @q: the priority event queue + * @cl: the class to add + * @mask: the given priorities in class in bitmap * * The class is added to row at priorities marked in mask. * It does nothing if mask == 0. |