2026-01-29 22:25:33 +08:00

11 lines
257 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 /* _ASM_SW64_MMU_H */