Rasmus Villemoes | 6016dae | 2015-02-12 15:03:21 -0800 | [diff] [blame] | 1 | #include <linux/compiler.h> |
Martin K. Petersen | 2cda272 | 2010-03-15 12:46:51 +0100 | [diff] [blame] | 2 | #include <linux/gcd.h> |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 3 | #include <linux/export.h> |
H Hartley Sweeten | 72d3950 | 2011-07-25 17:13:20 -0700 | [diff] [blame] | 4 | #include <linux/lcm.h> |
Martin K. Petersen | 2cda272 | 2010-03-15 12:46:51 +0100 | [diff] [blame] | 5 | |
| 6 | /* Lowest common multiple */ |
| 7 | unsigned long lcm(unsigned long a, unsigned long b) |
| 8 | { |
| 9 | if (a && b) |
Rasmus Villemoes | 74a5fef | 2014-12-10 15:51:27 -0800 | [diff] [blame] | 10 | return (a / gcd(a, b)) * b; |
Rasmus Villemoes | 69c953c | 2014-12-10 15:51:29 -0800 | [diff] [blame] | 11 | else |
| 12 | return 0; |
Martin K. Petersen | 2cda272 | 2010-03-15 12:46:51 +0100 | [diff] [blame] | 13 | } |
| 14 | EXPORT_SYMBOL_GPL(lcm); |
Mike Snitzer | e963741 | 2015-03-30 13:39:09 -0400 | [diff] [blame] | 15 | |
| 16 | unsigned long lcm_not_zero(unsigned long a, unsigned long b) |
| 17 | { |
| 18 | unsigned long l = lcm(a, b); |
| 19 | |
| 20 | if (l) |
| 21 | return l; |
| 22 | |
| 23 | return (b ? : a); |
| 24 | } |
| 25 | EXPORT_SYMBOL_GPL(lcm_not_zero); |