Blame SOURCES/libdb-5.3.21-trickle_cpu.patch

3538c6
diff -up db-5.3.21/src/dbinc_auto/int_def.in.trickle db-5.3.21/src/dbinc_auto/int_def.in
3538c6
--- db-5.3.21/src/dbinc_auto/int_def.in.trickle	2018-08-21 10:54:06.066757392 +0200
3538c6
+++ db-5.3.21/src/dbinc_auto/int_def.in	2018-08-21 10:54:06.111756561 +0200
3538c6
@@ -1458,6 +1458,7 @@
3538c6
 #define	__memp_sync_int __memp_sync_int@DB_VERSION_UNIQUE_NAME@
3538c6
 #define	__memp_mf_sync __memp_mf_sync@DB_VERSION_UNIQUE_NAME@
3538c6
 #define	__memp_purge_dead_files __memp_purge_dead_files@DB_VERSION_UNIQUE_NAME@
3538c6
+#define	__memp_purge_dead_and_count __memp_purge_dead_and_count@DB_VERSION_UNIQUE_NAME@
3538c6
 #define	__memp_trickle_pp __memp_trickle_pp@DB_VERSION_UNIQUE_NAME@
3538c6
 #define	__mutex_alloc __mutex_alloc@DB_VERSION_UNIQUE_NAME@
3538c6
 #define	__mutex_alloc_int __mutex_alloc_int@DB_VERSION_UNIQUE_NAME@
