Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-tcp_bbr: v3: use correct 64-bit division
This commit addresses an issue with integer division on 32-bit system builds, which resulted in undefined symbol errors during the build process. Errors observed: arm: ERROR: modpost: "__aeabi_uldivmod" [net/ipv4/tcp_bbr.ko] undefined! ERROR: modpost: "__aeabi_ldivmod" [net/ipv4/tcp_bbr.ko] undefined! x86, mips, ppc: ERROR: modpost: "__udivdi3" [net/ipv4/tcp_bbr.ko] undefined! ERROR: modpost: "__divdi3" [net/ipv4/tcp_bbr.ko] undefined! The fix ensures proper 64-bit division on affected architectures. Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
- Loading branch information