-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce outbound routing to 4k and mapping to 8k by default
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef _DASH_DEFINES_H_ | ||
#define _DASH_DEFINES_H_ | ||
|
||
#ifdef TABLE_FULL_SCALE | ||
#define TABLE_CA_TO_PA_SIZE (8 * 1024 * 1024) | ||
#define TABLE_ROUTING_SIZE (4 * 1024 * 1024) | ||
|
||
#else /* default size */ | ||
#define TABLE_CA_TO_PA_SIZE (8 * 1024) | ||
#define TABLE_ROUTING_SIZE (4 * 1024) | ||
|
||
#endif | ||
|
||
|
||
#endif /* _DASH_DEFINES_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters