#include #include #include #include /* Lowest common multiple */ unsigned long lcm(unsigned long a, unsigned long b) { if (a && b) return (a / gcd(a, b)) * b; else return 0; } EXPORT_SYMBOL_GPL(lcm); unsigned long lcm_not_zero(unsigned long a, unsigned long b) { unsigned long l = lcm(a, b); if (l) return l; return (b ? : a); } EXPORT_SYMBOL_GPL(lcm_not_zero); rel='vcs-git' href='http:///git.distanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/net/xfrm
AgeCommit message (Expand)AuthorFilesLines
2017-02-07net: add confirm_neigh method to dst_opsJulian Anastasov1-0/+19