diff options
author | NeilBrown <neilb@suse.de> | 2010-05-21 18:31:36 -0400 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2010-05-21 18:31:36 -0400 |
commit | 19fdb9eefb21b72edbc365b838502780c392bad6 (patch) | |
tree | deae04c48532d6eab64ed4b0396737bb854b5506 /fs/proc/array.c | |
parent | be6800a73aa2f3dc14744c3b80e676d189789f04 (diff) | |
parent | 3ff195b011d7decf501a4d55aeed312731094796 (diff) |
Merge commit '3ff195b011d7decf501a4d55aeed312731094796' into for-linus
Conflicts:
drivers/md/md.c
- Resolved conflict in md_update_sb
- Added extra 'NULL' arg to new instance of sysfs_get_dirent.
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'fs/proc/array.c')
-rw-r--r-- | fs/proc/array.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c index aa8637b81028..885ab5513ac5 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c | |||
@@ -68,7 +68,6 @@ | |||
68 | #include <linux/hugetlb.h> | 68 | #include <linux/hugetlb.h> |
69 | #include <linux/pagemap.h> | 69 | #include <linux/pagemap.h> |
70 | #include <linux/swap.h> | 70 | #include <linux/swap.h> |
71 | #include <linux/slab.h> | ||
72 | #include <linux/smp.h> | 71 | #include <linux/smp.h> |
73 | #include <linux/signal.h> | 72 | #include <linux/signal.h> |
74 | #include <linux/highmem.h> | 73 | #include <linux/highmem.h> |
@@ -82,7 +81,6 @@ | |||
82 | #include <linux/pid_namespace.h> | 81 | #include <linux/pid_namespace.h> |
83 | #include <linux/ptrace.h> | 82 | #include <linux/ptrace.h> |
84 | #include <linux/tracehook.h> | 83 | #include <linux/tracehook.h> |
85 | #include <linux/swapops.h> | ||
86 | 84 | ||
87 | #include <asm/pgtable.h> | 85 | #include <asm/pgtable.h> |
88 | #include <asm/processor.h> | 86 | #include <asm/processor.h> |
@@ -496,7 +494,7 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns, | |||
496 | rsslim, | 494 | rsslim, |
497 | mm ? mm->start_code : 0, | 495 | mm ? mm->start_code : 0, |
498 | mm ? mm->end_code : 0, | 496 | mm ? mm->end_code : 0, |
499 | (permitted && mm) ? task->stack_start : 0, | 497 | (permitted && mm) ? mm->start_stack : 0, |
500 | esp, | 498 | esp, |
501 | eip, | 499 | eip, |
502 | /* The signal information here is obsolete. | 500 | /* The signal information here is obsolete. |