mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
[ Upstream commit2cbade17b1] The __switch_mm function is defined in the user code, and is called by the kernel code. It should be declared in a shared header. Fixes:4dc706c2f2("um: take um_mmu.h to asm/mmu.h, clean asm/mmu_context.h a bit") Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com> Signed-off-by: Richard Weinberger <richard@nod.at> Signed-off-by: Sasha Levin <sashal@kernel.org>
21 lines
274 B
C
21 lines
274 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2005 Jeff Dike (jdike@karaya.com)
|
|
*/
|
|
|
|
#ifndef __MM_ID_H
|
|
#define __MM_ID_H
|
|
|
|
struct mm_id {
|
|
union {
|
|
int mm_fd;
|
|
int pid;
|
|
} u;
|
|
unsigned long stack;
|
|
int kill;
|
|
};
|
|
|
|
void __switch_mm(struct mm_id *mm_idp);
|
|
|
|
#endif
|