mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
f122912928
PD#SWPL-99264 Problem: print the catual mlock size via page fault. Solution: cat /proc/mem_debug Verify: s4_aq222. Change-Id: I2ed3b97d12cab6cfd8c72a86cd0249e3a2462e99 Signed-off-by: Jianxiong Pan <jianxiong.pan@amlogic.com>
14 lines
278 B
C
14 lines
278 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __MEM_DEBUG_H
|
|
#define __MEM_DEBUG_H
|
|
|
|
void dump_mem_layout(char *buf);
|
|
void dump_mem_layout_boot_phase(void);
|
|
|
|
extern unsigned long mlock_fault_size;
|
|
#endif
|