Commit ca879002 authored by David Mosberger's avatar David Mosberger

ia64: Patch by Arun Sharma: In the absence of the patch, this system call

fails:

shmctl(shmid, IPC_STAT, &shmid_ds) 

The patch corrects the definition of the ipc_perm32 structure.
parent 402df0e9
...@@ -1102,7 +1102,7 @@ struct shmid_ds32 { ...@@ -1102,7 +1102,7 @@ struct shmid_ds32 {
}; };
struct shmid64_ds32 { struct shmid64_ds32 {
struct ipc64_perm shm_perm; struct ipc64_perm32 shm_perm;
compat_size_t shm_segsz; compat_size_t shm_segsz;
compat_time_t shm_atime; compat_time_t shm_atime;
unsigned int __unused1; unsigned int __unused1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment