diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2023-07-14 07:51:26 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-07-15 06:39:30 +0300 |
commit | d1cca974548d76e0fa8b6761d25f7b47376a3780 (patch) | |
tree | 480057f510dadc83f9b1f7a33151af650c1d160b /include/net/pie.h | |
parent | d1533d726aa1efca3a7ae8f40c94ccb149d22e6a (diff) | |
download | linux-d1cca974548d76e0fa8b6761d25f7b47376a3780.tar.xz |
pie: fix kernel-doc notation warning
Spell a struct member's name correctly to prevent a kernel-doc
warning.
pie.h:38: warning: Function parameter or member 'tupdate' not described in 'pie_params'
Fixes: b42a3d7c7cff ("pie: improve comments and commenting style")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Leslie Monis <lesliemonis@gmail.com>
Cc: "Mohit P. Tahiliani" <tahiliani@nitk.edu.in>
Cc: Gautam Ramakrishnan <gautamramk@gmail.com>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Cong Wang <xiyou.wangcong@gmail.com>
Cc: Jiri Pirko <jiri@resnulli.us>
Link: https://lore.kernel.org/r/20230714045127.18752-9-rdunlap@infradead.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/net/pie.h')
-rw-r--r-- | include/net/pie.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/pie.h b/include/net/pie.h index 3fe2361e03b4..01cbc66825a4 100644 --- a/include/net/pie.h +++ b/include/net/pie.h @@ -17,7 +17,7 @@ /** * struct pie_params - contains pie parameters * @target: target delay in pschedtime - * @tudpate: interval at which drop probability is calculated + * @tupdate: interval at which drop probability is calculated * @limit: total number of packets that can be in the queue * @alpha: parameter to control drop probability * @beta: parameter to control drop probability |