diff options
author | HoSung Jung <rain6557@gmail.com> | 2013-04-30 22:15:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-01 11:12:57 -0400 |
commit | 1e3c941c52eab70c8acb2f77829c24673445c858 (patch) | |
tree | a8b35dcd0966bdd5461d327c19439c74eff4ca07 /ipc | |
parent | daaf74cf0867e3042090d56d10b194d6265b4684 (diff) |
ipc/msgutil.c: use linux/uaccess.h
Signed-off-by: HoSung Jung <rain6557@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/msgutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/msgutil.c b/ipc/msgutil.c index d33fbb2743bd..d43439e6eb47 100644 --- a/ipc/msgutil.c +++ b/ipc/msgutil.c | |||
@@ -17,7 +17,7 @@ | |||
17 | #include <linux/ipc_namespace.h> | 17 | #include <linux/ipc_namespace.h> |
18 | #include <linux/utsname.h> | 18 | #include <linux/utsname.h> |
19 | #include <linux/proc_fs.h> | 19 | #include <linux/proc_fs.h> |
20 | #include <asm/uaccess.h> | 20 | #include <linux/uaccess.h> |
21 | 21 | ||
22 | #include "util.h" | 22 | #include "util.h" |
23 | 23 | ||
@@ -37,7 +37,7 @@ struct ipc_namespace init_ipc_ns = { | |||
37 | atomic_t nr_ipc_ns = ATOMIC_INIT(1); | 37 | atomic_t nr_ipc_ns = ATOMIC_INIT(1); |
38 | 38 | ||
39 | struct msg_msgseg { | 39 | struct msg_msgseg { |
40 | struct msg_msgseg* next; | 40 | struct msg_msgseg *next; |
41 | /* the next part of the message follows immediately */ | 41 | /* the next part of the message follows immediately */ |
42 | }; | 42 | }; |
43 | 43 | ||