aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/quiche-arena-size.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/chromium/quiche-arena-size.patch')
-rw-r--r--community/chromium/quiche-arena-size.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/community/chromium/quiche-arena-size.patch b/community/chromium/quiche-arena-size.patch
deleted file mode 100644
index 1770502bef8..00000000000
--- a/community/chromium/quiche-arena-size.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- ./net/third_party/quiche/src/quic/core/quic_one_block_arena.h
-+++ ./net/third_party/quiche/src/quic/core/quic_one_block_arena.h
-@@ -69,7 +69,9 @@
-
- // QuicConnections currently use around 1KB of polymorphic types which would
- // ordinarily be on the heap. Instead, store them inline in an arena.
--using QuicConnectionArena = QuicOneBlockArena<1056>;
-+// On musl-based systems the QuicAlarm is larger than expected. Increase the
-+// allocated memory to prevent the arena run out of space. (!23366)
-+using QuicConnectionArena = QuicOneBlockArena<1408>;
-
- } // namespace quic
-