Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 455ce9d8 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6:
  [PARISC] wire up sendmmsg syscall
  [PARISC] fix return type of __atomic64_add_return
  [PARISC] Fix futex support
parents 447e1363 205e9a21
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -258,10 +258,10 @@ static __inline__ int __atomic_add_unless(atomic_t *v, int a, int u)


#define ATOMIC64_INIT(i) ((atomic64_t) { (i) })
#define ATOMIC64_INIT(i) ((atomic64_t) { (i) })


static __inline__ int
static __inline__ s64
__atomic64_add_return(s64 i, atomic64_t *v)
__atomic64_add_return(s64 i, atomic64_t *v)
{
{
	int ret;
	s64 ret;
	unsigned long flags;
	unsigned long flags;
	_atomic_spin_lock_irqsave(v, flags);
	_atomic_spin_lock_irqsave(v, flags);


+60 −6
Original line number Original line Diff line number Diff line
@@ -5,11 +5,14 @@


#include <linux/futex.h>
#include <linux/futex.h>
#include <linux/uaccess.h>
#include <linux/uaccess.h>
#include <asm/atomic.h>
#include <asm/errno.h>
#include <asm/errno.h>


static inline int
static inline int
futex_atomic_op_inuser (int encoded_op, u32 __user *uaddr)
futex_atomic_op_inuser (int encoded_op, u32 __user *uaddr)
{
{
	unsigned long int flags;
	u32 val;
	int op = (encoded_op >> 28) & 7;
	int op = (encoded_op >> 28) & 7;
	int cmp = (encoded_op >> 24) & 15;
	int cmp = (encoded_op >> 24) & 15;
	int oparg = (encoded_op << 8) >> 20;
	int oparg = (encoded_op << 8) >> 20;
@@ -18,21 +21,58 @@ futex_atomic_op_inuser (int encoded_op, u32 __user *uaddr)
	if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28))
	if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28))
		oparg = 1 << oparg;
		oparg = 1 << oparg;


	if (! access_ok (VERIFY_WRITE, uaddr, sizeof(u32)))
	if (!access_ok(VERIFY_WRITE, uaddr, sizeof(*uaddr)))
		return -EFAULT;
		return -EFAULT;


	pagefault_disable();
	pagefault_disable();


	_atomic_spin_lock_irqsave(uaddr, flags);

	switch (op) {
	switch (op) {
	case FUTEX_OP_SET:
	case FUTEX_OP_SET:
		/* *(int *)UADDR2 = OPARG; */
		ret = get_user(oldval, uaddr);
		if (!ret)
			ret = put_user(oparg, uaddr);
		break;
	case FUTEX_OP_ADD:
	case FUTEX_OP_ADD:
		/* *(int *)UADDR2 += OPARG; */
		ret = get_user(oldval, uaddr);
		if (!ret) {
			val = oldval + oparg;
			ret = put_user(val, uaddr);
		}
		break;
	case FUTEX_OP_OR:
	case FUTEX_OP_OR:
		/* *(int *)UADDR2 |= OPARG; */
		ret = get_user(oldval, uaddr);
		if (!ret) {
			val = oldval | oparg;
			ret = put_user(val, uaddr);
		}
		break;
	case FUTEX_OP_ANDN:
	case FUTEX_OP_ANDN:
		/* *(int *)UADDR2 &= ~OPARG; */
		ret = get_user(oldval, uaddr);
		if (!ret) {
			val = oldval & ~oparg;
			ret = put_user(val, uaddr);
		}
		break;
	case FUTEX_OP_XOR:
	case FUTEX_OP_XOR:
		/* *(int *)UADDR2 ^= OPARG; */
		ret = get_user(oldval, uaddr);
		if (!ret) {
			val = oldval ^ oparg;
			ret = put_user(val, uaddr);
		}
		break;
	default:
	default:
		ret = -ENOSYS;
		ret = -ENOSYS;
	}
	}


	_atomic_spin_unlock_irqrestore(uaddr, flags);

	pagefault_enable();
	pagefault_enable();


	if (!ret) {
	if (!ret) {
@@ -54,7 +94,9 @@ static inline int
futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
			      u32 oldval, u32 newval)
			      u32 oldval, u32 newval)
{
{
	int ret;
	u32 val;
	u32 val;
	unsigned long flags;


	/* futex.c wants to do a cmpxchg_inatomic on kernel NULL, which is
	/* futex.c wants to do a cmpxchg_inatomic on kernel NULL, which is
	 * our gateway page, and causes no end of trouble...
	 * our gateway page, and causes no end of trouble...
@@ -65,12 +107,24 @@ futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
	if (!access_ok(VERIFY_WRITE, uaddr, sizeof(u32)))
	if (!access_ok(VERIFY_WRITE, uaddr, sizeof(u32)))
		return -EFAULT;
		return -EFAULT;


	if (get_user(val, uaddr))
	/* HPPA has no cmpxchg in hardware and therefore the
		return -EFAULT;
	 * best we can do here is use an array of locks. The
	if (val == oldval && put_user(newval, uaddr))
	 * lock selected is based on a hash of the userspace
		return -EFAULT;
	 * address. This should scale to a couple of CPUs.
	 */

	_atomic_spin_lock_irqsave(uaddr, flags);

	ret = get_user(val, uaddr);

	if (!ret && val == oldval)
		ret = put_user(newval, uaddr);

	*uval = val;
	*uval = val;
	return 0;

	_atomic_spin_unlock_irqrestore(uaddr, flags);

	return ret;
}
}


#endif /*__KERNEL__*/
#endif /*__KERNEL__*/
+2 −1
Original line number Original line Diff line number Diff line
@@ -821,8 +821,9 @@
#define __NR_open_by_handle_at	(__NR_Linux + 326)
#define __NR_open_by_handle_at	(__NR_Linux + 326)
#define __NR_syncfs		(__NR_Linux + 327)
#define __NR_syncfs		(__NR_Linux + 327)
#define __NR_setns		(__NR_Linux + 328)
#define __NR_setns		(__NR_Linux + 328)
#define __NR_sendmmsg		(__NR_Linux + 329)


#define __NR_Linux_syscalls	(__NR_setns + 1)
#define __NR_Linux_syscalls	(__NR_sendmmsg + 1)




#define __IGNORE_select		/* newselect */
#define __IGNORE_select		/* newselect */
+1 −0
Original line number Original line Diff line number Diff line
@@ -427,6 +427,7 @@
	ENTRY_COMP(open_by_handle_at)
	ENTRY_COMP(open_by_handle_at)
	ENTRY_SAME(syncfs)
	ENTRY_SAME(syncfs)
	ENTRY_SAME(setns)
	ENTRY_SAME(setns)
	ENTRY_COMP(sendmmsg)


	/* Nothing yet */
	/* Nothing yet */