mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-04-02 04:14:14 +00:00
Introduce a helper to dump information about a VMA, this also makes dump_page_flags more generic and re-uses that so the output looks very similar to dump_page: [ 61.903437] vma ffff88070f88be00 start 00007fff25970000 end 00007fff25992000 [ 61.903437] next ffff88070facd600 prev ffff88070face400 mm ffff88070fade000 [ 61.903437] prot 8000000000000025 anon_vma ffff88070fa1e200 vm_ops (null) [ 61.903437] pgoff 7ffffffdd file (null) private_data (null) [ 61.909129] flags: 0x100173(read|write|mayread|maywrite|mayexec|growsdown|account) [akpm@linux-foundation.org: make dump_vma() require CONFIG_DEBUG_VM] [swarren@nvidia.com: fix dump_vma() compilation] Signed-off-by: Sasha Levin <sasha.levin@oracle.com> Reviewed-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Konstantin Khlebnikov <khlebnikov@openvz.org> Cc: Rik van Riel <riel@redhat.com> Cc: Mel Gorman <mgorman@suse.de> Cc: Michal Hocko <mhocko@suse.cz> Cc: Hugh Dickins <hughd@google.com> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: Michel Lespinasse <walken@google.com> Cc: Minchan Kim <minchan@kernel.org> Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
#ifndef LINUX_MM_DEBUG_H
|
|
#define LINUX_MM_DEBUG_H 1
|
|
|
|
#include <linux/stringify.h>
|
|
|
|
struct page;
|
|
struct vm_area_struct;
|
|
|
|
extern void dump_page(struct page *page, const char *reason);
|
|
extern void dump_page_badflags(struct page *page, const char *reason,
|
|
unsigned long badflags);
|
|
void dump_vma(const struct vm_area_struct *vma);
|
|
|
|
#ifdef CONFIG_DEBUG_VM
|
|
#define VM_BUG_ON(cond) BUG_ON(cond)
|
|
#define VM_BUG_ON_PAGE(cond, page) \
|
|
do { \
|
|
if (unlikely(cond)) { \
|
|
dump_page(page, "VM_BUG_ON_PAGE(" __stringify(cond)")");\
|
|
BUG(); \
|
|
} \
|
|
} while (0)
|
|
#define VM_WARN_ON(cond) WARN_ON(cond)
|
|
#define VM_WARN_ON_ONCE(cond) WARN_ON_ONCE(cond)
|
|
#define VM_WARN_ONCE(cond, format...) WARN_ONCE(cond, format)
|
|
#else
|
|
#define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond)
|
|
#define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond)
|
|
#define VM_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond)
|
|
#define VM_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond)
|
|
#define VM_WARN_ONCE(cond, format...) BUILD_BUG_ON_INVALID(cond)
|
|
#endif
|
|
|
|
#ifdef CONFIG_DEBUG_VIRTUAL
|
|
#define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
|
|
#else
|
|
#define VIRTUAL_BUG_ON(cond) do { } while (0)
|
|
#endif
|
|
|
|
#endif
|