Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
The following patch is suggested by Stewart Smith:
Define CACHE_LINE_SIZE in ut0counter.h to 128 on POWER
|
|
Index: mysql-5.6.17/storage/innobase/include/ut0counter.h
|
===================================================================
|
--- mysql-5.6.17.orig/storage/innobase/include/ut0counter.h
|
+++ mysql-5.6.17/storage/innobase/include/ut0counter.h
|
@@ -32,7 +32,11 @@ Created 2012/04/12 by Sunny Bains
|
#include "os0thread.h"
|
|
/** CPU cache line size */
|
+#ifdef __powerpc__
|
+#define CACHE_LINE_SIZE 128
|
+#else
|
#define CACHE_LINE_SIZE 64
|
+#endif
|
|
/** Default number of slots to use in ib_counter_t */
|
#define IB_N_SLOTS 64
|
Attachments
Issue Links
Activity
Remote Link | This issue links to "MySQL BUG#72718 (Web Link)" [ 18804 ] |
Description |
{noformat} Define CACHE_LINE_SIZE in ut0counter.h to 128 on POWER Index: mysql-5.6.17/storage/innobase/include/ut0counter.h =================================================================== --- mysql-5.6.17.orig/storage/innobase/include/ut0counter.h +++ mysql-5.6.17/storage/innobase/include/ut0counter.h @@ -32,7 +32,11 @@ Created 2012/04/12 by Sunny Bains #include "os0thread.h" /** CPU cache line size */ +#ifdef __powerpc__ +#define CACHE_LINE_SIZE 128 +#else #define CACHE_LINE_SIZE 64 +#endif /** Default number of slots to use in ib_counter_t */ #define IB_N_SLOTS 64 {noformat} |
The following patch is suggested by Stewart Smith: {noformat} Define CACHE_LINE_SIZE in ut0counter.h to 128 on POWER Index: mysql-5.6.17/storage/innobase/include/ut0counter.h =================================================================== --- mysql-5.6.17.orig/storage/innobase/include/ut0counter.h +++ mysql-5.6.17/storage/innobase/include/ut0counter.h @@ -32,7 +32,11 @@ Created 2012/04/12 by Sunny Bains #include "os0thread.h" /** CPU cache line size */ +#ifdef __powerpc__ +#define CACHE_LINE_SIZE 128 +#else #define CACHE_LINE_SIZE 64 +#endif /** Default number of slots to use in ib_counter_t */ #define IB_N_SLOTS 64 {noformat} |
Status | Open [ 1 ] | In Review [ 10002 ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Fix Version/s | N/A [ 14700 ] | |
Fix Version/s | 10.0 [ 16000 ] | |
Resolution | Cannot Reproduce [ 5 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Assignee | Michael Widenius [ monty ] | Sergey Vojtovich [ svoj ] |
Resolution | Cannot Reproduce [ 5 ] | |
Status | Closed [ 6 ] | Stalled [ 10000 ] |
Component/s | Storage Engine - InnoDB [ 10129 ] | |
Component/s | Storage Engine - XtraDB [ 10135 ] | |
Fix Version/s | 10.0.15 [ 17300 ] | |
Fix Version/s | N/A [ 14700 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Workflow | MariaDB v2 [ 52105 ] | MariaDB v3 [ 64939 ] |
Workflow | MariaDB v3 [ 64939 ] | MariaDB v4 [ 132383 ] |
We need to double check proper way of determining CPU cache line size. Plus XtraDB had one more source file with CACHE_LINE_SIZE definition/