2026-01-21 18:59:54 +08:00

11 lines
235 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_SW64_MMU_H
#define _ASM_SW64_MMU_H
/* The sw64 MMU context is one "unsigned long" bitmap per CPU*/
typedef struct {
unsigned long asid[NR_CPUS];
void *vdso;
} mm_context_t;
#endif