Skip to content

Commit

Permalink
Increase the number of bridge table entries to 256k
Browse files Browse the repository at this point in the history
The number of bridge table entries currently is capped at 64k. The
requirement in the TSN is to have 64k actual mac entries, which for
our internal implementation might need about 256k (roughly).

Closes BUG: #1424530

Change-Id: Ie32b69f9b89542e629f48329322f3af9d617fab3
  • Loading branch information
anandhk-juniper committed Feb 23, 2015
1 parent 83177a5 commit 59d690b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dp-core/vr_bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ struct vr_bridge_entry {
unsigned char be_pack[VR_BRIDGE_ENTRY_PACK];
} __attribute__((packed));

#define VR_DEF_BRIDGE_ENTRIES (64 * 1024)
#define VR_DEF_BRIDGE_ENTRIES (256 * 1024)
#define VR_DEF_BRIDGE_OENTRIES (4 * 1024)

unsigned int vr_bridge_entries = VR_DEF_BRIDGE_ENTRIES;
Expand Down

0 comments on commit 59d690b

Please sign in to comment.