View | Details | Raw Unified | Return to bug 263640
Collapse All | Expand All

(-)b/databases/mysql80-client/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: "Mahdi Mokhtari <mokhi64@gmail.com>"
1
# Created by: "Mahdi Mokhtari <mokhi64@gmail.com>"
2
2
3
PORTNAME=	mysql
3
PORTNAME=	mysql
4
PORTREVISION=	3
4
PORTREVISION=	0
5
PKGNAMESUFFIX=	80-client
5
PKGNAMESUFFIX=	80-client
6
6
7
COMMENT=	Multithreaded SQL database (client)
7
COMMENT=	Multithreaded SQL database (client)
(-)b/databases/mysql80-server/Makefile (-2 / +2 lines)
Lines 1-8 Link Here
1
# Created by: Mahdi Mokhtari <mokhi64@gmail.com>
1
# Created by: Mahdi Mokhtari <mokhi64@gmail.com>
2
2
3
PORTNAME?=		mysql
3
PORTNAME?=		mysql
4
PORTVERSION=		8.0.28
4
PORTVERSION=		8.0.29
5
PORTREVISION?=		4
5
PORTREVISION?=		0
6
CATEGORIES=		databases
6
CATEGORIES=		databases
7
MASTER_SITES=		MYSQL/MySQL-8.0
7
MASTER_SITES=		MYSQL/MySQL-8.0
8
PKGNAMESUFFIX?=		80-server
8
PKGNAMESUFFIX?=		80-server
(-)b/databases/mysql80-server/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1642804921
1
TIMESTAMP = 1651307604
2
SHA256 (mysql-boost-8.0.28.tar.gz) = 6dd0303998e70066d36905bd8fef1c01228ea182dbfbabc6c22ebacdbf8b5941
2
SHA256 (mysql-boost-8.0.29.tar.gz) = fd34a84c65fc7b15609d55b1f5d128c4d5543a6b95fa638569c3277c5c7bb048
3
SIZE (mysql-boost-8.0.28.tar.gz) = 298044027
3
SIZE (mysql-boost-8.0.29.tar.gz) = 327770349
(-)a/databases/mysql80-server/files/patch-storage_innobase_include_detail_ut_large__page__alloc-linux.h (-11 lines)
Removed Link Here
1
--- storage/innobase/include/detail/ut/large_page_alloc-linux.h.orig	2021-12-17 16:07:27 UTC
2
+++ storage/innobase/include/detail/ut/large_page_alloc-linux.h
3
@@ -52,7 +52,7 @@ inline void *large_page_aligned_alloc(size_t n_bytes) 
4
   // mmap will internally round n_bytes to the multiple of huge-page size if it
5
   // is not already
6
   void *ptr = mmap(nullptr, n_bytes, PROT_READ | PROT_WRITE,
7
-                   MAP_PRIVATE | MAP_ANON | MAP_HUGETLB, -1, 0);
8
+                   MAP_PRIVATE | MAP_ANON, -1, 0);
9
   if (unlikely(ptr == (void *)-1)) {
10
     ib::log_warn(ER_IB_MSG_856) << "large_page_aligned_alloc mmap(" << n_bytes
11
                                 << " bytes) failed;"

Return to bug 263640