rpmsg: use struct_size over open coded arithmetic
authorMinghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Wed, 16 Feb 2022 03:07:20 +0000 (03:07 +0000)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Fri, 11 Mar 2022 20:24:55 +0000 (14:24 -0600)
commit18fc82d6e899be54fcf43b28e588e28f09c8810f
treee6f4a7766c2b5754d8e726903075289b02c3c4a5
parenta8f8cc6b39b7ee0dbaccbebd1268c9d3458ebf13
rpmsg: use struct_size over open coded arithmetic

Replace zero-length array with flexible-array member and make use
of the struct_size() helper in kzalloc(). For example:

struct glink_defer_cmd {
struct list_head node;

struct glink_msg msg;
u8 data[];
};

Make use of the struct_size() helper instead of an open-coded version
in order to avoid any potential type mistakes.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220216030720.1839503-1-chi.minghao@zte.com.cn
drivers/rpmsg/qcom_glink_native.c