Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9379fc9b authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm/memblock: add memblock_get_current_limit"

parents 78260513 36ba7ff2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -182,6 +182,8 @@ static inline void memblock_dump_all(void)
void memblock_set_current_limit(phys_addr_t limit);


phys_addr_t memblock_get_current_limit(void);

/*
 * pfn conversion functions
 *
+5 −0
Original line number Diff line number Diff line
@@ -988,6 +988,11 @@ void __init_memblock memblock_set_current_limit(phys_addr_t limit)
	memblock.current_limit = limit;
}

phys_addr_t __init_memblock memblock_get_current_limit(void)
{
	return memblock.current_limit;
}

static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
{
	unsigned long long base, size;