|
@@ -440,7 +440,7 @@ static inline int shm_more_checks(struct kern_ipc_perm *ipcp,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-asmlinkage long sys_shmget (key_t key, size_t size, int shmflg)
|
|
|
+SYSCALL_DEFINE3(shmget, key_t, key, size_t, size, int, shmflg)
|
|
|
{
|
|
|
struct ipc_namespace *ns;
|
|
|
struct ipc_ops shm_ops;
|
|
@@ -621,7 +621,7 @@ out_up:
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-asmlinkage long sys_shmctl(int shmid, int cmd, struct shmid_ds __user *buf)
|
|
|
+SYSCALL_DEFINE3(shmctl, int, shmid, int, cmd, struct shmid_ds __user *, buf)
|
|
|
{
|
|
|
struct shmid_kernel *shp;
|
|
|
int err, version;
|
|
@@ -939,7 +939,7 @@ out_put_dentry:
|
|
|
goto out_nattch;
|
|
|
}
|
|
|
|
|
|
-asmlinkage long sys_shmat(int shmid, char __user *shmaddr, int shmflg)
|
|
|
+SYSCALL_DEFINE3(shmat, int, shmid, char __user *, shmaddr, int, shmflg)
|
|
|
{
|
|
|
unsigned long ret;
|
|
|
long err;
|
|
@@ -955,7 +955,7 @@ asmlinkage long sys_shmat(int shmid, char __user *shmaddr, int shmflg)
|
|
|
* detach and kill segment if marked destroyed.
|
|
|
* The work is done in shm_close.
|
|
|
*/
|
|
|
-asmlinkage long sys_shmdt(char __user *shmaddr)
|
|
|
+SYSCALL_DEFINE1(shmdt, char __user *, shmaddr)
|
|
|
{
|
|
|
struct mm_struct *mm = current->mm;
|
|
|
struct vm_area_struct *vma, *next;
|