linux-headers/arch/e2k/include/asm/trace_pgtable-v3.h

36 lines
1.2 KiB
C

#if !defined(_TRACE_E2K_PGTABLE_V3_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_E2K_PGTABLE_V3_H
#include <asm/pgtable-v3.h>
#define E2K_TRACE_PRINT_PT_V3_FLAGS(entry, print) \
(print) ? (__print_flags(entry & (_PAGE_P_V3 | _PAGE_VALID_V3 | \
_PAGE_HUGE_V3 | _PAGE_G_V3 | \
_PAGE_NWA_V3 | _PAGE_AVAIL_V3 | \
_PAGE_INT_PR_V3), "|", \
{ _PAGE_P_V3, "present" }, \
{ _PAGE_VALID_V3, "valid" }, \
{ _PAGE_HUGE_V3, "large" }, \
{ _PAGE_G_V3, "global" }, \
{ _PAGE_NWA_V3, "not_write_address" }, \
{ _PAGE_AVAIL_V3, "OS" }, \
{ _PAGE_INT_PR_V3, "integer_protect" } \
)) : "(none)", \
(print) ? (__print_flags(entry & (_PAGE_PV_V3 | _PAGE_NON_EX_V3 | \
_PAGE_W_V3 | _PAGE_D_V3 | \
_PAGE_A_V3), "|", \
{ _PAGE_PV_V3, "privileged" }, \
{ _PAGE_NON_EX_V3, "non_executable" }, \
{ _PAGE_W_V3, "writable" }, \
{ _PAGE_D_V3, "dirty" }, \
{ _PAGE_A_V3, "accessed" } \
)) : "(none)", \
(print && entry != -1ULL && (entry & ~_PAGE_VALID_V3)) ? \
(((entry & _PAGE_CD_MASK_V3) != _PAGE_CD_MASK_V3) ? \
"|cacheable" \
: ((entry & _PAGE_PWT_V3) ? \
"|uncacheable" : "|write_combine")) \
: "" \
#endif /* _TRACE_E2K_PGTABLE_V3_H */