mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
2cda2728aa
lcm() was defined to take integer-sized arguments. The supplied arguments are multiplied, however, causing us to overflow given sufficiently large input. That in turn led to incorrect optimal I/O size reporting in some cases (RAID over RAID). Switch lcm() over to unsigned long similar to gcd() and move the function from blk-settings.c to lib. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
8 lines
154 B
C
8 lines
154 B
C
#ifndef _LCM_H
|
|
#define _LCM_H
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__;
|
|
|
|
#endif /* _LCM_H */
|