aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-dbs/rocksdb/files/mips.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-06-16 23:28:09 -0700
committerKhem Raj <raj.khem@gmail.com>2021-06-18 08:42:25 -0700
commit4f5b55896b9288e39870537700f2b0fff67a6531 (patch)
tree451b00cb0b9bce408a177492ccb1bbae74ea6a7e /meta-oe/recipes-dbs/rocksdb/files/mips.patch
parent3c1e72d62ccf2c2f94bf280a2500e23fdb01a57c (diff)
downloadmeta-openembedded-contrib-4f5b55896b9288e39870537700f2b0fff67a6531.tar.gz
rocksdb: Implement timer for mips
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-dbs/rocksdb/files/mips.patch')
-rw-r--r--meta-oe/recipes-dbs/rocksdb/files/mips.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-oe/recipes-dbs/rocksdb/files/mips.patch b/meta-oe/recipes-dbs/rocksdb/files/mips.patch
new file mode 100644
index 0000000000..db2305d296
--- /dev/null
+++ b/meta-oe/recipes-dbs/rocksdb/files/mips.patch
@@ -0,0 +1,19 @@
+implement timer implementation for mips platform
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+--- a/utilities/transactions/lock/range/range_tree/lib/portability/toku_time.h
++++ b/utilities/transactions/lock/range/range_tree/lib/portability/toku_time.h
+@@ -155,7 +155,12 @@ static inline tokutime_t toku_time_now(v
+ __asm __volatile__("rdcycle %0" : "=r"(result));
+ return result;
+ #endif
+-
++#elif defined(__mips__)
++ // mips apparently only allows rdtsc for superusers, so we fall
++ // back to gettimeofday. It's possible clock_gettime would be better.
++ struct timeval tv;
++ gettimeofday(&tv, nullptr);
++ return (uint64_t)tv.tv_sec * 1000000 + tv.tv_usec;
+ #else
+ #error No timer implementation for this platform
+ #endif