aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/task_mmu.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/task_mmu.c')
-rw-r--r--fs/proc/task_mmu.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index b7e31836a005..30aa2dd3e6f5 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -146,17 +146,12 @@ static void *m_start(struct seq_file *m, loff_t *pos)
146 struct vm_area_struct *vma, *tail_vma = NULL; 146 struct vm_area_struct *vma, *tail_vma = NULL;
147 loff_t l = *pos; 147 loff_t l = *pos;
148 148
149 /* Clear the per syscall fields in priv */
150 priv->task = NULL;
151 priv->tail_vma = NULL;
152
153 /* 149 /*
154 * We remember last_addr rather than next_addr to hit with 150 * We remember last_addr rather than next_addr to hit with
155 * vmacache most of the time. We have zero last_addr at 151 * vmacache most of the time. We have zero last_addr at
156 * the beginning and also after lseek. We will have -1 last_addr 152 * the beginning and also after lseek. We will have -1 last_addr
157 * after the end of the vmas. 153 * after the end of the vmas.
158 */ 154 */
159
160 if (last_addr == -1UL) 155 if (last_addr == -1UL)
161 return NULL; 156 return NULL;
162 157
@@ -228,8 +223,10 @@ static void m_stop(struct seq_file *m, void *v)
228 223
229 if (!IS_ERR_OR_NULL(v)) 224 if (!IS_ERR_OR_NULL(v))
230 vma_stop(priv); 225 vma_stop(priv);
231 if (priv->task) 226 if (priv->task) {
232 put_task_struct(priv->task); 227 put_task_struct(priv->task);
228 priv->task = NULL;
229 }
233} 230}
234 231
235static int proc_maps_open(struct inode *inode, struct file *file, 232static int proc_maps_open(struct inode *inode, struct file *file,