3538c6
diff -up db-5.3.21/src/dbinc_auto/mp_ext.h.trickle db-5.3.21/src/dbinc_auto/mp_ext.h
3538c6
--- db-5.3.21/src/dbinc_auto/mp_ext.h.trickle	2018-08-21 10:54:06.103756709 +0200
3538c6
+++ db-5.3.21/src/dbinc_auto/mp_ext.h	2018-08-21 10:54:06.112756543 +0200
3538c6
@@ -101,6 +101,7 @@ int __mp_xxx_fh __P((DB_MPOOLFILE *, DB_
3538c6
 int __memp_sync_int __P((ENV *, DB_MPOOLFILE *, u_int32_t, u_int32_t, u_int32_t *, int *));
3538c6
 int __memp_mf_sync __P((DB_MPOOL *, MPOOLFILE *, int));
3538c6
 int __memp_purge_dead_files __P((ENV *));
3538c6
+int __memp_purge_dead_and_count __P((ENV *, u_int32_t *, u_int32_t *));
3538c6
 int __memp_trickle_pp __P((DB_ENV *, int, int *));
3538c6
 
3538c6
 #if defined(__cplusplus)
3538c6
diff -up db-5.3.21/src/mp/mp_sync.c.trickle db-5.3.21/src/mp/mp_sync.c
3538c6
--- db-5.3.21/src/mp/mp_sync.c.trickle	2018-08-21 10:54:06.105756672 +0200
3538c6
+++ db-5.3.21/src/mp/mp_sync.c	2018-09-04 09:43:57.502992291 +0200
3538c6
@@ -965,17 +965,34 @@ __bhcmp(p1, p2)
3538c6
 	return (0);
3538c6
 }
3538c6
 
3538c6
+
3538c6
 /*
3538c6
  * __memp_purge_dead_files --
3538c6
+ *  Thin wrapper over __memp_purge_dead_and_count. Does not return any
3538c6
+ *  information about the number of total/dirty buffers.
3538c6
+ *
3538c6
+ * PUBLIC: int __memp_purge_dead_files __P((ENV *));
3538c6
+ */
3538c6
+int
3538c6
+__memp_purge_dead_files(env)
3538c6
+    ENV *env;
3538c6
+{
3538c6
+    return __memp_purge_dead_and_count(env, NULL, NULL);
3538c6
+}
3538c6
+
3538c6
+/*
3538c6
+ * __memp_purge_dead_and_count --
3538c6
  *	Remove all dead files and their buffers from the mpool. The caller
3538c6
  *	cannot hold any lock on the dead MPOOLFILE handles, their buffers
3538c6
  *	or their hash buckets.
3538c6
  *
3538c6
- * PUBLIC: int __memp_purge_dead_files __P((ENV *));
3538c6
+ * PUBLIC: int __memp_purge_dead_and_count __P((ENV *, u_int32_t *, u_int32_t *));
3538c6
  */
3538c6
 int
3538c6
-__memp_purge_dead_files(env)
3538c6
+__memp_purge_dead_and_count(env, totalp, dirtyp)
3538c6
 	ENV *env;
3538c6
+    u_int32_t *totalp;
3538c6
+    u_int32_t *dirtyp;
3538c6
 {
3538c6
 	BH *bhp;
3538c6
 	DB_MPOOL *dbmp;
3538c6
@@ -983,7 +1000,7 @@ __memp_purge_dead_files(env)
3538c6
 	REGINFO *infop;
3538c6
 	MPOOL *c_mp, *mp;
3538c6
 	MPOOLFILE *mfp;
3538c6
-	u_int32_t i_cache;
3538c6
+	u_int32_t i_cache, dirty, total;
3538c6
 	int ret, t_ret, h_lock;
3538c6
 
3538c6
 	if (!MPOOL_ON(env))
3538c6
@@ -992,6 +1009,7 @@ __memp_purge_dead_files(env)
3538c6
 	dbmp = env->mp_handle;
3538c6
 	mp = dbmp->reginfo[0].primary;
3538c6
 	ret = t_ret = h_lock = 0;
3538c6
+    dirty = total = 0;
3538c6
 
3538c6
 	/*
3538c6
 	 * Walk each cache's list of buffers and free all buffers whose
3538c6
@@ -1000,6 +1018,7 @@ __memp_purge_dead_files(env)
3538c6
 	for (i_cache = 0; i_cache < mp->nreg; i_cache++) {
3538c6
 		infop = &dbmp->reginfo[i_cache]; 
3538c6
 		c_mp = infop->primary;
3538c6
+        total += c_mp->pages;
3538c6
 
3538c6
 		hp = R_ADDR(infop, c_mp->htab);
3538c6
 		hp_end = &hp[c_mp->htab_buckets];
3538c6
@@ -1008,6 +1027,9 @@ __memp_purge_dead_files(env)
3538c6
 			if (SH_TAILQ_FIRST(&hp->hash_bucket, __bh) == NULL)
3538c6
 				continue;
3538c6
 
3538c6
+            /* Count dirty pages first as we do not wait on mutex locks */
3538c6
+            dirty += (u_int32_t)atomic_read(&hp->hash_page_dirty);
3538c6
+
3538c6
 			/* 
3538c6
 			 * Search for a dead buffer. Other places that call
3538c6
 			 * __memp_bhfree() acquire the buffer lock before the
3538c6
@@ -1073,6 +1095,11 @@ __memp_purge_dead_files(env)
3538c6
 		}
3538c6
 	}
3538c6
 
3538c6
+    if (dirtyp != NULL)
3538c6
+		*dirtyp = dirty;
3538c6
+    if (totalp != NULL)
3538c6
+		*totalp = total;
3538c6
+
3538c6
 	return (ret);
3538c6
 }
3538c6
 
3538c6
diff -up db-5.3.21/src/mp/mp_trickle.c.trickle db-5.3.21/src/mp/mp_trickle.c
3538c6
--- db-5.3.21/src/mp/mp_trickle.c.trickle	2018-08-21 10:54:06.105756672 +0200
3538c6
+++ db-5.3.21/src/mp/mp_trickle.c	2018-08-21 10:54:06.112756543 +0200
3538c6
@@ -56,6 +56,7 @@ __memp_trickle(env, pct, nwrotep)
3538c6
 
3538c6
 	dbmp = env->mp_handle;
3538c6
 	mp = dbmp->reginfo[0].primary;
3538c6
+    dirty = total = 0;
3538c6
 
3538c6
 	if (nwrotep != NULL)
3538c6
 		*nwrotep = 0;
3538c6
@@ -67,12 +68,8 @@ __memp_trickle(env, pct, nwrotep)
3538c6
 		return (EINVAL);
3538c6
 	}
3538c6
 
3538c6
-	/* First we purge all dead files and their buffers. */
3538c6
-	if ((ret = __memp_purge_dead_files(env)) != 0)
3538c6
-		return (ret);
3538c6
-
3538c6
-	/*
3538c6
-	 * Loop through the caches counting total/dirty buffers.
3538c6
+	/* First we purge all dead files and their buffers and
3538c6
+	 * loop through the caches counting total/dirty buffers.
3538c6
 	 *
3538c6
 	 * XXX
3538c6
 	 * Using hash_page_dirty is our only choice at the moment, but it's not
3538c6
@@ -80,12 +77,8 @@ __memp_trickle(env, pct, nwrotep)
3538c6
 	 * than one page size, as a free 512B buffer may not be equivalent to
3538c6
 	 * having a free 8KB buffer.
3538c6
 	 */
3538c6
-	for (ret = 0, i = dirty = total = 0; i < mp->nreg; ++i) {
3538c6
-		c_mp = dbmp->reginfo[i].primary;
3538c6
-		total += c_mp->pages;
3538c6
-		__memp_stat_hash(&dbmp->reginfo[i], c_mp, &dtmp);
3538c6
-		dirty += dtmp;
3538c6
-	}
3538c6
+	if ((ret = __memp_purge_dead_and_count(env, &total, &dirty)) != 0)
3538c6
+		return (ret);
3538c6
 
3538c6
 	/*
3538c6
 	 * If there are sufficient clean buffers, no buffers or no dirty