On 04/04/2016 10:30 PM, Emilio G. Cota wrote:
+struct qht_map {
+    struct qht_bucket *buckets;
+    uint64_t n;
+    uint64_t n_items;
+    uint64_t n_items_threshold;
+    struct rcu_head rcu;
+};

There's no point in using 64-bit data for a 32-bit host.
You should be using e.g. size_t for the counts.


r~

Reply via email to