Merge tag 'devicetree-for-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/robh...
[linux-2.6-block.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;
584 else
585 VM_BUG_ON_PAGE(1, page);
afd9883f 586 smaps_account(mss, page, true, pmd_young(*pmd), pmd_dirty(*pmd));
c164e038
KS
587}
588#else
589static void smaps_pmd_entry(pmd_t *pmd, unsigned long addr,
590 struct mm_walk *walk)
591{
592}
593#endif
594
b3ae5acb 595static int smaps_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
2165009b 596 struct mm_walk *walk)
e070ad49 597{
14eb6fdd 598 struct vm_area_struct *vma = walk->vma;
ae11c4d9 599 pte_t *pte;
705e87c0 600 spinlock_t *ptl;
e070ad49 601
b6ec57f4
KS
602 ptl = pmd_trans_huge_lock(pmd, vma);
603 if (ptl) {
c164e038 604 smaps_pmd_entry(pmd, addr, walk);
bf929152 605 spin_unlock(ptl);
025c5b24 606 return 0;
22e057c5 607 }
1a5a9906
AA
608
609 if (pmd_trans_unstable(pmd))
610 return 0;
22e057c5
DH
611 /*
612 * The mmap_sem held all the way back in m_start() is what
613 * keeps khugepaged out of here and from collapsing things
614 * in here.
615 */
705e87c0 616 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
ae11c4d9 617 for (; addr != end; pte++, addr += PAGE_SIZE)
c164e038 618 smaps_pte_entry(pte, addr, walk);
705e87c0
HD
619 pte_unmap_unlock(pte - 1, ptl);
620 cond_resched();
b3ae5acb 621 return 0;
e070ad49
ML
622}
623
834f82e2
CG
624static void show_smap_vma_flags(struct seq_file *m, struct vm_area_struct *vma)
625{
626 /*
627 * Don't forget to update Documentation/ on changes.
628 */
629 static const char mnemonics[BITS_PER_LONG][2] = {
630 /*
631 * In case if we meet a flag we don't know about.
632 */
633 [0 ... (BITS_PER_LONG-1)] = "??",
634
635 [ilog2(VM_READ)] = "rd",
636 [ilog2(VM_WRITE)] = "wr",
637 [ilog2(VM_EXEC)] = "ex",
638 [ilog2(VM_SHARED)] = "sh",
639 [ilog2(VM_MAYREAD)] = "mr",
640 [ilog2(VM_MAYWRITE)] = "mw",
641 [ilog2(VM_MAYEXEC)] = "me",
642 [ilog2(VM_MAYSHARE)] = "ms",
643 [ilog2(VM_GROWSDOWN)] = "gd",
644 [ilog2(VM_PFNMAP)] = "pf",
645 [ilog2(VM_DENYWRITE)] = "dw",
4aae7e43
QR
646#ifdef CONFIG_X86_INTEL_MPX
647 [ilog2(VM_MPX)] = "mp",
648#endif
834f82e2
CG
649 [ilog2(VM_LOCKED)] = "lo",
650 [ilog2(VM_IO)] = "io",
651 [ilog2(VM_SEQ_READ)] = "sr",
652 [ilog2(VM_RAND_READ)] = "rr",
653 [ilog2(VM_DONTCOPY)] = "dc",
654 [ilog2(VM_DONTEXPAND)] = "de",
655 [ilog2(VM_ACCOUNT)] = "ac",
656 [ilog2(VM_NORESERVE)] = "nr",
657 [ilog2(VM_HUGETLB)] = "ht",
834f82e2
CG
658 [ilog2(VM_ARCH_1)] = "ar",
659 [ilog2(VM_DONTDUMP)] = "dd",
ec8e41ae
NH
660#ifdef CONFIG_MEM_SOFT_DIRTY
661 [ilog2(VM_SOFTDIRTY)] = "sd",
662#endif
834f82e2
CG
663 [ilog2(VM_MIXEDMAP)] = "mm",
664 [ilog2(VM_HUGEPAGE)] = "hg",
665 [ilog2(VM_NOHUGEPAGE)] = "nh",
666 [ilog2(VM_MERGEABLE)] = "mg",
16ba6f81
AA
667 [ilog2(VM_UFFD_MISSING)]= "um",
668 [ilog2(VM_UFFD_WP)] = "uw",
c1192f84
DH
669#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
670 /* These come out via ProtectionKey: */
671 [ilog2(VM_PKEY_BIT0)] = "",
672 [ilog2(VM_PKEY_BIT1)] = "",
673 [ilog2(VM_PKEY_BIT2)] = "",
674 [ilog2(VM_PKEY_BIT3)] = "",
675#endif
834f82e2
CG
676 };
677 size_t i;
678
679 seq_puts(m, "VmFlags: ");
680 for (i = 0; i < BITS_PER_LONG; i++) {
c1192f84
DH
681 if (!mnemonics[i][0])
682 continue;
834f82e2
CG
683 if (vma->vm_flags & (1UL << i)) {
684 seq_printf(m, "%c%c ",
685 mnemonics[i][0], mnemonics[i][1]);
686 }
687 }
688 seq_putc(m, '\n');
689}
690
25ee01a2
NH
691#ifdef CONFIG_HUGETLB_PAGE
692static int smaps_hugetlb_range(pte_t *pte, unsigned long hmask,
693 unsigned long addr, unsigned long end,
694 struct mm_walk *walk)
695{
696 struct mem_size_stats *mss = walk->private;
697 struct vm_area_struct *vma = walk->vma;
698 struct page *page = NULL;
699
700 if (pte_present(*pte)) {
701 page = vm_normal_page(vma, addr, *pte);
702 } else if (is_swap_pte(*pte)) {
703 swp_entry_t swpent = pte_to_swp_entry(*pte);
704
705 if (is_migration_entry(swpent))
706 page = migration_entry_to_page(swpent);
707 }
708 if (page) {
709 int mapcount = page_mapcount(page);
710
711 if (mapcount >= 2)
712 mss->shared_hugetlb += huge_page_size(hstate_vma(vma));
713 else
714 mss->private_hugetlb += huge_page_size(hstate_vma(vma));
715 }
716 return 0;
717}
718#endif /* HUGETLB_PAGE */
719
c1192f84
DH
720void __weak arch_show_smap(struct seq_file *m, struct vm_area_struct *vma)
721{
722}
723
b7643757 724static int show_smap(struct seq_file *m, void *v, int is_pid)
e070ad49
ML
725{
726 struct vm_area_struct *vma = v;
e070ad49 727 struct mem_size_stats mss;
2165009b
DH
728 struct mm_walk smaps_walk = {
729 .pmd_entry = smaps_pte_range,
25ee01a2
NH
730#ifdef CONFIG_HUGETLB_PAGE
731 .hugetlb_entry = smaps_hugetlb_range,
732#endif
2165009b
DH
733 .mm = vma->vm_mm,
734 .private = &mss,
735 };
e070ad49
ML
736
737 memset(&mss, 0, sizeof mss);
c261e7d9
VB
738
739#ifdef CONFIG_SHMEM
740 if (vma->vm_file && shmem_mapping(vma->vm_file->f_mapping)) {
6a15a370
VB
741 /*
742 * For shared or readonly shmem mappings we know that all
743 * swapped out pages belong to the shmem object, and we can
744 * obtain the swap value much more efficiently. For private
745 * writable mappings, we might have COW pages that are
746 * not affected by the parent swapped out pages of the shmem
747 * object, so we have to distinguish them during the page walk.
748 * Unless we know that the shmem object (or the part mapped by
749 * our VMA) has no swapped out pages at all.
750 */
751 unsigned long shmem_swapped = shmem_swap_usage(vma);
752
753 if (!shmem_swapped || (vma->vm_flags & VM_SHARED) ||
754 !(vma->vm_flags & VM_WRITE)) {
755 mss.swap = shmem_swapped;
756 } else {
757 mss.check_shmem_swap = true;
758 smaps_walk.pte_hole = smaps_pte_hole;
759 }
c261e7d9
VB
760 }
761#endif
762
d82ef020 763 /* mmap_sem is held in m_start */
14eb6fdd 764 walk_page_vma(vma, &smaps_walk);
4752c369 765
b7643757 766 show_map_vma(m, vma, is_pid);
4752c369
MM
767
768 seq_printf(m,
769 "Size: %8lu kB\n"
770 "Rss: %8lu kB\n"
771 "Pss: %8lu kB\n"
772 "Shared_Clean: %8lu kB\n"
773 "Shared_Dirty: %8lu kB\n"
774 "Private_Clean: %8lu kB\n"
775 "Private_Dirty: %8lu kB\n"
214e471f 776 "Referenced: %8lu kB\n"
b40d4f84 777 "Anonymous: %8lu kB\n"
4031a219 778 "AnonHugePages: %8lu kB\n"
65c45377 779 "ShmemPmdMapped: %8lu kB\n"
25ee01a2
NH
780 "Shared_Hugetlb: %8lu kB\n"
781 "Private_Hugetlb: %7lu kB\n"
08fba699 782 "Swap: %8lu kB\n"
8334b962 783 "SwapPss: %8lu kB\n"
3340289d 784 "KernelPageSize: %8lu kB\n"
2d90508f
NK
785 "MMUPageSize: %8lu kB\n"
786 "Locked: %8lu kB\n",
4752c369
MM
787 (vma->vm_end - vma->vm_start) >> 10,
788 mss.resident >> 10,
789 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)),
790 mss.shared_clean >> 10,
791 mss.shared_dirty >> 10,
792 mss.private_clean >> 10,
793 mss.private_dirty >> 10,
214e471f 794 mss.referenced >> 10,
b40d4f84 795 mss.anonymous >> 10,
4031a219 796 mss.anonymous_thp >> 10,
65c45377 797 mss.shmem_thp >> 10,
25ee01a2
NH
798 mss.shared_hugetlb >> 10,
799 mss.private_hugetlb >> 10,
08fba699 800 mss.swap >> 10,
8334b962 801 (unsigned long)(mss.swap_pss >> (10 + PSS_SHIFT)),
3340289d 802 vma_kernel_pagesize(vma) >> 10,
2d90508f
NK
803 vma_mmu_pagesize(vma) >> 10,
804 (vma->vm_flags & VM_LOCKED) ?
805 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)) : 0);
4752c369 806
c1192f84 807 arch_show_smap(m, vma);
834f82e2 808 show_smap_vma_flags(m, vma);
b8c20a9b 809 m_cache_vma(m, vma);
7c88db0c 810 return 0;
e070ad49
ML
811}
812
b7643757
SP
813static int show_pid_smap(struct seq_file *m, void *v)
814{
815 return show_smap(m, v, 1);
816}
817
818static int show_tid_smap(struct seq_file *m, void *v)
819{
820 return show_smap(m, v, 0);
821}
822
03a44825 823static const struct seq_operations proc_pid_smaps_op = {
a6198797
MM
824 .start = m_start,
825 .next = m_next,
826 .stop = m_stop,
b7643757
SP
827 .show = show_pid_smap
828};
829
830static const struct seq_operations proc_tid_smaps_op = {
831 .start = m_start,
832 .next = m_next,
833 .stop = m_stop,
834 .show = show_tid_smap
a6198797
MM
835};
836
b7643757 837static int pid_smaps_open(struct inode *inode, struct file *file)
a6198797
MM
838{
839 return do_maps_open(inode, file, &proc_pid_smaps_op);
840}
841
b7643757
SP
842static int tid_smaps_open(struct inode *inode, struct file *file)
843{
844 return do_maps_open(inode, file, &proc_tid_smaps_op);
845}
846
847const struct file_operations proc_pid_smaps_operations = {
848 .open = pid_smaps_open,
849 .read = seq_read,
850 .llseek = seq_lseek,
29a40ace 851 .release = proc_map_release,
b7643757
SP
852};
853
854const struct file_operations proc_tid_smaps_operations = {
855 .open = tid_smaps_open,
a6198797
MM
856 .read = seq_read,
857 .llseek = seq_lseek,
29a40ace 858 .release = proc_map_release,
a6198797
MM
859};
860
040fa020
PE
861enum clear_refs_types {
862 CLEAR_REFS_ALL = 1,
863 CLEAR_REFS_ANON,
864 CLEAR_REFS_MAPPED,
0f8975ec 865 CLEAR_REFS_SOFT_DIRTY,
695f0559 866 CLEAR_REFS_MM_HIWATER_RSS,
040fa020
PE
867 CLEAR_REFS_LAST,
868};
869
af9de7eb 870struct clear_refs_private {
0f8975ec 871 enum clear_refs_types type;
af9de7eb
PE
872};
873
7d5b3bfa 874#ifdef CONFIG_MEM_SOFT_DIRTY
0f8975ec
PE
875static inline void clear_soft_dirty(struct vm_area_struct *vma,
876 unsigned long addr, pte_t *pte)
877{
0f8975ec
PE
878 /*
879 * The soft-dirty tracker uses #PF-s to catch writes
880 * to pages, so write-protect the pte as well. See the
881 * Documentation/vm/soft-dirty.txt for full description
882 * of how soft-dirty works.
883 */
884 pte_t ptent = *pte;
179ef71c
CG
885
886 if (pte_present(ptent)) {
326c2597 887 ptent = ptep_modify_prot_start(vma->vm_mm, addr, pte);
179ef71c 888 ptent = pte_wrprotect(ptent);
a7b76174 889 ptent = pte_clear_soft_dirty(ptent);
326c2597 890 ptep_modify_prot_commit(vma->vm_mm, addr, pte, ptent);
179ef71c
CG
891 } else if (is_swap_pte(ptent)) {
892 ptent = pte_swp_clear_soft_dirty(ptent);
326c2597 893 set_pte_at(vma->vm_mm, addr, pte, ptent);
179ef71c 894 }
0f8975ec 895}
5d3875a0
LD
896#else
897static inline void clear_soft_dirty(struct vm_area_struct *vma,
898 unsigned long addr, pte_t *pte)
899{
900}
901#endif
0f8975ec 902
5d3875a0 903#if defined(CONFIG_MEM_SOFT_DIRTY) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
7d5b3bfa
KS
904static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
905 unsigned long addr, pmd_t *pmdp)
906{
326c2597 907 pmd_t pmd = pmdp_huge_get_and_clear(vma->vm_mm, addr, pmdp);
7d5b3bfa
KS
908
909 pmd = pmd_wrprotect(pmd);
a7b76174 910 pmd = pmd_clear_soft_dirty(pmd);
7d5b3bfa 911
7d5b3bfa
KS
912 set_pmd_at(vma->vm_mm, addr, pmdp, pmd);
913}
7d5b3bfa 914#else
7d5b3bfa
KS
915static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
916 unsigned long addr, pmd_t *pmdp)
917{
918}
919#endif
920
a6198797 921static int clear_refs_pte_range(pmd_t *pmd, unsigned long addr,
2165009b 922 unsigned long end, struct mm_walk *walk)
a6198797 923{
af9de7eb 924 struct clear_refs_private *cp = walk->private;
5c64f52a 925 struct vm_area_struct *vma = walk->vma;
a6198797
MM
926 pte_t *pte, ptent;
927 spinlock_t *ptl;
928 struct page *page;
929
b6ec57f4
KS
930 ptl = pmd_trans_huge_lock(pmd, vma);
931 if (ptl) {
7d5b3bfa
KS
932 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
933 clear_soft_dirty_pmd(vma, addr, pmd);
934 goto out;
935 }
936
937 page = pmd_page(*pmd);
938
939 /* Clear accessed and referenced bits. */
940 pmdp_test_and_clear_young(vma, addr, pmd);
33c3fc71 941 test_and_clear_page_young(page);
7d5b3bfa
KS
942 ClearPageReferenced(page);
943out:
944 spin_unlock(ptl);
945 return 0;
946 }
947
1a5a9906
AA
948 if (pmd_trans_unstable(pmd))
949 return 0;
03319327 950
a6198797
MM
951 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
952 for (; addr != end; pte++, addr += PAGE_SIZE) {
953 ptent = *pte;
a6198797 954
0f8975ec
PE
955 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
956 clear_soft_dirty(vma, addr, pte);
957 continue;
958 }
959
179ef71c
CG
960 if (!pte_present(ptent))
961 continue;
962
a6198797
MM
963 page = vm_normal_page(vma, addr, ptent);
964 if (!page)
965 continue;
966
967 /* Clear accessed and referenced bits. */
968 ptep_test_and_clear_young(vma, addr, pte);
33c3fc71 969 test_and_clear_page_young(page);
a6198797
MM
970 ClearPageReferenced(page);
971 }
972 pte_unmap_unlock(pte - 1, ptl);
973 cond_resched();
974 return 0;
975}
976
5c64f52a
NH
977static int clear_refs_test_walk(unsigned long start, unsigned long end,
978 struct mm_walk *walk)
979{
980 struct clear_refs_private *cp = walk->private;
981 struct vm_area_struct *vma = walk->vma;
982
48684a65
NH
983 if (vma->vm_flags & VM_PFNMAP)
984 return 1;
985
5c64f52a
NH
986 /*
987 * Writing 1 to /proc/pid/clear_refs affects all pages.
988 * Writing 2 to /proc/pid/clear_refs only affects anonymous pages.
989 * Writing 3 to /proc/pid/clear_refs only affects file mapped pages.
990 * Writing 4 to /proc/pid/clear_refs affects all pages.
991 */
992 if (cp->type == CLEAR_REFS_ANON && vma->vm_file)
993 return 1;
994 if (cp->type == CLEAR_REFS_MAPPED && !vma->vm_file)
995 return 1;
996 return 0;
997}
998
f248dcb3
MM
999static ssize_t clear_refs_write(struct file *file, const char __user *buf,
1000 size_t count, loff_t *ppos)
b813e931 1001{
f248dcb3 1002 struct task_struct *task;
fb92a4b0 1003 char buffer[PROC_NUMBUF];
f248dcb3 1004 struct mm_struct *mm;
b813e931 1005 struct vm_area_struct *vma;
040fa020
PE
1006 enum clear_refs_types type;
1007 int itype;
0a8cb8e3 1008 int rv;
b813e931 1009
f248dcb3
MM
1010 memset(buffer, 0, sizeof(buffer));
1011 if (count > sizeof(buffer) - 1)
1012 count = sizeof(buffer) - 1;
1013 if (copy_from_user(buffer, buf, count))
1014 return -EFAULT;
040fa020 1015 rv = kstrtoint(strstrip(buffer), 10, &itype);
0a8cb8e3
AD
1016 if (rv < 0)
1017 return rv;
040fa020
PE
1018 type = (enum clear_refs_types)itype;
1019 if (type < CLEAR_REFS_ALL || type >= CLEAR_REFS_LAST)
f248dcb3 1020 return -EINVAL;
541c237c 1021
496ad9aa 1022 task = get_proc_task(file_inode(file));
f248dcb3
MM
1023 if (!task)
1024 return -ESRCH;
1025 mm = get_task_mm(task);
1026 if (mm) {
af9de7eb 1027 struct clear_refs_private cp = {
0f8975ec 1028 .type = type,
af9de7eb 1029 };
20cbc972
AM
1030 struct mm_walk clear_refs_walk = {
1031 .pmd_entry = clear_refs_pte_range,
5c64f52a 1032 .test_walk = clear_refs_test_walk,
20cbc972 1033 .mm = mm,
af9de7eb 1034 .private = &cp,
20cbc972 1035 };
695f0559
PC
1036
1037 if (type == CLEAR_REFS_MM_HIWATER_RSS) {
4e80153a
MH
1038 if (down_write_killable(&mm->mmap_sem)) {
1039 count = -EINTR;
1040 goto out_mm;
1041 }
1042
695f0559
PC
1043 /*
1044 * Writing 5 to /proc/pid/clear_refs resets the peak
1045 * resident set size to this mm's current rss value.
1046 */
695f0559
PC
1047 reset_mm_hiwater_rss(mm);
1048 up_write(&mm->mmap_sem);
1049 goto out_mm;
1050 }
1051
f248dcb3 1052 down_read(&mm->mmap_sem);
64e45507
PF
1053 if (type == CLEAR_REFS_SOFT_DIRTY) {
1054 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1055 if (!(vma->vm_flags & VM_SOFTDIRTY))
1056 continue;
1057 up_read(&mm->mmap_sem);
4e80153a
MH
1058 if (down_write_killable(&mm->mmap_sem)) {
1059 count = -EINTR;
1060 goto out_mm;
1061 }
64e45507
PF
1062 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1063 vma->vm_flags &= ~VM_SOFTDIRTY;
1064 vma_set_page_prot(vma);
1065 }
1066 downgrade_write(&mm->mmap_sem);
1067 break;
1068 }
0f8975ec 1069 mmu_notifier_invalidate_range_start(mm, 0, -1);
64e45507 1070 }
5c64f52a 1071 walk_page_range(0, ~0UL, &clear_refs_walk);
0f8975ec
PE
1072 if (type == CLEAR_REFS_SOFT_DIRTY)
1073 mmu_notifier_invalidate_range_end(mm, 0, -1);
f248dcb3
MM
1074 flush_tlb_mm(mm);
1075 up_read(&mm->mmap_sem);
695f0559 1076out_mm:
f248dcb3
MM
1077 mmput(mm);
1078 }
1079 put_task_struct(task);
fb92a4b0
VL
1080
1081 return count;
b813e931
DR
1082}
1083
f248dcb3
MM
1084const struct file_operations proc_clear_refs_operations = {
1085 .write = clear_refs_write,
6038f373 1086 .llseek = noop_llseek,
f248dcb3
MM
1087};
1088
092b50ba
NH
1089typedef struct {
1090 u64 pme;
1091} pagemap_entry_t;
1092
85863e47 1093struct pagemapread {
8c829622 1094 int pos, len; /* units: PM_ENTRY_BYTES, not bytes */
092b50ba 1095 pagemap_entry_t *buffer;
1c90308e 1096 bool show_pfn;
85863e47
MM
1097};
1098
5aaabe83
NH
1099#define PAGEMAP_WALK_SIZE (PMD_SIZE)
1100#define PAGEMAP_WALK_MASK (PMD_MASK)
1101
deb94544
KK
1102#define PM_ENTRY_BYTES sizeof(pagemap_entry_t)
1103#define PM_PFRAME_BITS 55
1104#define PM_PFRAME_MASK GENMASK_ULL(PM_PFRAME_BITS - 1, 0)
1105#define PM_SOFT_DIRTY BIT_ULL(55)
77bb499b 1106#define PM_MMAP_EXCLUSIVE BIT_ULL(56)
deb94544
KK
1107#define PM_FILE BIT_ULL(61)
1108#define PM_SWAP BIT_ULL(62)
1109#define PM_PRESENT BIT_ULL(63)
1110
85863e47
MM
1111#define PM_END_OF_BUFFER 1
1112
deb94544 1113static inline pagemap_entry_t make_pme(u64 frame, u64 flags)
092b50ba 1114{
deb94544 1115 return (pagemap_entry_t) { .pme = (frame & PM_PFRAME_MASK) | flags };
092b50ba
NH
1116}
1117
1118static int add_to_pagemap(unsigned long addr, pagemap_entry_t *pme,
85863e47
MM
1119 struct pagemapread *pm)
1120{
092b50ba 1121 pm->buffer[pm->pos++] = *pme;
d82ef020 1122 if (pm->pos >= pm->len)
aae8679b 1123 return PM_END_OF_BUFFER;
85863e47
MM
1124 return 0;
1125}
1126
1127static int pagemap_pte_hole(unsigned long start, unsigned long end,
2165009b 1128 struct mm_walk *walk)
85863e47 1129{
2165009b 1130 struct pagemapread *pm = walk->private;
68b5a652 1131 unsigned long addr = start;
85863e47 1132 int err = 0;
092b50ba 1133
68b5a652
PF
1134 while (addr < end) {
1135 struct vm_area_struct *vma = find_vma(walk->mm, addr);
deb94544 1136 pagemap_entry_t pme = make_pme(0, 0);
87e6d49a
PF
1137 /* End of address space hole, which we mark as non-present. */
1138 unsigned long hole_end;
68b5a652 1139
87e6d49a
PF
1140 if (vma)
1141 hole_end = min(end, vma->vm_start);
1142 else
1143 hole_end = end;
1144
1145 for (; addr < hole_end; addr += PAGE_SIZE) {
1146 err = add_to_pagemap(addr, &pme, pm);
1147 if (err)
1148 goto out;
68b5a652
PF
1149 }
1150
87e6d49a
PF
1151 if (!vma)
1152 break;
1153
1154 /* Addresses in the VMA. */
1155 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1156 pme = make_pme(0, PM_SOFT_DIRTY);
87e6d49a 1157 for (; addr < min(end, vma->vm_end); addr += PAGE_SIZE) {
68b5a652
PF
1158 err = add_to_pagemap(addr, &pme, pm);
1159 if (err)
1160 goto out;
1161 }
85863e47 1162 }
68b5a652 1163out:
85863e47
MM
1164 return err;
1165}
1166
deb94544 1167static pagemap_entry_t pte_to_pagemap_entry(struct pagemapread *pm,
052fb0d6 1168 struct vm_area_struct *vma, unsigned long addr, pte_t pte)
85863e47 1169{
deb94544 1170 u64 frame = 0, flags = 0;
052fb0d6 1171 struct page *page = NULL;
85863e47 1172
052fb0d6 1173 if (pte_present(pte)) {
1c90308e
KK
1174 if (pm->show_pfn)
1175 frame = pte_pfn(pte);
deb94544 1176 flags |= PM_PRESENT;
052fb0d6 1177 page = vm_normal_page(vma, addr, pte);
e9cdd6e7 1178 if (pte_soft_dirty(pte))
deb94544 1179 flags |= PM_SOFT_DIRTY;
052fb0d6 1180 } else if (is_swap_pte(pte)) {
179ef71c
CG
1181 swp_entry_t entry;
1182 if (pte_swp_soft_dirty(pte))
deb94544 1183 flags |= PM_SOFT_DIRTY;
179ef71c 1184 entry = pte_to_swp_entry(pte);
052fb0d6
KK
1185 frame = swp_type(entry) |
1186 (swp_offset(entry) << MAX_SWAPFILES_SHIFT);
deb94544 1187 flags |= PM_SWAP;
052fb0d6
KK
1188 if (is_migration_entry(entry))
1189 page = migration_entry_to_page(entry);
052fb0d6
KK
1190 }
1191
1192 if (page && !PageAnon(page))
1193 flags |= PM_FILE;
77bb499b
KK
1194 if (page && page_mapcount(page) == 1)
1195 flags |= PM_MMAP_EXCLUSIVE;
deb94544
KK
1196 if (vma->vm_flags & VM_SOFTDIRTY)
1197 flags |= PM_SOFT_DIRTY;
052fb0d6 1198
deb94544 1199 return make_pme(frame, flags);
bcf8039e
DH
1200}
1201
356515e7 1202static int pagemap_pmd_range(pmd_t *pmdp, unsigned long addr, unsigned long end,
2165009b 1203 struct mm_walk *walk)
85863e47 1204{
f995ece2 1205 struct vm_area_struct *vma = walk->vma;
2165009b 1206 struct pagemapread *pm = walk->private;
bf929152 1207 spinlock_t *ptl;
05fbf357 1208 pte_t *pte, *orig_pte;
85863e47
MM
1209 int err = 0;
1210
356515e7 1211#ifdef CONFIG_TRANSPARENT_HUGEPAGE
b6ec57f4
KS
1212 ptl = pmd_trans_huge_lock(pmdp, vma);
1213 if (ptl) {
356515e7
KK
1214 u64 flags = 0, frame = 0;
1215 pmd_t pmd = *pmdp;
0f8975ec 1216
356515e7 1217 if ((vma->vm_flags & VM_SOFTDIRTY) || pmd_soft_dirty(pmd))
deb94544 1218 flags |= PM_SOFT_DIRTY;
d9104d1c 1219
356515e7
KK
1220 /*
1221 * Currently pmd for thp is always present because thp
1222 * can not be swapped-out, migrated, or HWPOISONed
1223 * (split in such cases instead.)
1224 * This if-check is just to prepare for future implementation.
1225 */
1226 if (pmd_present(pmd)) {
77bb499b
KK
1227 struct page *page = pmd_page(pmd);
1228
1229 if (page_mapcount(page) == 1)
1230 flags |= PM_MMAP_EXCLUSIVE;
1231
356515e7 1232 flags |= PM_PRESENT;
1c90308e
KK
1233 if (pm->show_pfn)
1234 frame = pmd_pfn(pmd) +
1235 ((addr & ~PMD_MASK) >> PAGE_SHIFT);
356515e7
KK
1236 }
1237
025c5b24 1238 for (; addr != end; addr += PAGE_SIZE) {
356515e7 1239 pagemap_entry_t pme = make_pme(frame, flags);
025c5b24 1240
092b50ba 1241 err = add_to_pagemap(addr, &pme, pm);
025c5b24
NH
1242 if (err)
1243 break;
1c90308e 1244 if (pm->show_pfn && (flags & PM_PRESENT))
356515e7 1245 frame++;
5aaabe83 1246 }
bf929152 1247 spin_unlock(ptl);
025c5b24 1248 return err;
5aaabe83
NH
1249 }
1250
356515e7 1251 if (pmd_trans_unstable(pmdp))
45f83cef 1252 return 0;
356515e7 1253#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
81d0fa62 1254
f995ece2
NH
1255 /*
1256 * We can assume that @vma always points to a valid one and @end never
1257 * goes beyond vma->vm_end.
1258 */
356515e7 1259 orig_pte = pte = pte_offset_map_lock(walk->mm, pmdp, addr, &ptl);
f995ece2
NH
1260 for (; addr < end; pte++, addr += PAGE_SIZE) {
1261 pagemap_entry_t pme;
05fbf357 1262
deb94544 1263 pme = pte_to_pagemap_entry(pm, vma, addr, *pte);
f995ece2 1264 err = add_to_pagemap(addr, &pme, pm);
05fbf357 1265 if (err)
81d0fa62 1266 break;
85863e47 1267 }
f995ece2 1268 pte_unmap_unlock(orig_pte, ptl);
85863e47
MM
1269
1270 cond_resched();
1271
1272 return err;
1273}
1274
1a5cb814 1275#ifdef CONFIG_HUGETLB_PAGE
116354d1 1276/* This function walks within one hugetlb entry in the single call */
356515e7 1277static int pagemap_hugetlb_range(pte_t *ptep, unsigned long hmask,
116354d1
NH
1278 unsigned long addr, unsigned long end,
1279 struct mm_walk *walk)
5dc37642 1280{
5dc37642 1281 struct pagemapread *pm = walk->private;
f995ece2 1282 struct vm_area_struct *vma = walk->vma;
356515e7 1283 u64 flags = 0, frame = 0;
5dc37642 1284 int err = 0;
356515e7 1285 pte_t pte;
5dc37642 1286
f995ece2 1287 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1288 flags |= PM_SOFT_DIRTY;
d9104d1c 1289
356515e7
KK
1290 pte = huge_ptep_get(ptep);
1291 if (pte_present(pte)) {
1292 struct page *page = pte_page(pte);
1293
1294 if (!PageAnon(page))
1295 flags |= PM_FILE;
1296
77bb499b
KK
1297 if (page_mapcount(page) == 1)
1298 flags |= PM_MMAP_EXCLUSIVE;
1299
356515e7 1300 flags |= PM_PRESENT;
1c90308e
KK
1301 if (pm->show_pfn)
1302 frame = pte_pfn(pte) +
1303 ((addr & ~hmask) >> PAGE_SHIFT);
356515e7
KK
1304 }
1305
5dc37642 1306 for (; addr != end; addr += PAGE_SIZE) {
356515e7
KK
1307 pagemap_entry_t pme = make_pme(frame, flags);
1308
092b50ba 1309 err = add_to_pagemap(addr, &pme, pm);
5dc37642
NH
1310 if (err)
1311 return err;
1c90308e 1312 if (pm->show_pfn && (flags & PM_PRESENT))
356515e7 1313 frame++;
5dc37642
NH
1314 }
1315
1316 cond_resched();
1317
1318 return err;
1319}
1a5cb814 1320#endif /* HUGETLB_PAGE */
5dc37642 1321
85863e47
MM
1322/*
1323 * /proc/pid/pagemap - an array mapping virtual pages to pfns
1324 *
f16278c6
HR
1325 * For each page in the address space, this file contains one 64-bit entry
1326 * consisting of the following:
1327 *
052fb0d6 1328 * Bits 0-54 page frame number (PFN) if present
f16278c6 1329 * Bits 0-4 swap type if swapped
052fb0d6 1330 * Bits 5-54 swap offset if swapped
deb94544 1331 * Bit 55 pte is soft-dirty (see Documentation/vm/soft-dirty.txt)
77bb499b
KK
1332 * Bit 56 page exclusively mapped
1333 * Bits 57-60 zero
052fb0d6 1334 * Bit 61 page is file-page or shared-anon
f16278c6
HR
1335 * Bit 62 page swapped
1336 * Bit 63 page present
1337 *
1338 * If the page is not present but in swap, then the PFN contains an
1339 * encoding of the swap file number and the page's offset into the
1340 * swap. Unmapped pages return a null PFN. This allows determining
85863e47
MM
1341 * precisely which pages are mapped (or in swap) and comparing mapped
1342 * pages between processes.
1343 *
1344 * Efficient users of this interface will use /proc/pid/maps to
1345 * determine which areas of memory are actually mapped and llseek to
1346 * skip over unmapped regions.
1347 */
1348static ssize_t pagemap_read(struct file *file, char __user *buf,
1349 size_t count, loff_t *ppos)
1350{
a06db751 1351 struct mm_struct *mm = file->private_data;
85863e47 1352 struct pagemapread pm;
ee1e6ab6 1353 struct mm_walk pagemap_walk = {};
5d7e0d2b
AM
1354 unsigned long src;
1355 unsigned long svpfn;
1356 unsigned long start_vaddr;
1357 unsigned long end_vaddr;
a06db751 1358 int ret = 0, copied = 0;
85863e47 1359
a06db751 1360 if (!mm || !atomic_inc_not_zero(&mm->mm_users))
85863e47
MM
1361 goto out;
1362
85863e47
MM
1363 ret = -EINVAL;
1364 /* file position must be aligned */
aae8679b 1365 if ((*ppos % PM_ENTRY_BYTES) || (count % PM_ENTRY_BYTES))
a06db751 1366 goto out_mm;
85863e47
MM
1367
1368 ret = 0;
08161786 1369 if (!count)
a06db751 1370 goto out_mm;
08161786 1371
1c90308e
KK
1372 /* do not disclose physical addresses: attack vector */
1373 pm.show_pfn = file_ns_capable(file, &init_user_ns, CAP_SYS_ADMIN);
1374
8c829622 1375 pm.len = (PAGEMAP_WALK_SIZE >> PAGE_SHIFT);
1376 pm.buffer = kmalloc(pm.len * PM_ENTRY_BYTES, GFP_TEMPORARY);
5d7e0d2b 1377 ret = -ENOMEM;
d82ef020 1378 if (!pm.buffer)
a06db751 1379 goto out_mm;
85863e47 1380
356515e7 1381 pagemap_walk.pmd_entry = pagemap_pmd_range;
5d7e0d2b 1382 pagemap_walk.pte_hole = pagemap_pte_hole;
1a5cb814 1383#ifdef CONFIG_HUGETLB_PAGE
5dc37642 1384 pagemap_walk.hugetlb_entry = pagemap_hugetlb_range;
1a5cb814 1385#endif
5d7e0d2b
AM
1386 pagemap_walk.mm = mm;
1387 pagemap_walk.private = &pm;
1388
1389 src = *ppos;
1390 svpfn = src / PM_ENTRY_BYTES;
1391 start_vaddr = svpfn << PAGE_SHIFT;
a06db751 1392 end_vaddr = mm->task_size;
5d7e0d2b
AM
1393
1394 /* watch out for wraparound */
a06db751 1395 if (svpfn > mm->task_size >> PAGE_SHIFT)
5d7e0d2b
AM
1396 start_vaddr = end_vaddr;
1397
1398 /*
1399 * The odds are that this will stop walking way
1400 * before end_vaddr, because the length of the
1401 * user buffer is tracked in "pm", and the walk
1402 * will stop when we hit the end of the buffer.
1403 */
d82ef020
KH
1404 ret = 0;
1405 while (count && (start_vaddr < end_vaddr)) {
1406 int len;
1407 unsigned long end;
1408
1409 pm.pos = 0;
ea251c1d 1410 end = (start_vaddr + PAGEMAP_WALK_SIZE) & PAGEMAP_WALK_MASK;
d82ef020
KH
1411 /* overflow ? */
1412 if (end < start_vaddr || end > end_vaddr)
1413 end = end_vaddr;
1414 down_read(&mm->mmap_sem);
1415 ret = walk_page_range(start_vaddr, end, &pagemap_walk);
1416 up_read(&mm->mmap_sem);
1417 start_vaddr = end;
1418
1419 len = min(count, PM_ENTRY_BYTES * pm.pos);
309361e0 1420 if (copy_to_user(buf, pm.buffer, len)) {
d82ef020 1421 ret = -EFAULT;
a06db751 1422 goto out_free;
d82ef020
KH
1423 }
1424 copied += len;
1425 buf += len;
1426 count -= len;
85863e47 1427 }
d82ef020
KH
1428 *ppos += copied;
1429 if (!ret || ret == PM_END_OF_BUFFER)
1430 ret = copied;
1431
98bc93e5
KM
1432out_free:
1433 kfree(pm.buffer);
a06db751
KK
1434out_mm:
1435 mmput(mm);
85863e47
MM
1436out:
1437 return ret;
1438}
1439
541c237c
PE
1440static int pagemap_open(struct inode *inode, struct file *file)
1441{
a06db751
KK
1442 struct mm_struct *mm;
1443
a06db751
KK
1444 mm = proc_mem_open(inode, PTRACE_MODE_READ);
1445 if (IS_ERR(mm))
1446 return PTR_ERR(mm);
1447 file->private_data = mm;
1448 return 0;
1449}
1450
1451static int pagemap_release(struct inode *inode, struct file *file)
1452{
1453 struct mm_struct *mm = file->private_data;
1454
1455 if (mm)
1456 mmdrop(mm);
541c237c
PE
1457 return 0;
1458}
1459
85863e47
MM
1460const struct file_operations proc_pagemap_operations = {
1461 .llseek = mem_lseek, /* borrow this */
1462 .read = pagemap_read,
541c237c 1463 .open = pagemap_open,
a06db751 1464 .release = pagemap_release,
85863e47 1465};
1e883281 1466#endif /* CONFIG_PROC_PAGE_MONITOR */
85863e47 1467
6e21c8f1 1468#ifdef CONFIG_NUMA
6e21c8f1 1469
f69ff943 1470struct numa_maps {
f69ff943
SW
1471 unsigned long pages;
1472 unsigned long anon;
1473 unsigned long active;
1474 unsigned long writeback;
1475 unsigned long mapcount_max;
1476 unsigned long dirty;
1477 unsigned long swapcache;
1478 unsigned long node[MAX_NUMNODES];
1479};
1480
5b52fc89
SW
1481struct numa_maps_private {
1482 struct proc_maps_private proc_maps;
1483 struct numa_maps md;
1484};
1485
eb4866d0
DH
1486static void gather_stats(struct page *page, struct numa_maps *md, int pte_dirty,
1487 unsigned long nr_pages)
f69ff943
SW
1488{
1489 int count = page_mapcount(page);
1490
eb4866d0 1491 md->pages += nr_pages;
f69ff943 1492 if (pte_dirty || PageDirty(page))
eb4866d0 1493 md->dirty += nr_pages;
f69ff943
SW
1494
1495 if (PageSwapCache(page))
eb4866d0 1496 md->swapcache += nr_pages;
f69ff943
SW
1497
1498 if (PageActive(page) || PageUnevictable(page))
eb4866d0 1499 md->active += nr_pages;
f69ff943
SW
1500
1501 if (PageWriteback(page))
eb4866d0 1502 md->writeback += nr_pages;
f69ff943
SW
1503
1504 if (PageAnon(page))
eb4866d0 1505 md->anon += nr_pages;
f69ff943
SW
1506
1507 if (count > md->mapcount_max)
1508 md->mapcount_max = count;
1509
eb4866d0 1510 md->node[page_to_nid(page)] += nr_pages;
f69ff943
SW
1511}
1512
3200a8aa
DH
1513static struct page *can_gather_numa_stats(pte_t pte, struct vm_area_struct *vma,
1514 unsigned long addr)
1515{
1516 struct page *page;
1517 int nid;
1518
1519 if (!pte_present(pte))
1520 return NULL;
1521
1522 page = vm_normal_page(vma, addr, pte);
1523 if (!page)
1524 return NULL;
1525
1526 if (PageReserved(page))
1527 return NULL;
1528
1529 nid = page_to_nid(page);
4ff1b2c2 1530 if (!node_isset(nid, node_states[N_MEMORY]))
3200a8aa
DH
1531 return NULL;
1532
1533 return page;
1534}
1535
28093f9f
GS
1536#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1537static struct page *can_gather_numa_stats_pmd(pmd_t pmd,
1538 struct vm_area_struct *vma,
1539 unsigned long addr)
1540{
1541 struct page *page;
1542 int nid;
1543
1544 if (!pmd_present(pmd))
1545 return NULL;
1546
1547 page = vm_normal_page_pmd(vma, addr, pmd);
1548 if (!page)
1549 return NULL;
1550
1551 if (PageReserved(page))
1552 return NULL;
1553
1554 nid = page_to_nid(page);
1555 if (!node_isset(nid, node_states[N_MEMORY]))
1556 return NULL;
1557
1558 return page;
1559}
1560#endif
1561
f69ff943
SW
1562static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
1563 unsigned long end, struct mm_walk *walk)
1564{
d85f4d6d
NH
1565 struct numa_maps *md = walk->private;
1566 struct vm_area_struct *vma = walk->vma;
f69ff943
SW
1567 spinlock_t *ptl;
1568 pte_t *orig_pte;
1569 pte_t *pte;
1570
28093f9f 1571#ifdef CONFIG_TRANSPARENT_HUGEPAGE
b6ec57f4
KS
1572 ptl = pmd_trans_huge_lock(pmd, vma);
1573 if (ptl) {
025c5b24
NH
1574 struct page *page;
1575
28093f9f 1576 page = can_gather_numa_stats_pmd(*pmd, vma, addr);
025c5b24 1577 if (page)
28093f9f 1578 gather_stats(page, md, pmd_dirty(*pmd),
025c5b24 1579 HPAGE_PMD_SIZE/PAGE_SIZE);
bf929152 1580 spin_unlock(ptl);
025c5b24 1581 return 0;
32ef4384
DH
1582 }
1583
1a5a9906
AA
1584 if (pmd_trans_unstable(pmd))
1585 return 0;
28093f9f 1586#endif
f69ff943
SW
1587 orig_pte = pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
1588 do {
d85f4d6d 1589 struct page *page = can_gather_numa_stats(*pte, vma, addr);
f69ff943
SW
1590 if (!page)
1591 continue;
eb4866d0 1592 gather_stats(page, md, pte_dirty(*pte), 1);
f69ff943
SW
1593
1594 } while (pte++, addr += PAGE_SIZE, addr != end);
1595 pte_unmap_unlock(orig_pte, ptl);
1596 return 0;
1597}
1598#ifdef CONFIG_HUGETLB_PAGE
632fd60f 1599static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1600 unsigned long addr, unsigned long end, struct mm_walk *walk)
1601{
5c2ff95e 1602 pte_t huge_pte = huge_ptep_get(pte);
f69ff943
SW
1603 struct numa_maps *md;
1604 struct page *page;
1605
5c2ff95e 1606 if (!pte_present(huge_pte))
f69ff943
SW
1607 return 0;
1608
5c2ff95e 1609 page = pte_page(huge_pte);
f69ff943
SW
1610 if (!page)
1611 return 0;
1612
1613 md = walk->private;
5c2ff95e 1614 gather_stats(page, md, pte_dirty(huge_pte), 1);
f69ff943
SW
1615 return 0;
1616}
1617
1618#else
632fd60f 1619static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1620 unsigned long addr, unsigned long end, struct mm_walk *walk)
1621{
1622 return 0;
1623}
1624#endif
1625
1626/*
1627 * Display pages allocated per node and memory policy via /proc.
1628 */
b7643757 1629static int show_numa_map(struct seq_file *m, void *v, int is_pid)
f69ff943 1630{
5b52fc89
SW
1631 struct numa_maps_private *numa_priv = m->private;
1632 struct proc_maps_private *proc_priv = &numa_priv->proc_maps;
f69ff943 1633 struct vm_area_struct *vma = v;
5b52fc89 1634 struct numa_maps *md = &numa_priv->md;
f69ff943
SW
1635 struct file *file = vma->vm_file;
1636 struct mm_struct *mm = vma->vm_mm;
d85f4d6d
NH
1637 struct mm_walk walk = {
1638 .hugetlb_entry = gather_hugetlb_stats,
1639 .pmd_entry = gather_pte_stats,
1640 .private = md,
1641 .mm = mm,
1642 };
f69ff943 1643 struct mempolicy *pol;
948927ee
DR
1644 char buffer[64];
1645 int nid;
f69ff943
SW
1646
1647 if (!mm)
1648 return 0;
1649
5b52fc89
SW
1650 /* Ensure we start with an empty set of numa_maps statistics. */
1651 memset(md, 0, sizeof(*md));
f69ff943 1652
498f2371
ON
1653 pol = __get_vma_policy(vma, vma->vm_start);
1654 if (pol) {
1655 mpol_to_str(buffer, sizeof(buffer), pol);
1656 mpol_cond_put(pol);
1657 } else {
1658 mpol_to_str(buffer, sizeof(buffer), proc_priv->task_mempolicy);
1659 }
f69ff943
SW
1660
1661 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
1662
1663 if (file) {
17c2b4ee 1664 seq_puts(m, " file=");
2726d566 1665 seq_file_path(m, file, "\n\t= ");
f69ff943 1666 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
17c2b4ee 1667 seq_puts(m, " heap");
65376df5
JW
1668 } else if (is_stack(proc_priv, vma, is_pid)) {
1669 seq_puts(m, " stack");
f69ff943
SW
1670 }
1671
fc360bd9 1672 if (is_vm_hugetlb_page(vma))
17c2b4ee 1673 seq_puts(m, " huge");
fc360bd9 1674
d85f4d6d
NH
1675 /* mmap_sem is held by m_start */
1676 walk_page_vma(vma, &walk);
f69ff943
SW
1677
1678 if (!md->pages)
1679 goto out;
1680
1681 if (md->anon)
1682 seq_printf(m, " anon=%lu", md->anon);
1683
1684 if (md->dirty)
1685 seq_printf(m, " dirty=%lu", md->dirty);
1686
1687 if (md->pages != md->anon && md->pages != md->dirty)
1688 seq_printf(m, " mapped=%lu", md->pages);
1689
1690 if (md->mapcount_max > 1)
1691 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1692
1693 if (md->swapcache)
1694 seq_printf(m, " swapcache=%lu", md->swapcache);
1695
1696 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1697 seq_printf(m, " active=%lu", md->active);
1698
1699 if (md->writeback)
1700 seq_printf(m, " writeback=%lu", md->writeback);
1701
948927ee
DR
1702 for_each_node_state(nid, N_MEMORY)
1703 if (md->node[nid])
1704 seq_printf(m, " N%d=%lu", nid, md->node[nid]);
198d1597
RA
1705
1706 seq_printf(m, " kernelpagesize_kB=%lu", vma_kernel_pagesize(vma) >> 10);
f69ff943
SW
1707out:
1708 seq_putc(m, '\n');
b8c20a9b 1709 m_cache_vma(m, vma);
f69ff943
SW
1710 return 0;
1711}
5b52fc89 1712
b7643757
SP
1713static int show_pid_numa_map(struct seq_file *m, void *v)
1714{
1715 return show_numa_map(m, v, 1);
1716}
1717
1718static int show_tid_numa_map(struct seq_file *m, void *v)
1719{
1720 return show_numa_map(m, v, 0);
1721}
1722
03a44825 1723static const struct seq_operations proc_pid_numa_maps_op = {
b7643757
SP
1724 .start = m_start,
1725 .next = m_next,
1726 .stop = m_stop,
1727 .show = show_pid_numa_map,
6e21c8f1 1728};
662795de 1729
b7643757
SP
1730static const struct seq_operations proc_tid_numa_maps_op = {
1731 .start = m_start,
1732 .next = m_next,
1733 .stop = m_stop,
1734 .show = show_tid_numa_map,
1735};
1736
1737static int numa_maps_open(struct inode *inode, struct file *file,
1738 const struct seq_operations *ops)
662795de 1739{
4db7d0ee
ON
1740 return proc_maps_open(inode, file, ops,
1741 sizeof(struct numa_maps_private));
662795de
EB
1742}
1743
b7643757
SP
1744static int pid_numa_maps_open(struct inode *inode, struct file *file)
1745{
1746 return numa_maps_open(inode, file, &proc_pid_numa_maps_op);
1747}
1748
1749static int tid_numa_maps_open(struct inode *inode, struct file *file)
1750{
1751 return numa_maps_open(inode, file, &proc_tid_numa_maps_op);
1752}
1753
1754const struct file_operations proc_pid_numa_maps_operations = {
1755 .open = pid_numa_maps_open,
1756 .read = seq_read,
1757 .llseek = seq_lseek,
29a40ace 1758 .release = proc_map_release,
b7643757
SP
1759};
1760
1761const struct file_operations proc_tid_numa_maps_operations = {
1762 .open = tid_numa_maps_open,
662795de
EB
1763 .read = seq_read,
1764 .llseek = seq_lseek,
29a40ace 1765 .release = proc_map_release,
662795de 1766};
f69ff943 1767#endif /* CONFIG_NUMA */