Searched hist:b4c80629 (Results 1 - 1 of 1) sorted by relevance

/linux-master/include/linux/byteorder/
H A Dgeneric.hdiff b4c80629 Sun May 23 14:49:57 MDT 2021 Heinrich Schuchardt <xypron.glpk@gmx.de> include/linux/byteorder/generic.h: fix index variables

In cpu_to_be32_array() and be32_to_cpu_array() the length of the array is
given by variable len of type size_t. An index variable of type int is used
to iterate over the array. This is bound to fail for len > INT_MAX and
lets GCC add instructions for sign extension.

Correct the type of the index variable.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Link: https://lore.kernel.org/r/20210523204958.64575-1-xypron.glpk@gmx.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Completed in 206 milliseconds