net: Add a neighbor cache needed in IPv6
This is the framework that neighbor discovery uses. The ND is coming in later commits. Change-Id: Iaaa67c80c0b6b8a3adb9217413b906e0a22d3920 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
fa15fe3de6
commit
3f64cefc25
5 changed files with 369 additions and 1 deletions
|
@ -172,3 +172,11 @@
|
|||
KEEP(*(SORT_BY_NAME(".net_if*")))
|
||||
__net_if_end = .;
|
||||
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
||||
|
||||
SECTION_DATA_PROLOGUE(net_nbr, (OPTIONAL),)
|
||||
{
|
||||
__net_nbr_start = .;
|
||||
*(".net_nbr.*")
|
||||
KEEP(*(SORT_BY_NAME(".net_nbr*")))
|
||||
__net_nbr_end = .;
|
||||
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue