]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
um: Remove unused mm_fd field from mm_id
authorTiwei Bie <tiwei.btw@antgroup.com>
Mon, 26 Aug 2024 10:08:12 +0000 (18:08 +0800)
committerRichard Weinberger <richard@nod.at>
Thu, 12 Sep 2024 18:36:22 +0000 (20:36 +0200)
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>
arch/um/include/shared/skas/mm_id.h
arch/um/kernel/reboot.c
arch/um/kernel/skas/mmu.c
arch/um/kernel/time.c
arch/um/os-Linux/skas/mem.c
arch/um/os-Linux/skas/process.c

index 1e76ba40febadf8dd216fb88327deb5c605fb67d..140388c282f6d31b2379419a8e0fe5689f54fab5 100644 (file)
@@ -7,10 +7,7 @@
 #define __MM_ID_H
 
 struct mm_id {
-       union {
-               int mm_fd;
-               int pid;
-       } u;
+       int pid;
        unsigned long stack;
        int syscall_data_len;
 };
index 3736bca626ba0b59a862c2634b81d2624a1bde99..680bce4bd8fa7a8117a57700cb840d3fe43a9f3a 100644 (file)
@@ -29,7 +29,7 @@ static void kill_off_processes(void)
                t = find_lock_task_mm(p);
                if (!t)
                        continue;
-               pid = t->mm->context.id.u.pid;
+               pid = t->mm->context.id.pid;
                task_unlock(t);
                os_kill_ptraced_process(pid, 1);
        }
index 47f98d87ea3cfb96e47a8679a8c5ff4f7004630b..886ed5e656743d44394e397017e677bb538a7383 100644 (file)
@@ -32,11 +32,11 @@ int init_new_context(struct task_struct *task, struct mm_struct *mm)
        new_id->stack = stack;
 
        block_signals_trace();
-       new_id->u.pid = start_userspace(stack);
+       new_id->pid = start_userspace(stack);
        unblock_signals_trace();
 
-       if (new_id->u.pid < 0) {
-               ret = new_id->u.pid;
+       if (new_id->pid < 0) {
+               ret = new_id->pid;
                goto out_free;
        }
 
@@ -83,12 +83,12 @@ void destroy_context(struct mm_struct *mm)
         * whole UML suddenly dying.  Also, cover negative and
         * 1 cases, since they shouldn't happen either.
         */
-       if (mmu->id.u.pid < 2) {
+       if (mmu->id.pid < 2) {
                printk(KERN_ERR "corrupt mm_context - pid = %d\n",
-                      mmu->id.u.pid);
+                      mmu->id.pid);
                return;
        }
-       os_kill_ptraced_process(mmu->id.u.pid, 1);
+       os_kill_ptraced_process(mmu->id.pid, 1);
 
        free_pages(mmu->id.stack, ilog2(STUB_DATA_PAGES));
 }
index 47b9f5e63566f79c8fc3eb45a07f86b1c1b69361..29b27b90581fbb06365b4b7e2962698c3bfdc15e 100644 (file)
@@ -839,7 +839,7 @@ static irqreturn_t um_timer(int irq, void *dev)
        if (get_current()->mm != NULL)
        {
         /* userspace - relay signal, results in correct userspace timers */
-               os_alarm_process(get_current()->mm->context.id.u.pid);
+               os_alarm_process(get_current()->mm->context.id.pid);
        }
 
        (*timer_clockevent.event_handler)(&timer_clockevent);
index c55430775efdb4832eaddd8bd19dcaf1710bfd59..9a13ac23c60644b335e9648e495ae3e6e669f568 100644 (file)
@@ -78,7 +78,7 @@ static inline long do_syscall_stub(struct mm_id *mm_idp)
 {
        struct stub_data *proc_data = (void *)mm_idp->stack;
        int n, i;
-       int err, pid = mm_idp->u.pid;
+       int err, pid = mm_idp->pid;
 
        n = ptrace_setregs(pid, syscall_regs);
        if (n < 0) {
index f7088345b3fc021ff5eb936982e0a6f35fe07466..b6f656bcffb1788736b116bdf9c2eda042fda51f 100644 (file)
@@ -588,5 +588,5 @@ void reboot_skas(void)
 
 void __switch_mm(struct mm_id *mm_idp)
 {
-       userspace_pid[0] = mm_idp->u.pid;
+       userspace_pid[0] = mm_idp->pid;
 }