JustOS/linux-6.13/arch/um/include/asm/mmu.h
justuser 02e73b8cd9 up
2025-01-24 17:00:19 +03:00

20 lines
374 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
*/
#ifndef __ARCH_UM_MMU_H
#define __ARCH_UM_MMU_H
#include <mm_id.h>
typedef struct mm_context {
struct mm_id id;
/* Address range in need of a TLB sync */
unsigned long sync_tlb_range_from;
unsigned long sync_tlb_range_to;
} mm_context_t;
#endif