]> git.proxmox.com Git - mirror_spl-debian.git/commit
Add __divdi3(), remove __udivdi3() kernel dependency
authorBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 12 Jul 2010 19:38:34 +0000 (12:38 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 13 Jul 2010 23:44:02 +0000 (16:44 -0700)
commita4bfd8ea1b58d8797ec91b18982de243675e63bc
tree7506e0415944aa3c689610753900cbe0d143cf53
parentd466208f1e76c80fe14751739273b1932c4329f3
Add __divdi3(), remove __udivdi3() kernel dependency

Up until now no SPL consumer attempted to perform signed 64-bit
division so there was no need to support this.  That has now
changed so I adding 64-bit division support for 32-bit platforms.
The signed implementation is based on the unsigned version.

Since the have been several bug reports in the past concerning
correct 64-bit division on 32-bit platforms I added some long
over due regression tests.  Much to my surprise the unsigned
64-bit division regression tests failed.

This was surprising because __udivdi3() was implemented by simply
calling div64_u64() which is provided by the kernel.  This meant
that the linux kernels 64-bit division algorithm on 32-bit platforms
was flawed.  After some investigation this turned out to be exactly
the case.

Because of this I was forced to abandon the kernel helper and
instead to fully implement 64-bit division in the spl.  There are
several published implementation out there on how to do this
properly and I settled on one proposed in the book Hacker's Delight.
Their proposed algoritm is freely available without restriction
and I have just modified it to be linux kernel friendly.

The update implementation now passed all the unsigned and signed
regression tests.  This should be functional, but not fast, which is
good enough for out purposes.  If you want fast too I'd strongly
suggest you upgrade to a 64-bit platform.  I have also reported the
kernel bug and we'll see if we can't get it fixed up stream.
config/spl-build.m4
configure
include/linux/math64_compat.h [new file with mode: 0644]
include/sys/types.h
module/spl/spl-generic.c
module/splat/splat-generic.c
spl_config.h.in