mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

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>
17 lines
257 B
C
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
|