From 10c6c3f7b5032ec56d59f5f4781190274ed41ec7 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 20 Apr 2016 01:05:18 +0000 Subject: [PATCH] alpha: fix decoding of shmat syscall On alpha, shmat syscall is known as osf_shmat. * linux/alpha/syscallent.h (osf_shmat): Fix sys_flags and sys_func. --- linux/alpha/syscallent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/alpha/syscallent.h b/linux/alpha/syscallent.h index 1bddd244..69d252af 100644 --- a/linux/alpha/syscallent.h +++ b/linux/alpha/syscallent.h @@ -212,7 +212,7 @@ [206] = { 3, TI, SEN(semop), "semop" }, [207] = { 1, 0, SEN(printargs), "osf_utsname" }, [208] = { 3, TF, SEN(chown), "lchown" }, -[209] = { 3, TI|TM, SEN(printargs), "osf_shmat" }, +[209] = { 3, TI|TM|SI, SEN(shmat), "osf_shmat" }, [210] = { 3, TI, SEN(shmctl), "shmctl" }, [211] = { 1, TI|TM|SI, SEN(shmdt), "shmdt" }, [212] = { 3, TI, SEN(shmget), "shmget" }, -- 2.40.0