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