mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 23:32:17 +00:00
26 lines
842 B
C
26 lines
842 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <inttypes.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <internal/lib.h> // page_size
|
|
#include "debug.h"
|
|
#include "symbol.h"
|
|
|
|
/* On powerpc kernel text segment start at memory addresses, 0xc000000000000000
|
|
* whereas the modules are located at very high memory addresses,
|
|
* for example 0xc00800000xxxxxxx. The gap between end of kernel text segment
|
|
* and beginning of first module's text segment is very high.
|
|
* Therefore do not fill this gap and do not assign it to the kernel dso map.
|
|
*/
|
|
|
|
void arch__symbols__fixup_end(struct symbol *p, struct symbol *c)
|
|
{
|
|
if (strchr(p->name, '[') == NULL && strchr(c->name, '['))
|
|
/* Limit the range of last kernel symbol */
|
|
p->end += page_size;
|
|
else
|
|
p->end = c->start;
|
|
pr_debug4("%s sym:%s end:%#" PRIx64 "\n", __func__, p->name, p->end);
|
|
}
|