Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 252215
b: refs/heads/master
c: 7683f74
h: refs/heads/master
i:
  252213: 3658319
  252211: fb6bd61
  252207: 58d3435
v: v3
  • Loading branch information
Heiko Carstens committed May 26, 2011
1 parent b309abb commit 810d62e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d7b250e2a2d7f3cd23cf8d8d6689285e6f51a98d
refs/heads/master: 7683f7444875c822f48f03a9f9c8b1b1e98b2ef0
11 changes: 6 additions & 5 deletions trunk/arch/s390/include/asm/uaccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@

#define segment_eq(a,b) ((a).ar4 == (b).ar4)

#define __access_ok(addr, size) \
({ \
__chk_user_ptr(addr); \
1; \
})

static inline int __access_ok(const void __user *addr, unsigned long size)
{
return 1;
}
#define access_ok(type,addr,size) __access_ok(addr,size)
#define access_ok(type, addr, size) __access_ok(addr, size)

/*
* The exception table consists of pairs of addresses: the first is the
Expand Down

0 comments on commit 810d62e

Please sign in to comment.