- Hoshino Lina: Update to cef-143.0.9+ge88e818 (rhbz#2420939) - * High CVE-2025-13630: Type Confusion in V8 - * High CVE-2025-13631: Inappropriate implementation in Google Updater - * High CVE-2025-13632: Inappropriate implementation in DevTools - * High CVE-2025-13633: Use after free in Digital Credentials - * Medium CVE-2025-13634: Inappropriate implementation in Downloads - * Medium CVE-2025-13720: Bad cast in Loader - * Medium CVE-2025-13721: Race in v8 - * Low CVE-2025-13635: Inappropriate implementation in Downloads - * Low CVE-2025-13636: Inappropriate implementation in Split View - * Low CVE-2025-13637: Inappropriate implementation in Downloads - * Low CVE-2025-13638: Use after free in Media Stream - * Low CVE-2025-13639: Inappropriate implementation in WebRTC - * Low CVE-2025-13640: Inappropriate implementation in Passwords - Drop workaround darkmode-image-policy.patch - Fix build error due to Unresolved dependencies - Fix swiftshader to compile with llvm-16.0 - Refresh python-3.9-ftbfs patch for el9 - Refresh ppc64le patches - Refresh chromium.conf
26 lines
1.6 KiB
Diff
26 lines
1.6 KiB
Diff
Index: chromium-143.0.7499.40/base/allocator/dispatcher/tls.h
|
|
===================================================================
|
|
--- chromium-143.0.7499.40.orig/base/allocator/dispatcher/tls.h
|
|
+++ chromium-143.0.7499.40/base/allocator/dispatcher/tls.h
|
|
@@ -88,6 +88,8 @@ struct BASE_EXPORT MMapAllocator {
|
|
constexpr static size_t AllocationChunkSize = 16384;
|
|
#elif BUILDFLAG(IS_LINUX) && defined(ARCH_CPU_ARM64)
|
|
constexpr static size_t AllocationChunkSize = 16384;
|
|
+#elif BUILDFLAG(IS_LINUX) && defined(ARCH_CPU_PPC64)
|
|
+ constexpr static size_t AllocationChunkSize = 16384;
|
|
#else
|
|
constexpr static size_t AllocationChunkSize = 4096;
|
|
#endif
|
|
Index: chromium-143.0.7499.40/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_constants.h
|
|
===================================================================
|
|
--- chromium-143.0.7499.40.orig/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_constants.h
|
|
+++ chromium-143.0.7499.40/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_constants.h
|
|
@@ -399,7 +399,7 @@ PA_ALWAYS_INLINE constexpr size_t MaxDir
|
|
// TODO(casey.smalley@arm.com): under 64k pages we can end up in a situation
|
|
// where a normal slot span will be large enough to contain multiple items,
|
|
// but the address will go over the final partition page after being aligned.
|
|
-#if PA_BUILDFLAG(IS_LINUX) && PA_BUILDFLAG(PA_ARCH_CPU_ARM64)
|
|
+#if PA_BUILDFLAG(IS_LINUX) && (PA_BUILDFLAG(PA_ARCH_CPU_ARM64) || PA_BUILDFLAG(PA_ARCH_CPU_PPC64))
|
|
constexpr size_t kMaxSupportedAlignment = kSuperPageSize / 4;
|
|
#else
|
|
constexpr size_t kMaxSupportedAlignment = kSuperPageSize / 2;
|