linux/arch/um/include/shared/skas/mm_id.h
Tiwei Bie 59376fb2a7 um: Remove unused mm_fd field from mm_id
It's no longer used since the removal of the SKAS3/4 support.

Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
2024-09-12 20:36:22 +02:00

17 lines
257 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 {
int pid;
unsigned long stack;
int syscall_data_len;
};
void __switch_mm(struct mm_id *mm_idp);
#endif