linux/include/linux/mmdebug.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_MM_DEBUG_H
#define LINUX_MM_DEBUG_H

#include <linux/bug.h>
#include <linux/stringify.h>

struct page;
struct vm_area_struct;
struct mm_struct;
struct vma_iterator;

void dump_page(const struct page *page, const char *reason);
void dump_vma(const struct vm_area_struct *vma);
void dump_mm(const struct mm_struct *mm);
void vma_iter_dump_tree(const struct vma_iterator *vmi);

#ifdef CONFIG_DEBUG_VM
#define VM_BUG_ON(cond)
#define VM_BUG_ON_PAGE(cond, page)
#define VM_BUG_ON_FOLIO(cond, folio)
#define VM_BUG_ON_VMA(cond, vma)
#define VM_BUG_ON_MM(cond, mm)
#define VM_WARN_ON_ONCE_PAGE(cond, page)
#define VM_WARN_ON_FOLIO(cond, folio)
#define VM_WARN_ON_ONCE_FOLIO(cond, folio)
#define VM_WARN_ON_ONCE_MM(cond, mm)

#define VM_WARN_ON(cond)
#define VM_WARN_ON_ONCE(cond)
#define VM_WARN_ONCE(cond, format...)
#define VM_WARN(cond, format...)
#else
#define VM_BUG_ON
#define VM_BUG_ON_PAGE
#define VM_BUG_ON_FOLIO
#define VM_BUG_ON_VMA
#define VM_BUG_ON_MM
#define VM_WARN_ON
#define VM_WARN_ON_ONCE
#define VM_WARN_ON_ONCE_PAGE
#define VM_WARN_ON_FOLIO
#define VM_WARN_ON_ONCE_FOLIO
#define VM_WARN_ON_ONCE_MM
#define VM_WARN_ONCE
#define VM_WARN
#endif

#ifdef CONFIG_DEBUG_VM_IRQSOFF
#define VM_WARN_ON_IRQS_ENABLED()
#else
#define VM_WARN_ON_IRQS_ENABLED
#endif

#ifdef CONFIG_DEBUG_VIRTUAL
#define VIRTUAL_BUG_ON(cond)
#else
#define VIRTUAL_BUG_ON
#endif

#ifdef CONFIG_DEBUG_VM_PGFLAGS
#define VM_BUG_ON_PGFLAGS(cond, page)
#else
#define VM_BUG_ON_PGFLAGS
#endif

#endif