-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 7326 b: refs/heads/master c: 4732efb h: refs/heads/master v: v3
- Loading branch information
Jakub Jelinek
authored and
Linus Torvalds
committed
Sep 7, 2005
1 parent
2dfd6f1
commit 77848b6
Showing
27 changed files
with
1,499 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5b039e681b8c5f30aac9cc04385cc94be45d0823 | ||
refs/heads/master: 4732efbeb997189d9f9b04708dc26bf8613ed721 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef _ASM_FUTEX_H | ||
#define _ASM_FUTEX_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#include <linux/futex.h> | ||
#include <asm/errno.h> | ||
#include <asm/uaccess.h> | ||
|
||
static inline int | ||
futex_atomic_op_inuser (int encoded_op, int __user *uaddr) | ||
{ | ||
int op = (encoded_op >> 28) & 7; | ||
int cmp = (encoded_op >> 24) & 15; | ||
int oparg = (encoded_op << 8) >> 20; | ||
int cmparg = (encoded_op << 20) >> 20; | ||
int oldval = 0, ret, tem; | ||
if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) | ||
oparg = 1 << oparg; | ||
|
||
if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int))) | ||
return -EFAULT; | ||
|
||
inc_preempt_count(); | ||
|
||
switch (op) { | ||
case FUTEX_OP_SET: | ||
case FUTEX_OP_ADD: | ||
case FUTEX_OP_OR: | ||
case FUTEX_OP_ANDN: | ||
case FUTEX_OP_XOR: | ||
default: | ||
ret = -ENOSYS; | ||
} | ||
|
||
dec_preempt_count(); | ||
|
||
if (!ret) { | ||
switch (cmp) { | ||
case FUTEX_OP_CMP_EQ: ret = (oldval == cmparg); break; | ||
case FUTEX_OP_CMP_NE: ret = (oldval != cmparg); break; | ||
case FUTEX_OP_CMP_LT: ret = (oldval < cmparg); break; | ||
case FUTEX_OP_CMP_GE: ret = (oldval >= cmparg); break; | ||
case FUTEX_OP_CMP_LE: ret = (oldval <= cmparg); break; | ||
case FUTEX_OP_CMP_GT: ret = (oldval > cmparg); break; | ||
default: ret = -ENOSYS; | ||
} | ||
} | ||
return ret; | ||
} | ||
|
||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef _ASM_FUTEX_H | ||
#define _ASM_FUTEX_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#include <linux/futex.h> | ||
#include <asm/errno.h> | ||
#include <asm/uaccess.h> | ||
|
||
static inline int | ||
futex_atomic_op_inuser (int encoded_op, int __user *uaddr) | ||
{ | ||
int op = (encoded_op >> 28) & 7; | ||
int cmp = (encoded_op >> 24) & 15; | ||
int oparg = (encoded_op << 8) >> 20; | ||
int cmparg = (encoded_op << 20) >> 20; | ||
int oldval = 0, ret, tem; | ||
if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) | ||
oparg = 1 << oparg; | ||
|
||
if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int))) | ||
return -EFAULT; | ||
|
||
inc_preempt_count(); | ||
|
||
switch (op) { | ||
case FUTEX_OP_SET: | ||
case FUTEX_OP_ADD: | ||
case FUTEX_OP_OR: | ||
case FUTEX_OP_ANDN: | ||
case FUTEX_OP_XOR: | ||
default: | ||
ret = -ENOSYS; | ||
} | ||
|
||
dec_preempt_count(); | ||
|
||
if (!ret) { | ||
switch (cmp) { | ||
case FUTEX_OP_CMP_EQ: ret = (oldval == cmparg); break; | ||
case FUTEX_OP_CMP_NE: ret = (oldval != cmparg); break; | ||
case FUTEX_OP_CMP_LT: ret = (oldval < cmparg); break; | ||
case FUTEX_OP_CMP_GE: ret = (oldval >= cmparg); break; | ||
case FUTEX_OP_CMP_LE: ret = (oldval <= cmparg); break; | ||
case FUTEX_OP_CMP_GT: ret = (oldval > cmparg); break; | ||
default: ret = -ENOSYS; | ||
} | ||
} | ||
return ret; | ||
} | ||
|
||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef _ASM_FUTEX_H | ||
#define _ASM_FUTEX_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#include <linux/futex.h> | ||
#include <asm/errno.h> | ||
#include <asm/uaccess.h> | ||
|
||
static inline int | ||
futex_atomic_op_inuser (int encoded_op, int __user *uaddr) | ||
{ | ||
int op = (encoded_op >> 28) & 7; | ||
int cmp = (encoded_op >> 24) & 15; | ||
int oparg = (encoded_op << 8) >> 20; | ||
int cmparg = (encoded_op << 20) >> 20; | ||
int oldval = 0, ret, tem; | ||
if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) | ||
oparg = 1 << oparg; | ||
|
||
if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int))) | ||
return -EFAULT; | ||
|
||
inc_preempt_count(); | ||
|
||
switch (op) { | ||
case FUTEX_OP_SET: | ||
case FUTEX_OP_ADD: | ||
case FUTEX_OP_OR: | ||
case FUTEX_OP_ANDN: | ||
case FUTEX_OP_XOR: | ||
default: | ||
ret = -ENOSYS; | ||
} | ||
|
||
dec_preempt_count(); | ||
|
||
if (!ret) { | ||
switch (cmp) { | ||
case FUTEX_OP_CMP_EQ: ret = (oldval == cmparg); break; | ||
case FUTEX_OP_CMP_NE: ret = (oldval != cmparg); break; | ||
case FUTEX_OP_CMP_LT: ret = (oldval < cmparg); break; | ||
case FUTEX_OP_CMP_GE: ret = (oldval >= cmparg); break; | ||
case FUTEX_OP_CMP_LE: ret = (oldval <= cmparg); break; | ||
case FUTEX_OP_CMP_GT: ret = (oldval > cmparg); break; | ||
default: ret = -ENOSYS; | ||
} | ||
} | ||
return ret; | ||
} | ||
|
||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef _ASM_FUTEX_H | ||
#define _ASM_FUTEX_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#include <linux/futex.h> | ||
#include <asm/errno.h> | ||
#include <asm/uaccess.h> | ||
|
||
static inline int | ||
futex_atomic_op_inuser (int encoded_op, int __user *uaddr) | ||
{ | ||
int op = (encoded_op >> 28) & 7; | ||
int cmp = (encoded_op >> 24) & 15; | ||
int oparg = (encoded_op << 8) >> 20; | ||
int cmparg = (encoded_op << 20) >> 20; | ||
int oldval = 0, ret, tem; | ||
if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) | ||
oparg = 1 << oparg; | ||
|
||
if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int))) | ||
return -EFAULT; | ||
|
||
inc_preempt_count(); | ||
|
||
switch (op) { | ||
case FUTEX_OP_SET: | ||
case FUTEX_OP_ADD: | ||
case FUTEX_OP_OR: | ||
case FUTEX_OP_ANDN: | ||
case FUTEX_OP_XOR: | ||
default: | ||
ret = -ENOSYS; | ||
} | ||
|
||
dec_preempt_count(); | ||
|
||
if (!ret) { | ||
switch (cmp) { | ||
case FUTEX_OP_CMP_EQ: ret = (oldval == cmparg); break; | ||
case FUTEX_OP_CMP_NE: ret = (oldval != cmparg); break; | ||
case FUTEX_OP_CMP_LT: ret = (oldval < cmparg); break; | ||
case FUTEX_OP_CMP_GE: ret = (oldval >= cmparg); break; | ||
case FUTEX_OP_CMP_LE: ret = (oldval <= cmparg); break; | ||
case FUTEX_OP_CMP_GT: ret = (oldval > cmparg); break; | ||
default: ret = -ENOSYS; | ||
} | ||
} | ||
return ret; | ||
} | ||
|
||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef _ASM_FUTEX_H | ||
#define _ASM_FUTEX_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#include <linux/futex.h> | ||
#include <asm/errno.h> | ||
#include <asm/uaccess.h> | ||
|
||
static inline int | ||
futex_atomic_op_inuser (int encoded_op, int __user *uaddr) | ||
{ | ||
int op = (encoded_op >> 28) & 7; | ||
int cmp = (encoded_op >> 24) & 15; | ||
int oparg = (encoded_op << 8) >> 20; | ||
int cmparg = (encoded_op << 20) >> 20; | ||
int oldval = 0, ret, tem; | ||
if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) | ||
oparg = 1 << oparg; | ||
|
||
if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int))) | ||
return -EFAULT; | ||
|
||
inc_preempt_count(); | ||
|
||
switch (op) { | ||
case FUTEX_OP_SET: | ||
case FUTEX_OP_ADD: | ||
case FUTEX_OP_OR: | ||
case FUTEX_OP_ANDN: | ||
case FUTEX_OP_XOR: | ||
default: | ||
ret = -ENOSYS; | ||
} | ||
|
||
dec_preempt_count(); | ||
|
||
if (!ret) { | ||
switch (cmp) { | ||
case FUTEX_OP_CMP_EQ: ret = (oldval == cmparg); break; | ||
case FUTEX_OP_CMP_NE: ret = (oldval != cmparg); break; | ||
case FUTEX_OP_CMP_LT: ret = (oldval < cmparg); break; | ||
case FUTEX_OP_CMP_GE: ret = (oldval >= cmparg); break; | ||
case FUTEX_OP_CMP_LE: ret = (oldval <= cmparg); break; | ||
case FUTEX_OP_CMP_GT: ret = (oldval > cmparg); break; | ||
default: ret = -ENOSYS; | ||
} | ||
} | ||
return ret; | ||
} | ||
|
||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef _ASM_FUTEX_H | ||
#define _ASM_FUTEX_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#include <linux/futex.h> | ||
#include <asm/errno.h> | ||
#include <asm/uaccess.h> | ||
|
||
static inline int | ||
futex_atomic_op_inuser (int encoded_op, int __user *uaddr) | ||
{ | ||
int op = (encoded_op >> 28) & 7; | ||
int cmp = (encoded_op >> 24) & 15; | ||
int oparg = (encoded_op << 8) >> 20; | ||
int cmparg = (encoded_op << 20) >> 20; | ||
int oldval = 0, ret, tem; | ||
if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) | ||
oparg = 1 << oparg; | ||
|
||
if (! access_ok (VERIFY_WRITE, uaddr, sizeof(int))) | ||
return -EFAULT; | ||
|
||
inc_preempt_count(); | ||
|
||
switch (op) { | ||
case FUTEX_OP_SET: | ||
case FUTEX_OP_ADD: | ||
case FUTEX_OP_OR: | ||
case FUTEX_OP_ANDN: | ||
case FUTEX_OP_XOR: | ||
default: | ||
ret = -ENOSYS; | ||
} | ||
|
||
dec_preempt_count(); | ||
|
||
if (!ret) { | ||
switch (cmp) { | ||
case FUTEX_OP_CMP_EQ: ret = (oldval == cmparg); break; | ||
case FUTEX_OP_CMP_NE: ret = (oldval != cmparg); break; | ||
case FUTEX_OP_CMP_LT: ret = (oldval < cmparg); break; | ||
case FUTEX_OP_CMP_GE: ret = (oldval >= cmparg); break; | ||
case FUTEX_OP_CMP_LE: ret = (oldval <= cmparg); break; | ||
case FUTEX_OP_CMP_GT: ret = (oldval > cmparg); break; | ||
default: ret = -ENOSYS; | ||
} | ||
} | ||
return ret; | ||
} | ||
|
||
#endif | ||
#endif |
Oops, something went wrong.