aboutsummaryrefslogtreecommitdiffstats
path: root/spl_config.h.in
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2010-07-12 12:38:34 -0700
committerBrian Behlendorf <[email protected]>2010-07-13 16:44:02 -0700
commita4bfd8ea1b58d8797ec91b18982de243675e63bc (patch)
tree7506e0415944aa3c689610753900cbe0d143cf53 /spl_config.h.in
parentd466208f1e76c80fe14751739273b1932c4329f3 (diff)
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.
Diffstat (limited to 'spl_config.h.in')
-rw-r--r--spl_config.h.in6
1 files changed, 0 insertions, 6 deletions
diff --git a/spl_config.h.in b/spl_config.h.in
index 48b610b32..5ed1991f9 100644
--- a/spl_config.h.in
+++ b/spl_config.h.in
@@ -57,12 +57,6 @@
/* device_create() is available */
#undef HAVE_DEVICE_CREATE
-/* div64_64() is available */
-#undef HAVE_DIV64_64
-
-/* div64_u64() is available */
-#undef HAVE_DIV64_U64
-
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H