]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/proc/task_mmu.c
Merge remote-tracking branches 'asoc/topic/sgtl5000', 'asoc/topic/simple', 'asoc...
[mirror_ubuntu-zesty-kernel.git] / fs / proc / task_mmu.c
CommitLineData
1da177e4 1#include <linux/mm.h>
615d6e87 2#include <linux/vmacache.h>
1da177e4 3#include <linux/hugetlb.h>
22e057c5 4#include <linux/huge_mm.h>
1da177e4
LT
5#include <linux/mount.h>
6#include <linux/seq_file.h>
e070ad49 7#include <linux/highmem.h>
5096add8 8#include <linux/ptrace.h>
5a0e3ad6 9#include <linux/slab.h>
6e21c8f1
CL
10#include <linux/pagemap.h>
11#include <linux/mempolicy.h>
22e057c5 12#include <linux/rmap.h>
85863e47
MM
13#include <linux/swap.h>
14#include <linux/swapops.h>
0f8975ec 15#include <linux/mmu_notifier.h>
33c3fc71 16#include <linux/page_idle.h>
6a15a370 17#include <linux/shmem_fs.h>
e070ad49 18
1da177e4
LT
19#include <asm/elf.h>
20#include <asm/uaccess.h>
e070ad49 21#include <asm/tlbflush.h>
1da177e4
LT
22#include "internal.h"
23
df5f8314 24void task_mem(struct seq_file *m, struct mm_struct *mm)
1da177e4 25{
84638335 26 unsigned long text, lib, swap, ptes, pmds, anon, file, shmem;
365e9c87
HD
27 unsigned long hiwater_vm, total_vm, hiwater_rss, total_rss;
28
8cee852e
JM
29 anon = get_mm_counter(mm, MM_ANONPAGES);
30 file = get_mm_counter(mm, MM_FILEPAGES);
31 shmem = get_mm_counter(mm, MM_SHMEMPAGES);
32
365e9c87
HD
33 /*
34 * Note: to minimize their overhead, mm maintains hiwater_vm and
35 * hiwater_rss only when about to *lower* total_vm or rss. Any
36 * collector of these hiwater stats must therefore get total_vm
37 * and rss too, which will usually be the higher. Barriers? not
38 * worth the effort, such snapshots can always be inconsistent.
39 */
40 hiwater_vm = total_vm = mm->total_vm;
41 if (hiwater_vm < mm->hiwater_vm)
42 hiwater_vm = mm->hiwater_vm;
8cee852e 43 hiwater_rss = total_rss = anon + file + shmem;
365e9c87
HD
44 if (hiwater_rss < mm->hiwater_rss)
45 hiwater_rss = mm->hiwater_rss;
1da177e4 46
1da177e4
LT
47 text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK)) >> 10;
48 lib = (mm->exec_vm << (PAGE_SHIFT-10)) - text;
b084d435 49 swap = get_mm_counter(mm, MM_SWAPENTS);
dc6c9a35
KS
50 ptes = PTRS_PER_PTE * sizeof(pte_t) * atomic_long_read(&mm->nr_ptes);
51 pmds = PTRS_PER_PMD * sizeof(pmd_t) * mm_nr_pmds(mm);
df5f8314 52 seq_printf(m,
365e9c87 53 "VmPeak:\t%8lu kB\n"
1da177e4
LT
54 "VmSize:\t%8lu kB\n"
55 "VmLck:\t%8lu kB\n"
bc3e53f6 56 "VmPin:\t%8lu kB\n"
365e9c87 57 "VmHWM:\t%8lu kB\n"
1da177e4 58 "VmRSS:\t%8lu kB\n"
8cee852e
JM
59 "RssAnon:\t%8lu kB\n"
60 "RssFile:\t%8lu kB\n"
61 "RssShmem:\t%8lu kB\n"
1da177e4
LT
62 "VmData:\t%8lu kB\n"
63 "VmStk:\t%8lu kB\n"
64 "VmExe:\t%8lu kB\n"
65 "VmLib:\t%8lu kB\n"
b084d435 66 "VmPTE:\t%8lu kB\n"
dc6c9a35 67 "VmPMD:\t%8lu kB\n"
b084d435 68 "VmSwap:\t%8lu kB\n",
365e9c87 69 hiwater_vm << (PAGE_SHIFT-10),
314e51b9 70 total_vm << (PAGE_SHIFT-10),
1da177e4 71 mm->locked_vm << (PAGE_SHIFT-10),
bc3e53f6 72 mm->pinned_vm << (PAGE_SHIFT-10),
365e9c87
HD
73 hiwater_rss << (PAGE_SHIFT-10),
74 total_rss << (PAGE_SHIFT-10),
8cee852e
JM
75 anon << (PAGE_SHIFT-10),
76 file << (PAGE_SHIFT-10),
77 shmem << (PAGE_SHIFT-10),
84638335 78 mm->data_vm << (PAGE_SHIFT-10),
1da177e4 79 mm->stack_vm << (PAGE_SHIFT-10), text, lib,
dc6c9a35
KS
80 ptes >> 10,
81 pmds >> 10,
b084d435 82 swap << (PAGE_SHIFT-10));
5d317b2b 83 hugetlb_report_usage(m, mm);
1da177e4
LT
84}
85
86unsigned long task_vsize(struct mm_struct *mm)
87{
88 return PAGE_SIZE * mm->total_vm;
89}
90
a2ade7b6
AD
91unsigned long task_statm(struct mm_struct *mm,
92 unsigned long *shared, unsigned long *text,
93 unsigned long *data, unsigned long *resident)
1da177e4 94{
eca56ff9
JM
95 *shared = get_mm_counter(mm, MM_FILEPAGES) +
96 get_mm_counter(mm, MM_SHMEMPAGES);
1da177e4
LT
97 *text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK))
98 >> PAGE_SHIFT;
84638335 99 *data = mm->data_vm + mm->stack_vm;
d559db08 100 *resident = *shared + get_mm_counter(mm, MM_ANONPAGES);
1da177e4
LT
101 return mm->total_vm;
102}
103
9e781440
KH
104#ifdef CONFIG_NUMA
105/*
498f2371 106 * Save get_task_policy() for show_numa_map().
9e781440
KH
107 */
108static void hold_task_mempolicy(struct proc_maps_private *priv)
109{
110 struct task_struct *task = priv->task;
111
112 task_lock(task);
498f2371 113 priv->task_mempolicy = get_task_policy(task);
9e781440
KH
114 mpol_get(priv->task_mempolicy);
115 task_unlock(task);
116}
117static void release_task_mempolicy(struct proc_maps_private *priv)
118{
119 mpol_put(priv->task_mempolicy);
120}
121#else
122static void hold_task_mempolicy(struct proc_maps_private *priv)
123{
124}
125static void release_task_mempolicy(struct proc_maps_private *priv)
126{
127}
128#endif
129
59b4bf12 130static void vma_stop(struct proc_maps_private *priv)
a6198797 131{
59b4bf12
ON
132 struct mm_struct *mm = priv->mm;
133
134 release_task_mempolicy(priv);
135 up_read(&mm->mmap_sem);
136 mmput(mm);
a6198797 137}
ec4dd3eb 138
ad2a00e4
ON
139static struct vm_area_struct *
140m_next_vma(struct proc_maps_private *priv, struct vm_area_struct *vma)
141{
142 if (vma == priv->tail_vma)
143 return NULL;
144 return vma->vm_next ?: priv->tail_vma;
145}
146
b8c20a9b
ON
147static void m_cache_vma(struct seq_file *m, struct vm_area_struct *vma)
148{
149 if (m->count < m->size) /* vma is copied successfully */
150 m->version = m_next_vma(m->private, vma) ? vma->vm_start : -1UL;
151}
152
0c255321 153static void *m_start(struct seq_file *m, loff_t *ppos)
e070ad49 154{
a6198797 155 struct proc_maps_private *priv = m->private;
b8c20a9b 156 unsigned long last_addr = m->version;
a6198797 157 struct mm_struct *mm;
0c255321
ON
158 struct vm_area_struct *vma;
159 unsigned int pos = *ppos;
a6198797 160
b8c20a9b
ON
161 /* See m_cache_vma(). Zero at the start or after lseek. */
162 if (last_addr == -1UL)
163 return NULL;
164
2c03376d 165 priv->task = get_proc_task(priv->inode);
a6198797 166 if (!priv->task)
ec6fd8a4 167 return ERR_PTR(-ESRCH);
a6198797 168
29a40ace
ON
169 mm = priv->mm;
170 if (!mm || !atomic_inc_not_zero(&mm->mm_users))
171 return NULL;
a6198797 172
0c255321 173 down_read(&mm->mmap_sem);
9e781440 174 hold_task_mempolicy(priv);
0c255321 175 priv->tail_vma = get_gate_vma(mm);
a6198797 176
b8c20a9b
ON
177 if (last_addr) {
178 vma = find_vma(mm, last_addr);
179 if (vma && (vma = m_next_vma(priv, vma)))
180 return vma;
181 }
182
183 m->version = 0;
0c255321 184 if (pos < mm->map_count) {
557c2d8a
ON
185 for (vma = mm->mmap; pos; pos--) {
186 m->version = vma->vm_start;
a6198797 187 vma = vma->vm_next;
557c2d8a 188 }
a6198797 189 return vma;
0c255321 190 }
a6198797 191
557c2d8a 192 /* we do not bother to update m->version in this case */
0c255321
ON
193 if (pos == mm->map_count && priv->tail_vma)
194 return priv->tail_vma;
59b4bf12
ON
195
196 vma_stop(priv);
197 return NULL;
a6198797
MM
198}
199
200static void *m_next(struct seq_file *m, void *v, loff_t *pos)
201{
202 struct proc_maps_private *priv = m->private;
ad2a00e4 203 struct vm_area_struct *next;
a6198797
MM
204
205 (*pos)++;
ad2a00e4 206 next = m_next_vma(priv, v);
59b4bf12
ON
207 if (!next)
208 vma_stop(priv);
209 return next;
a6198797
MM
210}
211
212static void m_stop(struct seq_file *m, void *v)
213{
214 struct proc_maps_private *priv = m->private;
a6198797 215
59b4bf12
ON
216 if (!IS_ERR_OR_NULL(v))
217 vma_stop(priv);
0d5f5f45 218 if (priv->task) {
a6198797 219 put_task_struct(priv->task);
0d5f5f45
ON
220 priv->task = NULL;
221 }
a6198797
MM
222}
223
4db7d0ee
ON
224static int proc_maps_open(struct inode *inode, struct file *file,
225 const struct seq_operations *ops, int psize)
226{
227 struct proc_maps_private *priv = __seq_open_private(file, ops, psize);
228
229 if (!priv)
230 return -ENOMEM;
231
2c03376d 232 priv->inode = inode;
29a40ace
ON
233 priv->mm = proc_mem_open(inode, PTRACE_MODE_READ);
234 if (IS_ERR(priv->mm)) {
235 int err = PTR_ERR(priv->mm);
236
237 seq_release_private(inode, file);
238 return err;
239 }
240
4db7d0ee
ON
241 return 0;
242}
243
29a40ace
ON
244static int proc_map_release(struct inode *inode, struct file *file)
245{
246 struct seq_file *seq = file->private_data;
247 struct proc_maps_private *priv = seq->private;
248
249 if (priv->mm)
250 mmdrop(priv->mm);
251
252 return seq_release_private(inode, file);
253}
254
a6198797 255static int do_maps_open(struct inode *inode, struct file *file,
03a44825 256 const struct seq_operations *ops)
a6198797 257{
4db7d0ee
ON
258 return proc_maps_open(inode, file, ops,
259 sizeof(struct proc_maps_private));
a6198797 260}
e070ad49 261
65376df5
JW
262/*
263 * Indicate if the VMA is a stack for the given task; for
264 * /proc/PID/maps that is the stack of the main task.
265 */
266static int is_stack(struct proc_maps_private *priv,
267 struct vm_area_struct *vma, int is_pid)
58cb6548 268{
65376df5
JW
269 int stack = 0;
270
271 if (is_pid) {
272 stack = vma->vm_start <= vma->vm_mm->start_stack &&
273 vma->vm_end >= vma->vm_mm->start_stack;
274 } else {
275 struct inode *inode = priv->inode;
276 struct task_struct *task;
58cb6548 277
65376df5
JW
278 rcu_read_lock();
279 task = pid_task(proc_pid(inode), PIDTYPE_PID);
58cb6548 280 if (task)
65376df5
JW
281 stack = vma_is_stack_for_task(vma, task);
282 rcu_read_unlock();
58cb6548 283 }
65376df5 284 return stack;
58cb6548
ON
285}
286
b7643757
SP
287static void
288show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
1da177e4 289{
e070ad49
ML
290 struct mm_struct *mm = vma->vm_mm;
291 struct file *file = vma->vm_file;
b7643757 292 struct proc_maps_private *priv = m->private;
ca16d140 293 vm_flags_t flags = vma->vm_flags;
1da177e4 294 unsigned long ino = 0;
6260a4b0 295 unsigned long long pgoff = 0;
a09a79f6 296 unsigned long start, end;
1da177e4 297 dev_t dev = 0;
b7643757 298 const char *name = NULL;
1da177e4
LT
299
300 if (file) {
496ad9aa 301 struct inode *inode = file_inode(vma->vm_file);
1da177e4
LT
302 dev = inode->i_sb->s_dev;
303 ino = inode->i_ino;
6260a4b0 304 pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
1da177e4
LT
305 }
306
d7824370
LT
307 /* We don't show the stack guard page in /proc/maps */
308 start = vma->vm_start;
a09a79f6
MP
309 if (stack_guard_page_start(vma, start))
310 start += PAGE_SIZE;
311 end = vma->vm_end;
312 if (stack_guard_page_end(vma, end))
313 end -= PAGE_SIZE;
d7824370 314
652586df
TH
315 seq_setwidth(m, 25 + sizeof(void *) * 6 - 1);
316 seq_printf(m, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu ",
d7824370 317 start,
a09a79f6 318 end,
1da177e4
LT
319 flags & VM_READ ? 'r' : '-',
320 flags & VM_WRITE ? 'w' : '-',
321 flags & VM_EXEC ? 'x' : '-',
322 flags & VM_MAYSHARE ? 's' : 'p',
6260a4b0 323 pgoff,
652586df 324 MAJOR(dev), MINOR(dev), ino);
1da177e4
LT
325
326 /*
327 * Print the dentry name for named mappings, and a
328 * special [heap] marker for the heap:
329 */
e070ad49 330 if (file) {
652586df 331 seq_pad(m, ' ');
2726d566 332 seq_file_path(m, file, "\n");
b7643757
SP
333 goto done;
334 }
335
78d683e8
AL
336 if (vma->vm_ops && vma->vm_ops->name) {
337 name = vma->vm_ops->name(vma);
338 if (name)
339 goto done;
340 }
341
b7643757
SP
342 name = arch_vma_name(vma);
343 if (!name) {
b7643757
SP
344 if (!mm) {
345 name = "[vdso]";
346 goto done;
347 }
348
349 if (vma->vm_start <= mm->brk &&
350 vma->vm_end >= mm->start_brk) {
351 name = "[heap]";
352 goto done;
353 }
354
65376df5
JW
355 if (is_stack(priv, vma, is_pid))
356 name = "[stack]";
b7643757
SP
357 }
358
359done:
360 if (name) {
652586df 361 seq_pad(m, ' ');
b7643757 362 seq_puts(m, name);
1da177e4
LT
363 }
364 seq_putc(m, '\n');
7c88db0c
JK
365}
366
b7643757 367static int show_map(struct seq_file *m, void *v, int is_pid)
7c88db0c 368{
ebb6cdde 369 show_map_vma(m, v, is_pid);
b8c20a9b 370 m_cache_vma(m, v);
1da177e4
LT
371 return 0;
372}
373
b7643757
SP
374static int show_pid_map(struct seq_file *m, void *v)
375{
376 return show_map(m, v, 1);
377}
378
379static int show_tid_map(struct seq_file *m, void *v)
380{
381 return show_map(m, v, 0);
382}
383
03a44825 384static const struct seq_operations proc_pid_maps_op = {
a6198797
MM
385 .start = m_start,
386 .next = m_next,
387 .stop = m_stop,
b7643757
SP
388 .show = show_pid_map
389};
390
391static const struct seq_operations proc_tid_maps_op = {
392 .start = m_start,
393 .next = m_next,
394 .stop = m_stop,
395 .show = show_tid_map
a6198797
MM
396};
397
b7643757 398static int pid_maps_open(struct inode *inode, struct file *file)
a6198797
MM
399{
400 return do_maps_open(inode, file, &proc_pid_maps_op);
401}
402
b7643757
SP
403static int tid_maps_open(struct inode *inode, struct file *file)
404{
405 return do_maps_open(inode, file, &proc_tid_maps_op);
406}
407
408const struct file_operations proc_pid_maps_operations = {
409 .open = pid_maps_open,
410 .read = seq_read,
411 .llseek = seq_lseek,
29a40ace 412 .release = proc_map_release,
b7643757
SP
413};
414
415const struct file_operations proc_tid_maps_operations = {
416 .open = tid_maps_open,
a6198797
MM
417 .read = seq_read,
418 .llseek = seq_lseek,
29a40ace 419 .release = proc_map_release,
a6198797
MM
420};
421
422/*
423 * Proportional Set Size(PSS): my share of RSS.
424 *
425 * PSS of a process is the count of pages it has in memory, where each
426 * page is divided by the number of processes sharing it. So if a
427 * process has 1000 pages all to itself, and 1000 shared with one other
428 * process, its PSS will be 1500.
429 *
430 * To keep (accumulated) division errors low, we adopt a 64bit
431 * fixed-point pss counter to minimize division errors. So (pss >>
432 * PSS_SHIFT) would be the real byte count.
433 *
434 * A shift of 12 before division means (assuming 4K page size):
435 * - 1M 3-user-pages add up to 8KB errors;
436 * - supports mapcount up to 2^24, or 16M;
437 * - supports PSS up to 2^52 bytes, or 4PB.
438 */
439#define PSS_SHIFT 12
440
1e883281 441#ifdef CONFIG_PROC_PAGE_MONITOR
214e471f 442struct mem_size_stats {
a6198797
MM
443 unsigned long resident;
444 unsigned long shared_clean;
445 unsigned long shared_dirty;
446 unsigned long private_clean;
447 unsigned long private_dirty;
448 unsigned long referenced;
b40d4f84 449 unsigned long anonymous;
4031a219 450 unsigned long anonymous_thp;
65c45377 451 unsigned long shmem_thp;
214e471f 452 unsigned long swap;
25ee01a2
NH
453 unsigned long shared_hugetlb;
454 unsigned long private_hugetlb;
a6198797 455 u64 pss;
8334b962 456 u64 swap_pss;
c261e7d9 457 bool check_shmem_swap;
a6198797
MM
458};
459
c164e038 460static void smaps_account(struct mem_size_stats *mss, struct page *page,
afd9883f 461 bool compound, bool young, bool dirty)
c164e038 462{
f4be6153 463 int i, nr = compound ? 1 << compound_order(page) : 1;
afd9883f 464 unsigned long size = nr * PAGE_SIZE;
c164e038
KS
465
466 if (PageAnon(page))
467 mss->anonymous += size;
468
469 mss->resident += size;
470 /* Accumulate the size in pages that have been accessed. */
33c3fc71 471 if (young || page_is_young(page) || PageReferenced(page))
c164e038 472 mss->referenced += size;
c164e038 473
afd9883f
KS
474 /*
475 * page_count(page) == 1 guarantees the page is mapped exactly once.
476 * If any subpage of the compound page mapped with PTE it would elevate
477 * page_count().
478 */
479 if (page_count(page) == 1) {
c164e038
KS
480 if (dirty || PageDirty(page))
481 mss->private_dirty += size;
482 else
483 mss->private_clean += size;
484 mss->pss += (u64)size << PSS_SHIFT;
afd9883f
KS
485 return;
486 }
487
488 for (i = 0; i < nr; i++, page++) {
489 int mapcount = page_mapcount(page);
490
491 if (mapcount >= 2) {
492 if (dirty || PageDirty(page))
493 mss->shared_dirty += PAGE_SIZE;
494 else
495 mss->shared_clean += PAGE_SIZE;
496 mss->pss += (PAGE_SIZE << PSS_SHIFT) / mapcount;
497 } else {
498 if (dirty || PageDirty(page))
499 mss->private_dirty += PAGE_SIZE;
500 else
501 mss->private_clean += PAGE_SIZE;
502 mss->pss += PAGE_SIZE << PSS_SHIFT;
503 }
c164e038
KS
504 }
505}
ae11c4d9 506
c261e7d9 507#ifdef CONFIG_SHMEM
c261e7d9
VB
508static int smaps_pte_hole(unsigned long addr, unsigned long end,
509 struct mm_walk *walk)
510{
511 struct mem_size_stats *mss = walk->private;
512
48131e03
VB
513 mss->swap += shmem_partial_swap_usage(
514 walk->vma->vm_file->f_mapping, addr, end);
c261e7d9
VB
515
516 return 0;
517}
c261e7d9
VB
518#endif
519
c164e038
KS
520static void smaps_pte_entry(pte_t *pte, unsigned long addr,
521 struct mm_walk *walk)
ae11c4d9
DH
522{
523 struct mem_size_stats *mss = walk->private;
14eb6fdd 524 struct vm_area_struct *vma = walk->vma;
b1d4d9e0 525 struct page *page = NULL;
ae11c4d9 526
c164e038
KS
527 if (pte_present(*pte)) {
528 page = vm_normal_page(vma, addr, *pte);
529 } else if (is_swap_pte(*pte)) {
530 swp_entry_t swpent = pte_to_swp_entry(*pte);
ae11c4d9 531
8334b962
MK
532 if (!non_swap_entry(swpent)) {
533 int mapcount;
534
c164e038 535 mss->swap += PAGE_SIZE;
8334b962
MK
536 mapcount = swp_swapcount(swpent);
537 if (mapcount >= 2) {
538 u64 pss_delta = (u64)PAGE_SIZE << PSS_SHIFT;
539
540 do_div(pss_delta, mapcount);
541 mss->swap_pss += pss_delta;
542 } else {
543 mss->swap_pss += (u64)PAGE_SIZE << PSS_SHIFT;
544 }
545 } else if (is_migration_entry(swpent))
b1d4d9e0 546 page = migration_entry_to_page(swpent);
c261e7d9
VB
547 } else if (unlikely(IS_ENABLED(CONFIG_SHMEM) && mss->check_shmem_swap
548 && pte_none(*pte))) {
48131e03
VB
549 page = find_get_entry(vma->vm_file->f_mapping,
550 linear_page_index(vma, addr));
551 if (!page)
552 return;
553
554 if (radix_tree_exceptional_entry(page))
555 mss->swap += PAGE_SIZE;
556 else
09cbfeaf 557 put_page(page);
48131e03
VB
558
559 return;
b1d4d9e0 560 }
ae11c4d9 561
ae11c4d9
DH
562 if (!page)
563 return;
afd9883f
KS
564
565 smaps_account(mss, page, false, pte_young(*pte), pte_dirty(*pte));
ae11c4d9
DH
566}
567
c164e038
KS
568#ifdef CONFIG_TRANSPARENT_HUGEPAGE
569static void smaps_pmd_entry(pmd_t *pmd, unsigned long addr,
570 struct mm_walk *walk)
571{
572 struct mem_size_stats *mss = walk->private;
14eb6fdd 573 struct vm_area_struct *vma = walk->vma;
c164e038
KS
574 struct page *page;
575
576 /* FOLL_DUMP will return -EFAULT on huge zero page */
577 page = follow_trans_huge_pmd(vma, addr, pmd, FOLL_DUMP);
578 if (IS_ERR_OR_NULL(page))
579 return;
65c45377
KS
580 if (PageAnon(page))
581 mss->anonymous_thp += HPAGE_PMD_SIZE;
582 else if (PageSwapBacked(page))
583 mss->shmem_thp += HPAGE_PMD_SIZE;
ca120cf6
DW
584 else if (is_zone_device_page(page))
585 /* pass */;
65c45377
KS
586 else
587 VM_BUG_ON_PAGE(1, page);
afd9883f 588 smaps_account(mss, page, true, pmd_young(*pmd), pmd_dirty(*pmd));
c164e038
KS
589}
590#else
591static void smaps_pmd_entry(pmd_t *pmd, unsigned long addr,
592 struct mm_walk *walk)
593{
594}
595#endif
596
b3ae5acb 597static int smaps_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
2165009b 598 struct mm_walk *walk)
e070ad49 599{
14eb6fdd 600 struct vm_area_struct *vma = walk->vma;
ae11c4d9 601 pte_t *pte;
705e87c0 602 spinlock_t *ptl;
e070ad49 603
b6ec57f4
KS
604 ptl = pmd_trans_huge_lock(pmd, vma);
605 if (ptl) {
c164e038 606 smaps_pmd_entry(pmd, addr, walk);
bf929152 607 spin_unlock(ptl);
025c5b24 608 return 0;
22e057c5 609 }
1a5a9906
AA
610
611 if (pmd_trans_unstable(pmd))
612 return 0;
22e057c5
DH
613 /*
614 * The mmap_sem held all the way back in m_start() is what
615 * keeps khugepaged out of here and from collapsing things
616 * in here.
617 */
705e87c0 618 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
ae11c4d9 619 for (; addr != end; pte++, addr += PAGE_SIZE)
c164e038 620 smaps_pte_entry(pte, addr, walk);
705e87c0
HD
621 pte_unmap_unlock(pte - 1, ptl);
622 cond_resched();
b3ae5acb 623 return 0;
e070ad49
ML
624}
625
834f82e2
CG
626static void show_smap_vma_flags(struct seq_file *m, struct vm_area_struct *vma)
627{
628 /*
629 * Don't forget to update Documentation/ on changes.
630 */
631 static const char mnemonics[BITS_PER_LONG][2] = {
632 /*
633 * In case if we meet a flag we don't know about.
634 */
635 [0 ... (BITS_PER_LONG-1)] = "??",
636
637 [ilog2(VM_READ)] = "rd",
638 [ilog2(VM_WRITE)] = "wr",
639 [ilog2(VM_EXEC)] = "ex",
640 [ilog2(VM_SHARED)] = "sh",
641 [ilog2(VM_MAYREAD)] = "mr",
642 [ilog2(VM_MAYWRITE)] = "mw",
643 [ilog2(VM_MAYEXEC)] = "me",
644 [ilog2(VM_MAYSHARE)] = "ms",
645 [ilog2(VM_GROWSDOWN)] = "gd",
646 [ilog2(VM_PFNMAP)] = "pf",
647 [ilog2(VM_DENYWRITE)] = "dw",
4aae7e43
QR
648#ifdef CONFIG_X86_INTEL_MPX
649 [ilog2(VM_MPX)] = "mp",
650#endif
834f82e2
CG
651 [ilog2(VM_LOCKED)] = "lo",
652 [ilog2(VM_IO)] = "io",
653 [ilog2(VM_SEQ_READ)] = "sr",
654 [ilog2(VM_RAND_READ)] = "rr",
655 [ilog2(VM_DONTCOPY)] = "dc",
656 [ilog2(VM_DONTEXPAND)] = "de",
657 [ilog2(VM_ACCOUNT)] = "ac",
658 [ilog2(VM_NORESERVE)] = "nr",
659 [ilog2(VM_HUGETLB)] = "ht",
834f82e2
CG
660 [ilog2(VM_ARCH_1)] = "ar",
661 [ilog2(VM_DONTDUMP)] = "dd",
ec8e41ae
NH
662#ifdef CONFIG_MEM_SOFT_DIRTY
663 [ilog2(VM_SOFTDIRTY)] = "sd",
664#endif
834f82e2
CG
665 [ilog2(VM_MIXEDMAP)] = "mm",
666 [ilog2(VM_HUGEPAGE)] = "hg",
667 [ilog2(VM_NOHUGEPAGE)] = "nh",
668 [ilog2(VM_MERGEABLE)] = "mg",
16ba6f81
AA
669 [ilog2(VM_UFFD_MISSING)]= "um",
670 [ilog2(VM_UFFD_WP)] = "uw",
c1192f84
DH
671#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
672 /* These come out via ProtectionKey: */
673 [ilog2(VM_PKEY_BIT0)] = "",
674 [ilog2(VM_PKEY_BIT1)] = "",
675 [ilog2(VM_PKEY_BIT2)] = "",
676 [ilog2(VM_PKEY_BIT3)] = "",
677#endif
834f82e2
CG
678 };
679 size_t i;
680
681 seq_puts(m, "VmFlags: ");
682 for (i = 0; i < BITS_PER_LONG; i++) {
c1192f84
DH
683 if (!mnemonics[i][0])
684 continue;
834f82e2
CG
685 if (vma->vm_flags & (1UL << i)) {
686 seq_printf(m, "%c%c ",
687 mnemonics[i][0], mnemonics[i][1]);
688 }
689 }
690 seq_putc(m, '\n');
691}
692
25ee01a2
NH
693#ifdef CONFIG_HUGETLB_PAGE
694static int smaps_hugetlb_range(pte_t *pte, unsigned long hmask,
695 unsigned long addr, unsigned long end,
696 struct mm_walk *walk)
697{
698 struct mem_size_stats *mss = walk->private;
699 struct vm_area_struct *vma = walk->vma;
700 struct page *page = NULL;
701
702 if (pte_present(*pte)) {
703 page = vm_normal_page(vma, addr, *pte);
704 } else if (is_swap_pte(*pte)) {
705 swp_entry_t swpent = pte_to_swp_entry(*pte);
706
707 if (is_migration_entry(swpent))
708 page = migration_entry_to_page(swpent);
709 }
710 if (page) {
711 int mapcount = page_mapcount(page);
712
713 if (mapcount >= 2)
714 mss->shared_hugetlb += huge_page_size(hstate_vma(vma));
715 else
716 mss->private_hugetlb += huge_page_size(hstate_vma(vma));
717 }
718 return 0;
719}
720#endif /* HUGETLB_PAGE */
721
c1192f84
DH
722void __weak arch_show_smap(struct seq_file *m, struct vm_area_struct *vma)
723{
724}
725
b7643757 726static int show_smap(struct seq_file *m, void *v, int is_pid)
e070ad49
ML
727{
728 struct vm_area_struct *vma = v;
e070ad49 729 struct mem_size_stats mss;
2165009b
DH
730 struct mm_walk smaps_walk = {
731 .pmd_entry = smaps_pte_range,
25ee01a2
NH
732#ifdef CONFIG_HUGETLB_PAGE
733 .hugetlb_entry = smaps_hugetlb_range,
734#endif
2165009b
DH
735 .mm = vma->vm_mm,
736 .private = &mss,
737 };
e070ad49
ML
738
739 memset(&mss, 0, sizeof mss);
c261e7d9
VB
740
741#ifdef CONFIG_SHMEM
742 if (vma->vm_file && shmem_mapping(vma->vm_file->f_mapping)) {
6a15a370
VB
743 /*
744 * For shared or readonly shmem mappings we know that all
745 * swapped out pages belong to the shmem object, and we can
746 * obtain the swap value much more efficiently. For private
747 * writable mappings, we might have COW pages that are
748 * not affected by the parent swapped out pages of the shmem
749 * object, so we have to distinguish them during the page walk.
750 * Unless we know that the shmem object (or the part mapped by
751 * our VMA) has no swapped out pages at all.
752 */
753 unsigned long shmem_swapped = shmem_swap_usage(vma);
754
755 if (!shmem_swapped || (vma->vm_flags & VM_SHARED) ||
756 !(vma->vm_flags & VM_WRITE)) {
757 mss.swap = shmem_swapped;
758 } else {
759 mss.check_shmem_swap = true;
760 smaps_walk.pte_hole = smaps_pte_hole;
761 }
c261e7d9
VB
762 }
763#endif
764
d82ef020 765 /* mmap_sem is held in m_start */
14eb6fdd 766 walk_page_vma(vma, &smaps_walk);
4752c369 767
b7643757 768 show_map_vma(m, vma, is_pid);
4752c369
MM
769
770 seq_printf(m,
771 "Size: %8lu kB\n"
772 "Rss: %8lu kB\n"
773 "Pss: %8lu kB\n"
774 "Shared_Clean: %8lu kB\n"
775 "Shared_Dirty: %8lu kB\n"
776 "Private_Clean: %8lu kB\n"
777 "Private_Dirty: %8lu kB\n"
214e471f 778 "Referenced: %8lu kB\n"
b40d4f84 779 "Anonymous: %8lu kB\n"
4031a219 780 "AnonHugePages: %8lu kB\n"
65c45377 781 "ShmemPmdMapped: %8lu kB\n"
25ee01a2
NH
782 "Shared_Hugetlb: %8lu kB\n"
783 "Private_Hugetlb: %7lu kB\n"
08fba699 784 "Swap: %8lu kB\n"
8334b962 785 "SwapPss: %8lu kB\n"
3340289d 786 "KernelPageSize: %8lu kB\n"
2d90508f
NK
787 "MMUPageSize: %8lu kB\n"
788 "Locked: %8lu kB\n",
4752c369
MM
789 (vma->vm_end - vma->vm_start) >> 10,
790 mss.resident >> 10,
791 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)),
792 mss.shared_clean >> 10,
793 mss.shared_dirty >> 10,
794 mss.private_clean >> 10,
795 mss.private_dirty >> 10,
214e471f 796 mss.referenced >> 10,
b40d4f84 797 mss.anonymous >> 10,
4031a219 798 mss.anonymous_thp >> 10,
65c45377 799 mss.shmem_thp >> 10,
25ee01a2
NH
800 mss.shared_hugetlb >> 10,
801 mss.private_hugetlb >> 10,
08fba699 802 mss.swap >> 10,
8334b962 803 (unsigned long)(mss.swap_pss >> (10 + PSS_SHIFT)),
3340289d 804 vma_kernel_pagesize(vma) >> 10,
2d90508f
NK
805 vma_mmu_pagesize(vma) >> 10,
806 (vma->vm_flags & VM_LOCKED) ?
807 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)) : 0);
4752c369 808
c1192f84 809 arch_show_smap(m, vma);
834f82e2 810 show_smap_vma_flags(m, vma);
b8c20a9b 811 m_cache_vma(m, vma);
7c88db0c 812 return 0;
e070ad49
ML
813}
814
b7643757
SP
815static int show_pid_smap(struct seq_file *m, void *v)
816{
817 return show_smap(m, v, 1);
818}
819
820static int show_tid_smap(struct seq_file *m, void *v)
821{
822 return show_smap(m, v, 0);
823}
824
03a44825 825static const struct seq_operations proc_pid_smaps_op = {
a6198797
MM
826 .start = m_start,
827 .next = m_next,
828 .stop = m_stop,
b7643757
SP
829 .show = show_pid_smap
830};
831
832static const struct seq_operations proc_tid_smaps_op = {
833 .start = m_start,
834 .next = m_next,
835 .stop = m_stop,
836 .show = show_tid_smap
a6198797
MM
837};
838
b7643757 839static int pid_smaps_open(struct inode *inode, struct file *file)
a6198797
MM
840{
841 return do_maps_open(inode, file, &proc_pid_smaps_op);
842}
843
b7643757
SP
844static int tid_smaps_open(struct inode *inode, struct file *file)
845{
846 return do_maps_open(inode, file, &proc_tid_smaps_op);
847}
848
849const struct file_operations proc_pid_smaps_operations = {
850 .open = pid_smaps_open,
851 .read = seq_read,
852 .llseek = seq_lseek,
29a40ace 853 .release = proc_map_release,
b7643757
SP
854};
855
856const struct file_operations proc_tid_smaps_operations = {
857 .open = tid_smaps_open,
a6198797
MM
858 .read = seq_read,
859 .llseek = seq_lseek,
29a40ace 860 .release = proc_map_release,
a6198797
MM
861};
862
040fa020
PE
863enum clear_refs_types {
864 CLEAR_REFS_ALL = 1,
865 CLEAR_REFS_ANON,
866 CLEAR_REFS_MAPPED,
0f8975ec 867 CLEAR_REFS_SOFT_DIRTY,
695f0559 868 CLEAR_REFS_MM_HIWATER_RSS,
040fa020
PE
869 CLEAR_REFS_LAST,
870};
871
af9de7eb 872struct clear_refs_private {
0f8975ec 873 enum clear_refs_types type;
af9de7eb
PE
874};
875
7d5b3bfa 876#ifdef CONFIG_MEM_SOFT_DIRTY
0f8975ec
PE
877static inline void clear_soft_dirty(struct vm_area_struct *vma,
878 unsigned long addr, pte_t *pte)
879{
0f8975ec
PE
880 /*
881 * The soft-dirty tracker uses #PF-s to catch writes
882 * to pages, so write-protect the pte as well. See the
883 * Documentation/vm/soft-dirty.txt for full description
884 * of how soft-dirty works.
885 */
886 pte_t ptent = *pte;
179ef71c
CG
887
888 if (pte_present(ptent)) {
326c2597 889 ptent = ptep_modify_prot_start(vma->vm_mm, addr, pte);
179ef71c 890 ptent = pte_wrprotect(ptent);
a7b76174 891 ptent = pte_clear_soft_dirty(ptent);
326c2597 892 ptep_modify_prot_commit(vma->vm_mm, addr, pte, ptent);
179ef71c
CG
893 } else if (is_swap_pte(ptent)) {
894 ptent = pte_swp_clear_soft_dirty(ptent);
326c2597 895 set_pte_at(vma->vm_mm, addr, pte, ptent);
179ef71c 896 }
0f8975ec 897}
5d3875a0
LD
898#else
899static inline void clear_soft_dirty(struct vm_area_struct *vma,
900 unsigned long addr, pte_t *pte)
901{
902}
903#endif
0f8975ec 904
5d3875a0 905#if defined(CONFIG_MEM_SOFT_DIRTY) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
7d5b3bfa
KS
906static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
907 unsigned long addr, pmd_t *pmdp)
908{
326c2597 909 pmd_t pmd = pmdp_huge_get_and_clear(vma->vm_mm, addr, pmdp);
7d5b3bfa
KS
910
911 pmd = pmd_wrprotect(pmd);
a7b76174 912 pmd = pmd_clear_soft_dirty(pmd);
7d5b3bfa 913
7d5b3bfa
KS
914 set_pmd_at(vma->vm_mm, addr, pmdp, pmd);
915}
7d5b3bfa 916#else
7d5b3bfa
KS
917static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
918 unsigned long addr, pmd_t *pmdp)
919{
920}
921#endif
922
a6198797 923static int clear_refs_pte_range(pmd_t *pmd, unsigned long addr,
2165009b 924 unsigned long end, struct mm_walk *walk)
a6198797 925{
af9de7eb 926 struct clear_refs_private *cp = walk->private;
5c64f52a 927 struct vm_area_struct *vma = walk->vma;
a6198797
MM
928 pte_t *pte, ptent;
929 spinlock_t *ptl;
930 struct page *page;
931
b6ec57f4
KS
932 ptl = pmd_trans_huge_lock(pmd, vma);
933 if (ptl) {
7d5b3bfa
KS
934 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
935 clear_soft_dirty_pmd(vma, addr, pmd);
936 goto out;
937 }
938
939 page = pmd_page(*pmd);
940
941 /* Clear accessed and referenced bits. */
942 pmdp_test_and_clear_young(vma, addr, pmd);
33c3fc71 943 test_and_clear_page_young(page);
7d5b3bfa
KS
944 ClearPageReferenced(page);
945out:
946 spin_unlock(ptl);
947 return 0;
948 }
949
1a5a9906
AA
950 if (pmd_trans_unstable(pmd))
951 return 0;
03319327 952
a6198797
MM
953 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
954 for (; addr != end; pte++, addr += PAGE_SIZE) {
955 ptent = *pte;
a6198797 956
0f8975ec
PE
957 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
958 clear_soft_dirty(vma, addr, pte);
959 continue;
960 }
961
179ef71c
CG
962 if (!pte_present(ptent))
963 continue;
964
a6198797
MM
965 page = vm_normal_page(vma, addr, ptent);
966 if (!page)
967 continue;
968
969 /* Clear accessed and referenced bits. */
970 ptep_test_and_clear_young(vma, addr, pte);
33c3fc71 971 test_and_clear_page_young(page);
a6198797
MM
972 ClearPageReferenced(page);
973 }
974 pte_unmap_unlock(pte - 1, ptl);
975 cond_resched();
976 return 0;
977}
978
5c64f52a
NH
979static int clear_refs_test_walk(unsigned long start, unsigned long end,
980 struct mm_walk *walk)
981{
982 struct clear_refs_private *cp = walk->private;
983 struct vm_area_struct *vma = walk->vma;
984
48684a65
NH
985 if (vma->vm_flags & VM_PFNMAP)
986 return 1;
987
5c64f52a
NH
988 /*
989 * Writing 1 to /proc/pid/clear_refs affects all pages.
990 * Writing 2 to /proc/pid/clear_refs only affects anonymous pages.
991 * Writing 3 to /proc/pid/clear_refs only affects file mapped pages.
992 * Writing 4 to /proc/pid/clear_refs affects all pages.
993 */
994 if (cp->type == CLEAR_REFS_ANON && vma->vm_file)
995 return 1;
996 if (cp->type == CLEAR_REFS_MAPPED && !vma->vm_file)
997 return 1;
998 return 0;
999}
1000
f248dcb3
MM
1001static ssize_t clear_refs_write(struct file *file, const char __user *buf,
1002 size_t count, loff_t *ppos)
b813e931 1003{
f248dcb3 1004 struct task_struct *task;
fb92a4b0 1005 char buffer[PROC_NUMBUF];
f248dcb3 1006 struct mm_struct *mm;
b813e931 1007 struct vm_area_struct *vma;
040fa020
PE
1008 enum clear_refs_types type;
1009 int itype;
0a8cb8e3 1010 int rv;
b813e931 1011
f248dcb3
MM
1012 memset(buffer, 0, sizeof(buffer));
1013 if (count > sizeof(buffer) - 1)
1014 count = sizeof(buffer) - 1;
1015 if (copy_from_user(buffer, buf, count))
1016 return -EFAULT;
040fa020 1017 rv = kstrtoint(strstrip(buffer), 10, &itype);
0a8cb8e3
AD
1018 if (rv < 0)
1019 return rv;
040fa020
PE
1020 type = (enum clear_refs_types)itype;
1021 if (type < CLEAR_REFS_ALL || type >= CLEAR_REFS_LAST)
f248dcb3 1022 return -EINVAL;
541c237c 1023
496ad9aa 1024 task = get_proc_task(file_inode(file));
f248dcb3
MM
1025 if (!task)
1026 return -ESRCH;
1027 mm = get_task_mm(task);
1028 if (mm) {
af9de7eb 1029 struct clear_refs_private cp = {
0f8975ec 1030 .type = type,
af9de7eb 1031 };
20cbc972
AM
1032 struct mm_walk clear_refs_walk = {
1033 .pmd_entry = clear_refs_pte_range,
5c64f52a 1034 .test_walk = clear_refs_test_walk,
20cbc972 1035 .mm = mm,
af9de7eb 1036 .private = &cp,
20cbc972 1037 };
695f0559
PC
1038
1039 if (type == CLEAR_REFS_MM_HIWATER_RSS) {
4e80153a
MH
1040 if (down_write_killable(&mm->mmap_sem)) {
1041 count = -EINTR;
1042 goto out_mm;
1043 }
1044
695f0559
PC
1045 /*
1046 * Writing 5 to /proc/pid/clear_refs resets the peak
1047 * resident set size to this mm's current rss value.
1048 */
695f0559
PC
1049 reset_mm_hiwater_rss(mm);
1050 up_write(&mm->mmap_sem);
1051 goto out_mm;
1052 }
1053
f248dcb3 1054 down_read(&mm->mmap_sem);
64e45507
PF
1055 if (type == CLEAR_REFS_SOFT_DIRTY) {
1056 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1057 if (!(vma->vm_flags & VM_SOFTDIRTY))
1058 continue;
1059 up_read(&mm->mmap_sem);
4e80153a
MH
1060 if (down_write_killable(&mm->mmap_sem)) {
1061 count = -EINTR;
1062 goto out_mm;
1063 }
64e45507
PF
1064 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1065 vma->vm_flags &= ~VM_SOFTDIRTY;
1066 vma_set_page_prot(vma);
1067 }
1068 downgrade_write(&mm->mmap_sem);
1069 break;
1070 }
0f8975ec 1071 mmu_notifier_invalidate_range_start(mm, 0, -1);
64e45507 1072 }
5c64f52a 1073 walk_page_range(0, ~0UL, &clear_refs_walk);
0f8975ec
PE
1074 if (type == CLEAR_REFS_SOFT_DIRTY)
1075 mmu_notifier_invalidate_range_end(mm, 0, -1);
f248dcb3
MM
1076 flush_tlb_mm(mm);
1077 up_read(&mm->mmap_sem);
695f0559 1078out_mm:
f248dcb3
MM
1079 mmput(mm);
1080 }
1081 put_task_struct(task);
fb92a4b0
VL
1082
1083 return count;
b813e931
DR
1084}
1085
f248dcb3
MM
1086const struct file_operations proc_clear_refs_operations = {
1087 .write = clear_refs_write,
6038f373 1088 .llseek = noop_llseek,
f248dcb3
MM
1089};
1090
092b50ba
NH
1091typedef struct {
1092 u64 pme;
1093} pagemap_entry_t;
1094
85863e47 1095struct pagemapread {
8c829622 1096 int pos, len; /* units: PM_ENTRY_BYTES, not bytes */
092b50ba 1097 pagemap_entry_t *buffer;
1c90308e 1098 bool show_pfn;
85863e47
MM
1099};
1100
5aaabe83
NH
1101#define PAGEMAP_WALK_SIZE (PMD_SIZE)
1102#define PAGEMAP_WALK_MASK (PMD_MASK)
1103
deb94544
KK
1104#define PM_ENTRY_BYTES sizeof(pagemap_entry_t)
1105#define PM_PFRAME_BITS 55
1106#define PM_PFRAME_MASK GENMASK_ULL(PM_PFRAME_BITS - 1, 0)
1107#define PM_SOFT_DIRTY BIT_ULL(55)
77bb499b 1108#define PM_MMAP_EXCLUSIVE BIT_ULL(56)
deb94544
KK
1109#define PM_FILE BIT_ULL(61)
1110#define PM_SWAP BIT_ULL(62)
1111#define PM_PRESENT BIT_ULL(63)
1112
85863e47
MM
1113#define PM_END_OF_BUFFER 1
1114
deb94544 1115static inline pagemap_entry_t make_pme(u64 frame, u64 flags)
092b50ba 1116{
deb94544 1117 return (pagemap_entry_t) { .pme = (frame & PM_PFRAME_MASK) | flags };
092b50ba
NH
1118}
1119
1120static int add_to_pagemap(unsigned long addr, pagemap_entry_t *pme,
85863e47
MM
1121 struct pagemapread *pm)
1122{
092b50ba 1123 pm->buffer[pm->pos++] = *pme;
d82ef020 1124 if (pm->pos >= pm->len)
aae8679b 1125 return PM_END_OF_BUFFER;
85863e47
MM
1126 return 0;
1127}
1128
1129static int pagemap_pte_hole(unsigned long start, unsigned long end,
2165009b 1130 struct mm_walk *walk)
85863e47 1131{
2165009b 1132 struct pagemapread *pm = walk->private;
68b5a652 1133 unsigned long addr = start;
85863e47 1134 int err = 0;
092b50ba 1135
68b5a652
PF
1136 while (addr < end) {
1137 struct vm_area_struct *vma = find_vma(walk->mm, addr);
deb94544 1138 pagemap_entry_t pme = make_pme(0, 0);
87e6d49a
PF
1139 /* End of address space hole, which we mark as non-present. */
1140 unsigned long hole_end;
68b5a652 1141
87e6d49a
PF
1142 if (vma)
1143 hole_end = min(end, vma->vm_start);
1144 else
1145 hole_end = end;
1146
1147 for (; addr < hole_end; addr += PAGE_SIZE) {
1148 err = add_to_pagemap(addr, &pme, pm);
1149 if (err)
1150 goto out;
68b5a652
PF
1151 }
1152
87e6d49a
PF
1153 if (!vma)
1154 break;
1155
1156 /* Addresses in the VMA. */
1157 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1158 pme = make_pme(0, PM_SOFT_DIRTY);
87e6d49a 1159 for (; addr < min(end, vma->vm_end); addr += PAGE_SIZE) {
68b5a652
PF
1160 err = add_to_pagemap(addr, &pme, pm);
1161 if (err)
1162 goto out;
1163 }
85863e47 1164 }
68b5a652 1165out:
85863e47
MM
1166 return err;
1167}
1168
deb94544 1169static pagemap_entry_t pte_to_pagemap_entry(struct pagemapread *pm,
052fb0d6 1170 struct vm_area_struct *vma, unsigned long addr, pte_t pte)
85863e47 1171{
deb94544 1172 u64 frame = 0, flags = 0;
052fb0d6 1173 struct page *page = NULL;
85863e47 1174
052fb0d6 1175 if (pte_present(pte)) {
1c90308e
KK
1176 if (pm->show_pfn)
1177 frame = pte_pfn(pte);
deb94544 1178 flags |= PM_PRESENT;
052fb0d6 1179 page = vm_normal_page(vma, addr, pte);
e9cdd6e7 1180 if (pte_soft_dirty(pte))
deb94544 1181 flags |= PM_SOFT_DIRTY;
052fb0d6 1182 } else if (is_swap_pte(pte)) {
179ef71c
CG
1183 swp_entry_t entry;
1184 if (pte_swp_soft_dirty(pte))
deb94544 1185 flags |= PM_SOFT_DIRTY;
179ef71c 1186 entry = pte_to_swp_entry(pte);
052fb0d6
KK
1187 frame = swp_type(entry) |
1188 (swp_offset(entry) << MAX_SWAPFILES_SHIFT);
deb94544 1189 flags |= PM_SWAP;
052fb0d6
KK
1190 if (is_migration_entry(entry))
1191 page = migration_entry_to_page(entry);
052fb0d6
KK
1192 }
1193
1194 if (page && !PageAnon(page))
1195 flags |= PM_FILE;
77bb499b
KK
1196 if (page && page_mapcount(page) == 1)
1197 flags |= PM_MMAP_EXCLUSIVE;
deb94544
KK
1198 if (vma->vm_flags & VM_SOFTDIRTY)
1199 flags |= PM_SOFT_DIRTY;
052fb0d6 1200
deb94544 1201 return make_pme(frame, flags);
bcf8039e
DH
1202}
1203
356515e7 1204static int pagemap_pmd_range(pmd_t *pmdp, unsigned long addr, unsigned long end,
2165009b 1205 struct mm_walk *walk)
85863e47 1206{
f995ece2 1207 struct vm_area_struct *vma = walk->vma;
2165009b 1208 struct pagemapread *pm = walk->private;
bf929152 1209 spinlock_t *ptl;
05fbf357 1210 pte_t *pte, *orig_pte;
85863e47
MM
1211 int err = 0;
1212
356515e7 1213#ifdef CONFIG_TRANSPARENT_HUGEPAGE
b6ec57f4
KS
1214 ptl = pmd_trans_huge_lock(pmdp, vma);
1215 if (ptl) {
356515e7
KK
1216 u64 flags = 0, frame = 0;
1217 pmd_t pmd = *pmdp;
0f8975ec 1218
356515e7 1219 if ((vma->vm_flags & VM_SOFTDIRTY) || pmd_soft_dirty(pmd))
deb94544 1220 flags |= PM_SOFT_DIRTY;
d9104d1c 1221
356515e7
KK
1222 /*
1223 * Currently pmd for thp is always present because thp
1224 * can not be swapped-out, migrated, or HWPOISONed
1225 * (split in such cases instead.)
1226 * This if-check is just to prepare for future implementation.
1227 */
1228 if (pmd_present(pmd)) {
77bb499b
KK
1229 struct page *page = pmd_page(pmd);
1230
1231 if (page_mapcount(page) == 1)
1232 flags |= PM_MMAP_EXCLUSIVE;
1233
356515e7 1234 flags |= PM_PRESENT;
1c90308e
KK
1235 if (pm->show_pfn)
1236 frame = pmd_pfn(pmd) +
1237 ((addr & ~PMD_MASK) >> PAGE_SHIFT);
356515e7
KK
1238 }
1239
025c5b24 1240 for (; addr != end; addr += PAGE_SIZE) {
356515e7 1241 pagemap_entry_t pme = make_pme(frame, flags);
025c5b24 1242
092b50ba 1243 err = add_to_pagemap(addr, &pme, pm);
025c5b24
NH
1244 if (err)
1245 break;
1c90308e 1246 if (pm->show_pfn && (flags & PM_PRESENT))
356515e7 1247 frame++;
5aaabe83 1248 }
bf929152 1249 spin_unlock(ptl);
025c5b24 1250 return err;
5aaabe83
NH
1251 }
1252
356515e7 1253 if (pmd_trans_unstable(pmdp))
45f83cef 1254 return 0;
356515e7 1255#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
81d0fa62 1256
f995ece2
NH
1257 /*
1258 * We can assume that @vma always points to a valid one and @end never
1259 * goes beyond vma->vm_end.
1260 */
356515e7 1261 orig_pte = pte = pte_offset_map_lock(walk->mm, pmdp, addr, &ptl);
f995ece2
NH
1262 for (; addr < end; pte++, addr += PAGE_SIZE) {
1263 pagemap_entry_t pme;
05fbf357 1264
deb94544 1265 pme = pte_to_pagemap_entry(pm, vma, addr, *pte);
f995ece2 1266 err = add_to_pagemap(addr, &pme, pm);
05fbf357 1267 if (err)
81d0fa62 1268 break;
85863e47 1269 }
f995ece2 1270 pte_unmap_unlock(orig_pte, ptl);
85863e47
MM
1271
1272 cond_resched();
1273
1274 return err;
1275}
1276
1a5cb814 1277#ifdef CONFIG_HUGETLB_PAGE
116354d1 1278/* This function walks within one hugetlb entry in the single call */
356515e7 1279static int pagemap_hugetlb_range(pte_t *ptep, unsigned long hmask,
116354d1
NH
1280 unsigned long addr, unsigned long end,
1281 struct mm_walk *walk)
5dc37642 1282{
5dc37642 1283 struct pagemapread *pm = walk->private;
f995ece2 1284 struct vm_area_struct *vma = walk->vma;
356515e7 1285 u64 flags = 0, frame = 0;
5dc37642 1286 int err = 0;
356515e7 1287 pte_t pte;
5dc37642 1288
f995ece2 1289 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1290 flags |= PM_SOFT_DIRTY;
d9104d1c 1291
356515e7
KK
1292 pte = huge_ptep_get(ptep);
1293 if (pte_present(pte)) {
1294 struct page *page = pte_page(pte);
1295
1296 if (!PageAnon(page))
1297 flags |= PM_FILE;
1298
77bb499b
KK
1299 if (page_mapcount(page) == 1)
1300 flags |= PM_MMAP_EXCLUSIVE;
1301
356515e7 1302 flags |= PM_PRESENT;
1c90308e
KK
1303 if (pm->show_pfn)
1304 frame = pte_pfn(pte) +
1305 ((addr & ~hmask) >> PAGE_SHIFT);
356515e7
KK
1306 }
1307
5dc37642 1308 for (; addr != end; addr += PAGE_SIZE) {
356515e7
KK
1309 pagemap_entry_t pme = make_pme(frame, flags);
1310
092b50ba 1311 err = add_to_pagemap(addr, &pme, pm);
5dc37642
NH
1312 if (err)
1313 return err;
1c90308e 1314 if (pm->show_pfn && (flags & PM_PRESENT))
356515e7 1315 frame++;
5dc37642
NH
1316 }
1317
1318 cond_resched();
1319
1320 return err;
1321}
1a5cb814 1322#endif /* HUGETLB_PAGE */
5dc37642 1323
85863e47
MM
1324/*
1325 * /proc/pid/pagemap - an array mapping virtual pages to pfns
1326 *
f16278c6
HR
1327 * For each page in the address space, this file contains one 64-bit entry
1328 * consisting of the following:
1329 *
052fb0d6 1330 * Bits 0-54 page frame number (PFN) if present
f16278c6 1331 * Bits 0-4 swap type if swapped
052fb0d6 1332 * Bits 5-54 swap offset if swapped
deb94544 1333 * Bit 55 pte is soft-dirty (see Documentation/vm/soft-dirty.txt)
77bb499b
KK
1334 * Bit 56 page exclusively mapped
1335 * Bits 57-60 zero
052fb0d6 1336 * Bit 61 page is file-page or shared-anon
f16278c6
HR
1337 * Bit 62 page swapped
1338 * Bit 63 page present
1339 *
1340 * If the page is not present but in swap, then the PFN contains an
1341 * encoding of the swap file number and the page's offset into the
1342 * swap. Unmapped pages return a null PFN. This allows determining
85863e47
MM
1343 * precisely which pages are mapped (or in swap) and comparing mapped
1344 * pages between processes.
1345 *
1346 * Efficient users of this interface will use /proc/pid/maps to
1347 * determine which areas of memory are actually mapped and llseek to
1348 * skip over unmapped regions.
1349 */
1350static ssize_t pagemap_read(struct file *file, char __user *buf,
1351 size_t count, loff_t *ppos)
1352{
a06db751 1353 struct mm_struct *mm = file->private_data;
85863e47 1354 struct pagemapread pm;
ee1e6ab6 1355 struct mm_walk pagemap_walk = {};
5d7e0d2b
AM
1356 unsigned long src;
1357 unsigned long svpfn;
1358 unsigned long start_vaddr;
1359 unsigned long end_vaddr;
a06db751 1360 int ret = 0, copied = 0;
85863e47 1361
a06db751 1362 if (!mm || !atomic_inc_not_zero(&mm->mm_users))
85863e47
MM
1363 goto out;
1364
85863e47
MM
1365 ret = -EINVAL;
1366 /* file position must be aligned */
aae8679b 1367 if ((*ppos % PM_ENTRY_BYTES) || (count % PM_ENTRY_BYTES))
a06db751 1368 goto out_mm;
85863e47
MM
1369
1370 ret = 0;
08161786 1371 if (!count)
a06db751 1372 goto out_mm;
08161786 1373
1c90308e
KK
1374 /* do not disclose physical addresses: attack vector */
1375 pm.show_pfn = file_ns_capable(file, &init_user_ns, CAP_SYS_ADMIN);
1376
8c829622 1377 pm.len = (PAGEMAP_WALK_SIZE >> PAGE_SHIFT);
1378 pm.buffer = kmalloc(pm.len * PM_ENTRY_BYTES, GFP_TEMPORARY);
5d7e0d2b 1379 ret = -ENOMEM;
d82ef020 1380 if (!pm.buffer)
a06db751 1381 goto out_mm;
85863e47 1382
356515e7 1383 pagemap_walk.pmd_entry = pagemap_pmd_range;
5d7e0d2b 1384 pagemap_walk.pte_hole = pagemap_pte_hole;
1a5cb814 1385#ifdef CONFIG_HUGETLB_PAGE
5dc37642 1386 pagemap_walk.hugetlb_entry = pagemap_hugetlb_range;
1a5cb814 1387#endif
5d7e0d2b
AM
1388 pagemap_walk.mm = mm;
1389 pagemap_walk.private = &pm;
1390
1391 src = *ppos;
1392 svpfn = src / PM_ENTRY_BYTES;
1393 start_vaddr = svpfn << PAGE_SHIFT;
a06db751 1394 end_vaddr = mm->task_size;
5d7e0d2b
AM
1395
1396 /* watch out for wraparound */
a06db751 1397 if (svpfn > mm->task_size >> PAGE_SHIFT)
5d7e0d2b
AM
1398 start_vaddr = end_vaddr;
1399
1400 /*
1401 * The odds are that this will stop walking way
1402 * before end_vaddr, because the length of the
1403 * user buffer is tracked in "pm", and the walk
1404 * will stop when we hit the end of the buffer.
1405 */
d82ef020
KH
1406 ret = 0;
1407 while (count && (start_vaddr < end_vaddr)) {
1408 int len;
1409 unsigned long end;
1410
1411 pm.pos = 0;
ea251c1d 1412 end = (start_vaddr + PAGEMAP_WALK_SIZE) & PAGEMAP_WALK_MASK;
d82ef020
KH
1413 /* overflow ? */
1414 if (end < start_vaddr || end > end_vaddr)
1415 end = end_vaddr;
1416 down_read(&mm->mmap_sem);
1417 ret = walk_page_range(start_vaddr, end, &pagemap_walk);
1418 up_read(&mm->mmap_sem);
1419 start_vaddr = end;
1420
1421 len = min(count, PM_ENTRY_BYTES * pm.pos);
309361e0 1422 if (copy_to_user(buf, pm.buffer, len)) {
d82ef020 1423 ret = -EFAULT;
a06db751 1424 goto out_free;
d82ef020
KH
1425 }
1426 copied += len;
1427 buf += len;
1428 count -= len;
85863e47 1429 }
d82ef020
KH
1430 *ppos += copied;
1431 if (!ret || ret == PM_END_OF_BUFFER)
1432 ret = copied;
1433
98bc93e5
KM
1434out_free:
1435 kfree(pm.buffer);
a06db751
KK
1436out_mm:
1437 mmput(mm);
85863e47
MM
1438out:
1439 return ret;
1440}
1441
541c237c
PE
1442static int pagemap_open(struct inode *inode, struct file *file)
1443{
a06db751
KK
1444 struct mm_struct *mm;
1445
a06db751
KK
1446 mm = proc_mem_open(inode, PTRACE_MODE_READ);
1447 if (IS_ERR(mm))
1448 return PTR_ERR(mm);
1449 file->private_data = mm;
1450 return 0;
1451}
1452
1453static int pagemap_release(struct inode *inode, struct file *file)
1454{
1455 struct mm_struct *mm = file->private_data;
1456
1457 if (mm)
1458 mmdrop(mm);
541c237c
PE
1459 return 0;
1460}
1461
85863e47
MM
1462const struct file_operations proc_pagemap_operations = {
1463 .llseek = mem_lseek, /* borrow this */
1464 .read = pagemap_read,
541c237c 1465 .open = pagemap_open,
a06db751 1466 .release = pagemap_release,
85863e47 1467};
1e883281 1468#endif /* CONFIG_PROC_PAGE_MONITOR */
85863e47 1469
6e21c8f1 1470#ifdef CONFIG_NUMA
6e21c8f1 1471
f69ff943 1472struct numa_maps {
f69ff943
SW
1473 unsigned long pages;
1474 unsigned long anon;
1475 unsigned long active;
1476 unsigned long writeback;
1477 unsigned long mapcount_max;
1478 unsigned long dirty;
1479 unsigned long swapcache;
1480 unsigned long node[MAX_NUMNODES];
1481};
1482
5b52fc89
SW
1483struct numa_maps_private {
1484 struct proc_maps_private proc_maps;
1485 struct numa_maps md;
1486};
1487
eb4866d0
DH
1488static void gather_stats(struct page *page, struct numa_maps *md, int pte_dirty,
1489 unsigned long nr_pages)
f69ff943
SW
1490{
1491 int count = page_mapcount(page);
1492
eb4866d0 1493 md->pages += nr_pages;
f69ff943 1494 if (pte_dirty || PageDirty(page))
eb4866d0 1495 md->dirty += nr_pages;
f69ff943
SW
1496
1497 if (PageSwapCache(page))
eb4866d0 1498 md->swapcache += nr_pages;
f69ff943
SW
1499
1500 if (PageActive(page) || PageUnevictable(page))
eb4866d0 1501 md->active += nr_pages;
f69ff943
SW
1502
1503 if (PageWriteback(page))
eb4866d0 1504 md->writeback += nr_pages;
f69ff943
SW
1505
1506 if (PageAnon(page))
eb4866d0 1507 md->anon += nr_pages;
f69ff943
SW
1508
1509 if (count > md->mapcount_max)
1510 md->mapcount_max = count;
1511
eb4866d0 1512 md->node[page_to_nid(page)] += nr_pages;
f69ff943
SW
1513}
1514
3200a8aa
DH
1515static struct page *can_gather_numa_stats(pte_t pte, struct vm_area_struct *vma,
1516 unsigned long addr)
1517{
1518 struct page *page;
1519 int nid;
1520
1521 if (!pte_present(pte))
1522 return NULL;
1523
1524 page = vm_normal_page(vma, addr, pte);
1525 if (!page)
1526 return NULL;
1527
1528 if (PageReserved(page))
1529 return NULL;
1530
1531 nid = page_to_nid(page);
4ff1b2c2 1532 if (!node_isset(nid, node_states[N_MEMORY]))
3200a8aa
DH
1533 return NULL;
1534
1535 return page;
1536}
1537
28093f9f
GS
1538#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1539static struct page *can_gather_numa_stats_pmd(pmd_t pmd,
1540 struct vm_area_struct *vma,
1541 unsigned long addr)
1542{
1543 struct page *page;
1544 int nid;
1545
1546 if (!pmd_present(pmd))
1547 return NULL;
1548
1549 page = vm_normal_page_pmd(vma, addr, pmd);
1550 if (!page)
1551 return NULL;
1552
1553 if (PageReserved(page))
1554 return NULL;
1555
1556 nid = page_to_nid(page);
1557 if (!node_isset(nid, node_states[N_MEMORY]))
1558 return NULL;
1559
1560 return page;
1561}
1562#endif
1563
f69ff943
SW
1564static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
1565 unsigned long end, struct mm_walk *walk)
1566{
d85f4d6d
NH
1567 struct numa_maps *md = walk->private;
1568 struct vm_area_struct *vma = walk->vma;
f69ff943
SW
1569 spinlock_t *ptl;
1570 pte_t *orig_pte;
1571 pte_t *pte;
1572
28093f9f 1573#ifdef CONFIG_TRANSPARENT_HUGEPAGE
b6ec57f4
KS
1574 ptl = pmd_trans_huge_lock(pmd, vma);
1575 if (ptl) {
025c5b24
NH
1576 struct page *page;
1577
28093f9f 1578 page = can_gather_numa_stats_pmd(*pmd, vma, addr);
025c5b24 1579 if (page)
28093f9f 1580 gather_stats(page, md, pmd_dirty(*pmd),
025c5b24 1581 HPAGE_PMD_SIZE/PAGE_SIZE);
bf929152 1582 spin_unlock(ptl);
025c5b24 1583 return 0;
32ef4384
DH
1584 }
1585
1a5a9906
AA
1586 if (pmd_trans_unstable(pmd))
1587 return 0;
28093f9f 1588#endif
f69ff943
SW
1589 orig_pte = pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
1590 do {
d85f4d6d 1591 struct page *page = can_gather_numa_stats(*pte, vma, addr);
f69ff943
SW
1592 if (!page)
1593 continue;
eb4866d0 1594 gather_stats(page, md, pte_dirty(*pte), 1);
f69ff943
SW
1595
1596 } while (pte++, addr += PAGE_SIZE, addr != end);
1597 pte_unmap_unlock(orig_pte, ptl);
1598 return 0;
1599}
1600#ifdef CONFIG_HUGETLB_PAGE
632fd60f 1601static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1602 unsigned long addr, unsigned long end, struct mm_walk *walk)
1603{
5c2ff95e 1604 pte_t huge_pte = huge_ptep_get(pte);
f69ff943
SW
1605 struct numa_maps *md;
1606 struct page *page;
1607
5c2ff95e 1608 if (!pte_present(huge_pte))
f69ff943
SW
1609 return 0;
1610
5c2ff95e 1611 page = pte_page(huge_pte);
f69ff943
SW
1612 if (!page)
1613 return 0;
1614
1615 md = walk->private;
5c2ff95e 1616 gather_stats(page, md, pte_dirty(huge_pte), 1);
f69ff943
SW
1617 return 0;
1618}
1619
1620#else
632fd60f 1621static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1622 unsigned long addr, unsigned long end, struct mm_walk *walk)
1623{
1624 return 0;
1625}
1626#endif
1627
1628/*
1629 * Display pages allocated per node and memory policy via /proc.
1630 */
b7643757 1631static int show_numa_map(struct seq_file *m, void *v, int is_pid)
f69ff943 1632{
5b52fc89
SW
1633 struct numa_maps_private *numa_priv = m->private;
1634 struct proc_maps_private *proc_priv = &numa_priv->proc_maps;
f69ff943 1635 struct vm_area_struct *vma = v;
5b52fc89 1636 struct numa_maps *md = &numa_priv->md;
f69ff943
SW
1637 struct file *file = vma->vm_file;
1638 struct mm_struct *mm = vma->vm_mm;
d85f4d6d
NH
1639 struct mm_walk walk = {
1640 .hugetlb_entry = gather_hugetlb_stats,
1641 .pmd_entry = gather_pte_stats,
1642 .private = md,
1643 .mm = mm,
1644 };
f69ff943 1645 struct mempolicy *pol;
948927ee
DR
1646 char buffer[64];
1647 int nid;
f69ff943
SW
1648
1649 if (!mm)
1650 return 0;
1651
5b52fc89
SW
1652 /* Ensure we start with an empty set of numa_maps statistics. */
1653 memset(md, 0, sizeof(*md));
f69ff943 1654
498f2371
ON
1655 pol = __get_vma_policy(vma, vma->vm_start);
1656 if (pol) {
1657 mpol_to_str(buffer, sizeof(buffer), pol);
1658 mpol_cond_put(pol);
1659 } else {
1660 mpol_to_str(buffer, sizeof(buffer), proc_priv->task_mempolicy);
1661 }
f69ff943
SW
1662
1663 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
1664
1665 if (file) {
17c2b4ee 1666 seq_puts(m, " file=");
2726d566 1667 seq_file_path(m, file, "\n\t= ");
f69ff943 1668 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
17c2b4ee 1669 seq_puts(m, " heap");
65376df5
JW
1670 } else if (is_stack(proc_priv, vma, is_pid)) {
1671 seq_puts(m, " stack");
f69ff943
SW
1672 }
1673
fc360bd9 1674 if (is_vm_hugetlb_page(vma))
17c2b4ee 1675 seq_puts(m, " huge");
fc360bd9 1676
d85f4d6d
NH
1677 /* mmap_sem is held by m_start */
1678 walk_page_vma(vma, &walk);
f69ff943
SW
1679
1680 if (!md->pages)
1681 goto out;
1682
1683 if (md->anon)
1684 seq_printf(m, " anon=%lu", md->anon);
1685
1686 if (md->dirty)
1687 seq_printf(m, " dirty=%lu", md->dirty);
1688
1689 if (md->pages != md->anon && md->pages != md->dirty)
1690 seq_printf(m, " mapped=%lu", md->pages);
1691
1692 if (md->mapcount_max > 1)
1693 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1694
1695 if (md->swapcache)
1696 seq_printf(m, " swapcache=%lu", md->swapcache);
1697
1698 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1699 seq_printf(m, " active=%lu", md->active);
1700
1701 if (md->writeback)
1702 seq_printf(m, " writeback=%lu", md->writeback);
1703
948927ee
DR
1704 for_each_node_state(nid, N_MEMORY)
1705 if (md->node[nid])
1706 seq_printf(m, " N%d=%lu", nid, md->node[nid]);
198d1597
RA
1707
1708 seq_printf(m, " kernelpagesize_kB=%lu", vma_kernel_pagesize(vma) >> 10);
f69ff943
SW
1709out:
1710 seq_putc(m, '\n');
b8c20a9b 1711 m_cache_vma(m, vma);
f69ff943
SW
1712 return 0;
1713}
5b52fc89 1714
b7643757
SP
1715static int show_pid_numa_map(struct seq_file *m, void *v)
1716{
1717 return show_numa_map(m, v, 1);
1718}
1719
1720static int show_tid_numa_map(struct seq_file *m, void *v)
1721{
1722 return show_numa_map(m, v, 0);
1723}
1724
03a44825 1725static const struct seq_operations proc_pid_numa_maps_op = {
b7643757
SP
1726 .start = m_start,
1727 .next = m_next,
1728 .stop = m_stop,
1729 .show = show_pid_numa_map,
6e21c8f1 1730};
662795de 1731
b7643757
SP
1732static const struct seq_operations proc_tid_numa_maps_op = {
1733 .start = m_start,
1734 .next = m_next,
1735 .stop = m_stop,
1736 .show = show_tid_numa_map,
1737};
1738
1739static int numa_maps_open(struct inode *inode, struct file *file,
1740 const struct seq_operations *ops)
662795de 1741{
4db7d0ee
ON
1742 return proc_maps_open(inode, file, ops,
1743 sizeof(struct numa_maps_private));
662795de
EB
1744}
1745
b7643757
SP
1746static int pid_numa_maps_open(struct inode *inode, struct file *file)
1747{
1748 return numa_maps_open(inode, file, &proc_pid_numa_maps_op);
1749}
1750
1751static int tid_numa_maps_open(struct inode *inode, struct file *file)
1752{
1753 return numa_maps_open(inode, file, &proc_tid_numa_maps_op);
1754}
1755
1756const struct file_operations proc_pid_numa_maps_operations = {
1757 .open = pid_numa_maps_open,
1758 .read = seq_read,
1759 .llseek = seq_lseek,
29a40ace 1760 .release = proc_map_release,
b7643757
SP
1761};
1762
1763const struct file_operations proc_tid_numa_maps_operations = {
1764 .open = tid_numa_maps_open,
662795de
EB
1765 .read = seq_read,
1766 .llseek = seq_lseek,
29a40ace 1767 .release = proc_map_release,
662795de 1768};
f69ff943 1769#endif /* CONFIG_NUMA */