dpll: fix clock quality level reporting
authorIvan Vecera <ivecera@redhat.com>
Fri, 12 Sep 2025 09:33:31 +0000 (11:33 +0200)
committerJakub Kicinski <kuba@kernel.org>
Sun, 14 Sep 2025 20:03:40 +0000 (13:03 -0700)
commit70d99623d5c11e1a9bcc564b8fbad6fa916913d8
treeb3f26da51c0a51067f7653a7179caf3ac7274fa0
parent2e7bba08923ebc675b1f0e0e0959e68e53047838
dpll: fix clock quality level reporting

The DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EPRC is not reported via netlink
due to bug in dpll_msg_add_clock_quality_level(). The usage of
DPLL_CLOCK_QUALITY_LEVEL_MAX for both DECLARE_BITMAP() and
for_each_set_bit() is not correct because these macros requires bitmap
size and not the highest valid bit in the bitmap.

Use correct bitmap size to fix this issue.

Fixes: a1afb959add1 ("dpll: add clock quality level attribute and op")
Signed-off-by: Ivan Vecera <ivecera@redhat.com>
Reviewed-by: Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>
Link: https://patch.msgid.link/20250912093331.862333-1-ivecera@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/dpll/dpll_netlink.c