Skip to content
Snippets Groups Projects
Commit 2022fa94 authored by Tommy Webb's avatar Tommy Webb Committed by Dhina17
Browse files

Firewall: More apps/uids again

Bumping again. See I293f99ec498e4ccac98c39f298ba01ba554f2e33.
Reasons are all the same. MEMLOCK_RLIMIT is not a concern anymore
because libbpf will automatically increase it if needed for kernels
not using cgroup accounting.

Issue: calyxos#1249
Change-Id: I0ce50383e210e936696d4294b63342e700081313
parent cfb5042c
No related branches found
No related tags found
No related merge requests found
...@@ -117,13 +117,13 @@ STRUCT_SIZE(PacketTrace, 8+4+4 + 4+4 + 2+2 + 1+1+1+1); ...@@ -117,13 +117,13 @@ STRUCT_SIZE(PacketTrace, 8+4+4 + 4+4 + 2+2 + 1+1+1+1);
// 'static' - otherwise these constants end up in .rodata in the resulting .o post compilation // 'static' - otherwise these constants end up in .rodata in the resulting .o post compilation
static const int COOKIE_UID_MAP_SIZE = 10000; static const int COOKIE_UID_MAP_SIZE = 10000;
static const int UID_COUNTERSET_MAP_SIZE = 4000; static const int UID_COUNTERSET_MAP_SIZE = 20000;
static const int APP_STATS_MAP_SIZE = 10000; static const int APP_STATS_MAP_SIZE = 10000;
static const int STATS_MAP_SIZE = 5000; static const int STATS_MAP_SIZE = 5000;
static const int IFACE_INDEX_NAME_MAP_SIZE = 1000; static const int IFACE_INDEX_NAME_MAP_SIZE = 1000;
static const int IFACE_STATS_MAP_SIZE = 1000; static const int IFACE_STATS_MAP_SIZE = 1000;
static const int CONFIGURATION_MAP_SIZE = 2; static const int CONFIGURATION_MAP_SIZE = 2;
static const int UID_OWNER_MAP_SIZE = 4000; static const int UID_OWNER_MAP_SIZE = 20000;
static const int INGRESS_DISCARD_MAP_SIZE = 100; static const int INGRESS_DISCARD_MAP_SIZE = 100;
static const int PACKET_TRACE_BUF_SIZE = 32 * 1024; static const int PACKET_TRACE_BUF_SIZE = 32 * 1024;
static const int DATA_SAVER_ENABLED_MAP_SIZE = 1; static const int DATA_SAVER_ENABLED_MAP_SIZE = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment