2019-08-25 09:49:19 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2011-08-18 19:09:09 +00:00
|
|
|
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
|
2011-08-18 19:09:09 +00:00
|
|
|
#ifndef __ARCH_UM_MMU_H
|
|
|
|
|
#define __ARCH_UM_MMU_H
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2025-06-02 13:00:49 +00:00
|
|
|
#include "linux/types.h"
|
2012-10-08 02:27:32 +00:00
|
|
|
#include <mm_id.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-18 19:09:09 +00:00
|
|
|
typedef struct mm_context {
|
|
|
|
|
struct mm_id id;
|
2024-07-03 13:45:36 +00:00
|
|
|
|
2025-06-02 13:00:49 +00:00
|
|
|
struct list_head list;
|
|
|
|
|
|
2024-07-03 13:45:36 +00:00
|
|
|
/* Address range in need of a TLB sync */
|
|
|
|
|
unsigned long sync_tlb_range_from;
|
|
|
|
|
unsigned long sync_tlb_range_to;
|
2011-08-18 19:09:09 +00:00
|
|
|
} mm_context_t;
|
|
|
|
|
|
|
|
|
|
#endif
|