2 #include <linux/vmacache.h>
3 #include <linux/hugetlb.h>
4 #include <linux/huge_mm.h>
5 #include <linux/mount.h>
6 #include <linux/seq_file.h>
7 #include <linux/highmem.h>
8 #include <linux/ptrace.h>
9 #include <linux/slab.h>
10 #include <linux/pagemap.h>
11 #include <linux/mempolicy.h>
12 #include <linux/rmap.h>
13 #include <linux/swap.h>
14 #include <linux/swapops.h>
15 #include <linux/mmu_notifier.h>
16 #include <linux/page_idle.h>
17 #include <linux/shmem_fs.h>
20 #include <asm/uaccess.h>
21 #include <asm/tlbflush.h>
24 void task_mem(struct seq_file
*m
, struct mm_struct
*mm
)
26 unsigned long text
, lib
, swap
, ptes
, pmds
, anon
, file
, shmem
;
27 unsigned long hiwater_vm
, total_vm
, hiwater_rss
, total_rss
;
29 anon
= get_mm_counter(mm
, MM_ANONPAGES
);
30 file
= get_mm_counter(mm
, MM_FILEPAGES
);
31 shmem
= get_mm_counter(mm
, MM_SHMEMPAGES
);
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.
40 hiwater_vm
= total_vm
= mm
->total_vm
;
41 if (hiwater_vm
< mm
->hiwater_vm
)
42 hiwater_vm
= mm
->hiwater_vm
;
43 hiwater_rss
= total_rss
= anon
+ file
+ shmem
;
44 if (hiwater_rss
< mm
->hiwater_rss
)
45 hiwater_rss
= mm
->hiwater_rss
;
47 text
= (PAGE_ALIGN(mm
->end_code
) - (mm
->start_code
& PAGE_MASK
)) >> 10;
48 lib
= (mm
->exec_vm
<< (PAGE_SHIFT
-10)) - text
;
49 swap
= get_mm_counter(mm
, MM_SWAPENTS
);
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
);
61 "RssShmem:\t%8lu kB\n"
69 hiwater_vm
<< (PAGE_SHIFT
-10),
70 total_vm
<< (PAGE_SHIFT
-10),
71 mm
->locked_vm
<< (PAGE_SHIFT
-10),
72 mm
->pinned_vm
<< (PAGE_SHIFT
-10),
73 hiwater_rss
<< (PAGE_SHIFT
-10),
74 total_rss
<< (PAGE_SHIFT
-10),
75 anon
<< (PAGE_SHIFT
-10),
76 file
<< (PAGE_SHIFT
-10),
77 shmem
<< (PAGE_SHIFT
-10),
78 mm
->data_vm
<< (PAGE_SHIFT
-10),
79 mm
->stack_vm
<< (PAGE_SHIFT
-10), text
, lib
,
82 swap
<< (PAGE_SHIFT
-10));
83 hugetlb_report_usage(m
, mm
);
86 unsigned long task_vsize(struct mm_struct
*mm
)
88 return PAGE_SIZE
* mm
->total_vm
;
91 unsigned long task_statm(struct mm_struct
*mm
,
92 unsigned long *shared
, unsigned long *text
,
93 unsigned long *data
, unsigned long *resident
)
95 *shared
= get_mm_counter(mm
, MM_FILEPAGES
) +
96 get_mm_counter(mm
, MM_SHMEMPAGES
);
97 *text
= (PAGE_ALIGN(mm
->end_code
) - (mm
->start_code
& PAGE_MASK
))
99 *data
= mm
->data_vm
+ mm
->stack_vm
;
100 *resident
= *shared
+ get_mm_counter(mm
, MM_ANONPAGES
);
106 * Save get_task_policy() for show_numa_map().
108 static void hold_task_mempolicy(struct proc_maps_private
*priv
)
110 struct task_struct
*task
= priv
->task
;
113 priv
->task_mempolicy
= get_task_policy(task
);
114 mpol_get(priv
->task_mempolicy
);
117 static void release_task_mempolicy(struct proc_maps_private
*priv
)
119 mpol_put(priv
->task_mempolicy
);
122 static void hold_task_mempolicy(struct proc_maps_private
*priv
)
125 static void release_task_mempolicy(struct proc_maps_private
*priv
)
130 static void vma_stop(struct proc_maps_private
*priv
)
132 struct mm_struct
*mm
= priv
->mm
;
134 release_task_mempolicy(priv
);
135 up_read(&mm
->mmap_sem
);
139 static struct vm_area_struct
*
140 m_next_vma(struct proc_maps_private
*priv
, struct vm_area_struct
*vma
)
142 if (vma
== priv
->tail_vma
)
144 return vma
->vm_next
?: priv
->tail_vma
;
147 static void m_cache_vma(struct seq_file
*m
, struct vm_area_struct
*vma
)
149 if (m
->count
< m
->size
) /* vma is copied successfully */
150 m
->version
= m_next_vma(m
->private, vma
) ? vma
->vm_start
: -1UL;
153 static void *m_start(struct seq_file
*m
, loff_t
*ppos
)
155 struct proc_maps_private
*priv
= m
->private;
156 unsigned long last_addr
= m
->version
;
157 struct mm_struct
*mm
;
158 struct vm_area_struct
*vma
;
159 unsigned int pos
= *ppos
;
161 /* See m_cache_vma(). Zero at the start or after lseek. */
162 if (last_addr
== -1UL)
165 priv
->task
= get_proc_task(priv
->inode
);
167 return ERR_PTR(-ESRCH
);
170 if (!mm
|| !atomic_inc_not_zero(&mm
->mm_users
))
173 down_read(&mm
->mmap_sem
);
174 hold_task_mempolicy(priv
);
175 priv
->tail_vma
= get_gate_vma(mm
);
178 vma
= find_vma(mm
, last_addr
);
179 if (vma
&& (vma
= m_next_vma(priv
, vma
)))
184 if (pos
< mm
->map_count
) {
185 for (vma
= mm
->mmap
; pos
; pos
--) {
186 m
->version
= vma
->vm_start
;
192 /* we do not bother to update m->version in this case */
193 if (pos
== mm
->map_count
&& priv
->tail_vma
)
194 return priv
->tail_vma
;
200 static void *m_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
202 struct proc_maps_private
*priv
= m
->private;
203 struct vm_area_struct
*next
;
206 next
= m_next_vma(priv
, v
);
212 static void m_stop(struct seq_file
*m
, void *v
)
214 struct proc_maps_private
*priv
= m
->private;
216 if (!IS_ERR_OR_NULL(v
))
219 put_task_struct(priv
->task
);
224 static int proc_maps_open(struct inode
*inode
, struct file
*file
,
225 const struct seq_operations
*ops
, int psize
)
227 struct proc_maps_private
*priv
= __seq_open_private(file
, ops
, psize
);
233 priv
->mm
= proc_mem_open(inode
, PTRACE_MODE_READ
);
234 if (IS_ERR(priv
->mm
)) {
235 int err
= PTR_ERR(priv
->mm
);
237 seq_release_private(inode
, file
);
244 static int proc_map_release(struct inode
*inode
, struct file
*file
)
246 struct seq_file
*seq
= file
->private_data
;
247 struct proc_maps_private
*priv
= seq
->private;
252 return seq_release_private(inode
, file
);
255 static int do_maps_open(struct inode
*inode
, struct file
*file
,
256 const struct seq_operations
*ops
)
258 return proc_maps_open(inode
, file
, ops
,
259 sizeof(struct proc_maps_private
));
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.
266 static int is_stack(struct proc_maps_private
*priv
,
267 struct vm_area_struct
*vma
, int is_pid
)
272 stack
= vma
->vm_start
<= vma
->vm_mm
->start_stack
&&
273 vma
->vm_end
>= vma
->vm_mm
->start_stack
;
275 struct inode
*inode
= priv
->inode
;
276 struct task_struct
*task
;
279 task
= pid_task(proc_pid(inode
), PIDTYPE_PID
);
281 stack
= vma_is_stack_for_task(vma
, task
);
288 show_map_vma(struct seq_file
*m
, struct vm_area_struct
*vma
, int is_pid
)
290 struct mm_struct
*mm
= vma
->vm_mm
;
291 struct file
*file
= vma
->vm_file
;
292 struct proc_maps_private
*priv
= m
->private;
293 vm_flags_t flags
= vma
->vm_flags
;
294 unsigned long ino
= 0;
295 unsigned long long pgoff
= 0;
296 unsigned long start
, end
;
298 const char *name
= NULL
;
301 struct inode
*inode
= file_inode(vma
->vm_file
);
302 dev
= inode
->i_sb
->s_dev
;
304 pgoff
= ((loff_t
)vma
->vm_pgoff
) << PAGE_SHIFT
;
307 /* We don't show the stack guard page in /proc/maps */
308 start
= vma
->vm_start
;
309 if (stack_guard_page_start(vma
, start
))
312 if (stack_guard_page_end(vma
, end
))
315 seq_setwidth(m
, 25 + sizeof(void *) * 6 - 1);
316 seq_printf(m
, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu ",
319 flags
& VM_READ
? 'r' : '-',
320 flags
& VM_WRITE
? 'w' : '-',
321 flags
& VM_EXEC
? 'x' : '-',
322 flags
& VM_MAYSHARE
? 's' : 'p',
324 MAJOR(dev
), MINOR(dev
), ino
);
327 * Print the dentry name for named mappings, and a
328 * special [heap] marker for the heap:
332 seq_file_path(m
, file
, "\n");
336 if (vma
->vm_ops
&& vma
->vm_ops
->name
) {
337 name
= vma
->vm_ops
->name(vma
);
342 name
= arch_vma_name(vma
);
349 if (vma
->vm_start
<= mm
->brk
&&
350 vma
->vm_end
>= mm
->start_brk
) {
355 if (is_stack(priv
, vma
, is_pid
))
367 static int show_map(struct seq_file
*m
, void *v
, int is_pid
)
369 show_map_vma(m
, v
, is_pid
);
374 static int show_pid_map(struct seq_file
*m
, void *v
)
376 return show_map(m
, v
, 1);
379 static int show_tid_map(struct seq_file
*m
, void *v
)
381 return show_map(m
, v
, 0);
384 static const struct seq_operations proc_pid_maps_op
= {
391 static const struct seq_operations proc_tid_maps_op
= {
398 static int pid_maps_open(struct inode
*inode
, struct file
*file
)
400 return do_maps_open(inode
, file
, &proc_pid_maps_op
);
403 static int tid_maps_open(struct inode
*inode
, struct file
*file
)
405 return do_maps_open(inode
, file
, &proc_tid_maps_op
);
408 const struct file_operations proc_pid_maps_operations
= {
409 .open
= pid_maps_open
,
412 .release
= proc_map_release
,
415 const struct file_operations proc_tid_maps_operations
= {
416 .open
= tid_maps_open
,
419 .release
= proc_map_release
,
423 * Proportional Set Size(PSS): my share of RSS.
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.
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.
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.
441 #ifdef CONFIG_PROC_PAGE_MONITOR
442 struct mem_size_stats
{
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
;
449 unsigned long anonymous
;
450 unsigned long anonymous_thp
;
451 unsigned long shmem_thp
;
453 unsigned long shared_hugetlb
;
454 unsigned long private_hugetlb
;
457 bool check_shmem_swap
;
460 static void smaps_account(struct mem_size_stats
*mss
, struct page
*page
,
461 bool compound
, bool young
, bool dirty
)
463 int i
, nr
= compound
? 1 << compound_order(page
) : 1;
464 unsigned long size
= nr
* PAGE_SIZE
;
467 mss
->anonymous
+= size
;
469 mss
->resident
+= size
;
470 /* Accumulate the size in pages that have been accessed. */
471 if (young
|| page_is_young(page
) || PageReferenced(page
))
472 mss
->referenced
+= size
;
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
479 if (page_count(page
) == 1) {
480 if (dirty
|| PageDirty(page
))
481 mss
->private_dirty
+= size
;
483 mss
->private_clean
+= size
;
484 mss
->pss
+= (u64
)size
<< PSS_SHIFT
;
488 for (i
= 0; i
< nr
; i
++, page
++) {
489 int mapcount
= page_mapcount(page
);
492 if (dirty
|| PageDirty(page
))
493 mss
->shared_dirty
+= PAGE_SIZE
;
495 mss
->shared_clean
+= PAGE_SIZE
;
496 mss
->pss
+= (PAGE_SIZE
<< PSS_SHIFT
) / mapcount
;
498 if (dirty
|| PageDirty(page
))
499 mss
->private_dirty
+= PAGE_SIZE
;
501 mss
->private_clean
+= PAGE_SIZE
;
502 mss
->pss
+= PAGE_SIZE
<< PSS_SHIFT
;
508 static int smaps_pte_hole(unsigned long addr
, unsigned long end
,
509 struct mm_walk
*walk
)
511 struct mem_size_stats
*mss
= walk
->private;
513 mss
->swap
+= shmem_partial_swap_usage(
514 walk
->vma
->vm_file
->f_mapping
, addr
, end
);
520 static void smaps_pte_entry(pte_t
*pte
, unsigned long addr
,
521 struct mm_walk
*walk
)
523 struct mem_size_stats
*mss
= walk
->private;
524 struct vm_area_struct
*vma
= walk
->vma
;
525 struct page
*page
= NULL
;
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
);
532 if (!non_swap_entry(swpent
)) {
535 mss
->swap
+= PAGE_SIZE
;
536 mapcount
= swp_swapcount(swpent
);
538 u64 pss_delta
= (u64
)PAGE_SIZE
<< PSS_SHIFT
;
540 do_div(pss_delta
, mapcount
);
541 mss
->swap_pss
+= pss_delta
;
543 mss
->swap_pss
+= (u64
)PAGE_SIZE
<< PSS_SHIFT
;
545 } else if (is_migration_entry(swpent
))
546 page
= migration_entry_to_page(swpent
);
547 } else if (unlikely(IS_ENABLED(CONFIG_SHMEM
) && mss
->check_shmem_swap
548 && pte_none(*pte
))) {
549 page
= find_get_entry(vma
->vm_file
->f_mapping
,
550 linear_page_index(vma
, addr
));
554 if (radix_tree_exceptional_entry(page
))
555 mss
->swap
+= PAGE_SIZE
;
565 smaps_account(mss
, page
, false, pte_young(*pte
), pte_dirty(*pte
));
568 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
569 static void smaps_pmd_entry(pmd_t
*pmd
, unsigned long addr
,
570 struct mm_walk
*walk
)
572 struct mem_size_stats
*mss
= walk
->private;
573 struct vm_area_struct
*vma
= walk
->vma
;
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
))
581 mss
->anonymous_thp
+= HPAGE_PMD_SIZE
;
582 else if (PageSwapBacked(page
))
583 mss
->shmem_thp
+= HPAGE_PMD_SIZE
;
584 else if (is_zone_device_page(page
))
587 VM_BUG_ON_PAGE(1, page
);
588 smaps_account(mss
, page
, true, pmd_young(*pmd
), pmd_dirty(*pmd
));
591 static void smaps_pmd_entry(pmd_t
*pmd
, unsigned long addr
,
592 struct mm_walk
*walk
)
597 static int smaps_pte_range(pmd_t
*pmd
, unsigned long addr
, unsigned long end
,
598 struct mm_walk
*walk
)
600 struct vm_area_struct
*vma
= walk
->vma
;
604 ptl
= pmd_trans_huge_lock(pmd
, vma
);
606 smaps_pmd_entry(pmd
, addr
, walk
);
611 if (pmd_trans_unstable(pmd
))
614 * The mmap_sem held all the way back in m_start() is what
615 * keeps khugepaged out of here and from collapsing things
618 pte
= pte_offset_map_lock(vma
->vm_mm
, pmd
, addr
, &ptl
);
619 for (; addr
!= end
; pte
++, addr
+= PAGE_SIZE
)
620 smaps_pte_entry(pte
, addr
, walk
);
621 pte_unmap_unlock(pte
- 1, ptl
);
626 static void show_smap_vma_flags(struct seq_file
*m
, struct vm_area_struct
*vma
)
629 * Don't forget to update Documentation/ on changes.
631 static const char mnemonics
[BITS_PER_LONG
][2] = {
633 * In case if we meet a flag we don't know about.
635 [0 ... (BITS_PER_LONG
-1)] = "??",
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",
648 #ifdef CONFIG_X86_INTEL_MPX
649 [ilog2(VM_MPX
)] = "mp",
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",
660 [ilog2(VM_ARCH_1
)] = "ar",
661 [ilog2(VM_DONTDUMP
)] = "dd",
662 #ifdef CONFIG_MEM_SOFT_DIRTY
663 [ilog2(VM_SOFTDIRTY
)] = "sd",
665 [ilog2(VM_MIXEDMAP
)] = "mm",
666 [ilog2(VM_HUGEPAGE
)] = "hg",
667 [ilog2(VM_NOHUGEPAGE
)] = "nh",
668 [ilog2(VM_MERGEABLE
)] = "mg",
669 [ilog2(VM_UFFD_MISSING
)]= "um",
670 [ilog2(VM_UFFD_WP
)] = "uw",
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
)] = "",
681 seq_puts(m
, "VmFlags: ");
682 for (i
= 0; i
< BITS_PER_LONG
; i
++) {
683 if (!mnemonics
[i
][0])
685 if (vma
->vm_flags
& (1UL << i
)) {
686 seq_printf(m
, "%c%c ",
687 mnemonics
[i
][0], mnemonics
[i
][1]);
693 #ifdef CONFIG_HUGETLB_PAGE
694 static int smaps_hugetlb_range(pte_t
*pte
, unsigned long hmask
,
695 unsigned long addr
, unsigned long end
,
696 struct mm_walk
*walk
)
698 struct mem_size_stats
*mss
= walk
->private;
699 struct vm_area_struct
*vma
= walk
->vma
;
700 struct page
*page
= NULL
;
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
);
707 if (is_migration_entry(swpent
))
708 page
= migration_entry_to_page(swpent
);
711 int mapcount
= page_mapcount(page
);
714 mss
->shared_hugetlb
+= huge_page_size(hstate_vma(vma
));
716 mss
->private_hugetlb
+= huge_page_size(hstate_vma(vma
));
720 #endif /* HUGETLB_PAGE */
722 void __weak
arch_show_smap(struct seq_file
*m
, struct vm_area_struct
*vma
)
726 static int show_smap(struct seq_file
*m
, void *v
, int is_pid
)
728 struct vm_area_struct
*vma
= v
;
729 struct mem_size_stats mss
;
730 struct mm_walk smaps_walk
= {
731 .pmd_entry
= smaps_pte_range
,
732 #ifdef CONFIG_HUGETLB_PAGE
733 .hugetlb_entry
= smaps_hugetlb_range
,
739 memset(&mss
, 0, sizeof mss
);
742 if (vma
->vm_file
&& shmem_mapping(vma
->vm_file
->f_mapping
)) {
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.
753 unsigned long shmem_swapped
= shmem_swap_usage(vma
);
755 if (!shmem_swapped
|| (vma
->vm_flags
& VM_SHARED
) ||
756 !(vma
->vm_flags
& VM_WRITE
)) {
757 mss
.swap
= shmem_swapped
;
759 mss
.check_shmem_swap
= true;
760 smaps_walk
.pte_hole
= smaps_pte_hole
;
765 /* mmap_sem is held in m_start */
766 walk_page_vma(vma
, &smaps_walk
);
768 show_map_vma(m
, vma
, is_pid
);
774 "Shared_Clean: %8lu kB\n"
775 "Shared_Dirty: %8lu kB\n"
776 "Private_Clean: %8lu kB\n"
777 "Private_Dirty: %8lu kB\n"
778 "Referenced: %8lu kB\n"
779 "Anonymous: %8lu kB\n"
780 "AnonHugePages: %8lu kB\n"
781 "ShmemPmdMapped: %8lu kB\n"
782 "Shared_Hugetlb: %8lu kB\n"
783 "Private_Hugetlb: %7lu kB\n"
786 "KernelPageSize: %8lu kB\n"
787 "MMUPageSize: %8lu kB\n"
789 (vma
->vm_end
- vma
->vm_start
) >> 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,
796 mss
.referenced
>> 10,
798 mss
.anonymous_thp
>> 10,
800 mss
.shared_hugetlb
>> 10,
801 mss
.private_hugetlb
>> 10,
803 (unsigned long)(mss
.swap_pss
>> (10 + PSS_SHIFT
)),
804 vma_kernel_pagesize(vma
) >> 10,
805 vma_mmu_pagesize(vma
) >> 10,
806 (vma
->vm_flags
& VM_LOCKED
) ?
807 (unsigned long)(mss
.pss
>> (10 + PSS_SHIFT
)) : 0);
809 arch_show_smap(m
, vma
);
810 show_smap_vma_flags(m
, vma
);
815 static int show_pid_smap(struct seq_file
*m
, void *v
)
817 return show_smap(m
, v
, 1);
820 static int show_tid_smap(struct seq_file
*m
, void *v
)
822 return show_smap(m
, v
, 0);
825 static const struct seq_operations proc_pid_smaps_op
= {
829 .show
= show_pid_smap
832 static const struct seq_operations proc_tid_smaps_op
= {
836 .show
= show_tid_smap
839 static int pid_smaps_open(struct inode
*inode
, struct file
*file
)
841 return do_maps_open(inode
, file
, &proc_pid_smaps_op
);
844 static int tid_smaps_open(struct inode
*inode
, struct file
*file
)
846 return do_maps_open(inode
, file
, &proc_tid_smaps_op
);
849 const struct file_operations proc_pid_smaps_operations
= {
850 .open
= pid_smaps_open
,
853 .release
= proc_map_release
,
856 const struct file_operations proc_tid_smaps_operations
= {
857 .open
= tid_smaps_open
,
860 .release
= proc_map_release
,
863 enum clear_refs_types
{
867 CLEAR_REFS_SOFT_DIRTY
,
868 CLEAR_REFS_MM_HIWATER_RSS
,
872 struct clear_refs_private
{
873 enum clear_refs_types type
;
876 #ifdef CONFIG_MEM_SOFT_DIRTY
877 static inline void clear_soft_dirty(struct vm_area_struct
*vma
,
878 unsigned long addr
, pte_t
*pte
)
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.
888 if (pte_present(ptent
)) {
889 ptent
= ptep_modify_prot_start(vma
->vm_mm
, addr
, pte
);
890 ptent
= pte_wrprotect(ptent
);
891 ptent
= pte_clear_soft_dirty(ptent
);
892 ptep_modify_prot_commit(vma
->vm_mm
, addr
, pte
, ptent
);
893 } else if (is_swap_pte(ptent
)) {
894 ptent
= pte_swp_clear_soft_dirty(ptent
);
895 set_pte_at(vma
->vm_mm
, addr
, pte
, ptent
);
899 static inline void clear_soft_dirty(struct vm_area_struct
*vma
,
900 unsigned long addr
, pte_t
*pte
)
905 #if defined(CONFIG_MEM_SOFT_DIRTY) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
906 static inline void clear_soft_dirty_pmd(struct vm_area_struct
*vma
,
907 unsigned long addr
, pmd_t
*pmdp
)
909 pmd_t pmd
= pmdp_huge_get_and_clear(vma
->vm_mm
, addr
, pmdp
);
911 pmd
= pmd_wrprotect(pmd
);
912 pmd
= pmd_clear_soft_dirty(pmd
);
914 set_pmd_at(vma
->vm_mm
, addr
, pmdp
, pmd
);
917 static inline void clear_soft_dirty_pmd(struct vm_area_struct
*vma
,
918 unsigned long addr
, pmd_t
*pmdp
)
923 static int clear_refs_pte_range(pmd_t
*pmd
, unsigned long addr
,
924 unsigned long end
, struct mm_walk
*walk
)
926 struct clear_refs_private
*cp
= walk
->private;
927 struct vm_area_struct
*vma
= walk
->vma
;
932 ptl
= pmd_trans_huge_lock(pmd
, vma
);
934 if (cp
->type
== CLEAR_REFS_SOFT_DIRTY
) {
935 clear_soft_dirty_pmd(vma
, addr
, pmd
);
939 page
= pmd_page(*pmd
);
941 /* Clear accessed and referenced bits. */
942 pmdp_test_and_clear_young(vma
, addr
, pmd
);
943 test_and_clear_page_young(page
);
944 ClearPageReferenced(page
);
950 if (pmd_trans_unstable(pmd
))
953 pte
= pte_offset_map_lock(vma
->vm_mm
, pmd
, addr
, &ptl
);
954 for (; addr
!= end
; pte
++, addr
+= PAGE_SIZE
) {
957 if (cp
->type
== CLEAR_REFS_SOFT_DIRTY
) {
958 clear_soft_dirty(vma
, addr
, pte
);
962 if (!pte_present(ptent
))
965 page
= vm_normal_page(vma
, addr
, ptent
);
969 /* Clear accessed and referenced bits. */
970 ptep_test_and_clear_young(vma
, addr
, pte
);
971 test_and_clear_page_young(page
);
972 ClearPageReferenced(page
);
974 pte_unmap_unlock(pte
- 1, ptl
);
979 static int clear_refs_test_walk(unsigned long start
, unsigned long end
,
980 struct mm_walk
*walk
)
982 struct clear_refs_private
*cp
= walk
->private;
983 struct vm_area_struct
*vma
= walk
->vma
;
985 if (vma
->vm_flags
& VM_PFNMAP
)
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.
994 if (cp
->type
== CLEAR_REFS_ANON
&& vma
->vm_file
)
996 if (cp
->type
== CLEAR_REFS_MAPPED
&& !vma
->vm_file
)
1001 static ssize_t
clear_refs_write(struct file
*file
, const char __user
*buf
,
1002 size_t count
, loff_t
*ppos
)
1004 struct task_struct
*task
;
1005 char buffer
[PROC_NUMBUF
];
1006 struct mm_struct
*mm
;
1007 struct vm_area_struct
*vma
;
1008 enum clear_refs_types type
;
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
))
1017 rv
= kstrtoint(strstrip(buffer
), 10, &itype
);
1020 type
= (enum clear_refs_types
)itype
;
1021 if (type
< CLEAR_REFS_ALL
|| type
>= CLEAR_REFS_LAST
)
1024 task
= get_proc_task(file_inode(file
));
1027 mm
= get_task_mm(task
);
1029 struct clear_refs_private cp
= {
1032 struct mm_walk clear_refs_walk
= {
1033 .pmd_entry
= clear_refs_pte_range
,
1034 .test_walk
= clear_refs_test_walk
,
1039 if (type
== CLEAR_REFS_MM_HIWATER_RSS
) {
1040 if (down_write_killable(&mm
->mmap_sem
)) {
1046 * Writing 5 to /proc/pid/clear_refs resets the peak
1047 * resident set size to this mm's current rss value.
1049 reset_mm_hiwater_rss(mm
);
1050 up_write(&mm
->mmap_sem
);
1054 down_read(&mm
->mmap_sem
);
1055 if (type
== CLEAR_REFS_SOFT_DIRTY
) {
1056 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
) {
1057 if (!(vma
->vm_flags
& VM_SOFTDIRTY
))
1059 up_read(&mm
->mmap_sem
);
1060 if (down_write_killable(&mm
->mmap_sem
)) {
1064 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
) {
1065 vma
->vm_flags
&= ~VM_SOFTDIRTY
;
1066 vma_set_page_prot(vma
);
1068 downgrade_write(&mm
->mmap_sem
);
1071 mmu_notifier_invalidate_range_start(mm
, 0, -1);
1073 walk_page_range(0, ~0UL, &clear_refs_walk
);
1074 if (type
== CLEAR_REFS_SOFT_DIRTY
)
1075 mmu_notifier_invalidate_range_end(mm
, 0, -1);
1077 up_read(&mm
->mmap_sem
);
1081 put_task_struct(task
);
1086 const struct file_operations proc_clear_refs_operations
= {
1087 .write
= clear_refs_write
,
1088 .llseek
= noop_llseek
,
1095 struct pagemapread
{
1096 int pos
, len
; /* units: PM_ENTRY_BYTES, not bytes */
1097 pagemap_entry_t
*buffer
;
1101 #define PAGEMAP_WALK_SIZE (PMD_SIZE)
1102 #define PAGEMAP_WALK_MASK (PMD_MASK)
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)
1108 #define PM_MMAP_EXCLUSIVE BIT_ULL(56)
1109 #define PM_FILE BIT_ULL(61)
1110 #define PM_SWAP BIT_ULL(62)
1111 #define PM_PRESENT BIT_ULL(63)
1113 #define PM_END_OF_BUFFER 1
1115 static inline pagemap_entry_t
make_pme(u64 frame
, u64 flags
)
1117 return (pagemap_entry_t
) { .pme
= (frame
& PM_PFRAME_MASK
) | flags
};
1120 static int add_to_pagemap(unsigned long addr
, pagemap_entry_t
*pme
,
1121 struct pagemapread
*pm
)
1123 pm
->buffer
[pm
->pos
++] = *pme
;
1124 if (pm
->pos
>= pm
->len
)
1125 return PM_END_OF_BUFFER
;
1129 static int pagemap_pte_hole(unsigned long start
, unsigned long end
,
1130 struct mm_walk
*walk
)
1132 struct pagemapread
*pm
= walk
->private;
1133 unsigned long addr
= start
;
1136 while (addr
< end
) {
1137 struct vm_area_struct
*vma
= find_vma(walk
->mm
, addr
);
1138 pagemap_entry_t pme
= make_pme(0, 0);
1139 /* End of address space hole, which we mark as non-present. */
1140 unsigned long hole_end
;
1143 hole_end
= min(end
, vma
->vm_start
);
1147 for (; addr
< hole_end
; addr
+= PAGE_SIZE
) {
1148 err
= add_to_pagemap(addr
, &pme
, pm
);
1156 /* Addresses in the VMA. */
1157 if (vma
->vm_flags
& VM_SOFTDIRTY
)
1158 pme
= make_pme(0, PM_SOFT_DIRTY
);
1159 for (; addr
< min(end
, vma
->vm_end
); addr
+= PAGE_SIZE
) {
1160 err
= add_to_pagemap(addr
, &pme
, pm
);
1169 static pagemap_entry_t
pte_to_pagemap_entry(struct pagemapread
*pm
,
1170 struct vm_area_struct
*vma
, unsigned long addr
, pte_t pte
)
1172 u64 frame
= 0, flags
= 0;
1173 struct page
*page
= NULL
;
1175 if (pte_present(pte
)) {
1177 frame
= pte_pfn(pte
);
1178 flags
|= PM_PRESENT
;
1179 page
= vm_normal_page(vma
, addr
, pte
);
1180 if (pte_soft_dirty(pte
))
1181 flags
|= PM_SOFT_DIRTY
;
1182 } else if (is_swap_pte(pte
)) {
1184 if (pte_swp_soft_dirty(pte
))
1185 flags
|= PM_SOFT_DIRTY
;
1186 entry
= pte_to_swp_entry(pte
);
1187 frame
= swp_type(entry
) |
1188 (swp_offset(entry
) << MAX_SWAPFILES_SHIFT
);
1190 if (is_migration_entry(entry
))
1191 page
= migration_entry_to_page(entry
);
1194 if (page
&& !PageAnon(page
))
1196 if (page
&& page_mapcount(page
) == 1)
1197 flags
|= PM_MMAP_EXCLUSIVE
;
1198 if (vma
->vm_flags
& VM_SOFTDIRTY
)
1199 flags
|= PM_SOFT_DIRTY
;
1201 return make_pme(frame
, flags
);
1204 static int pagemap_pmd_range(pmd_t
*pmdp
, unsigned long addr
, unsigned long end
,
1205 struct mm_walk
*walk
)
1207 struct vm_area_struct
*vma
= walk
->vma
;
1208 struct pagemapread
*pm
= walk
->private;
1210 pte_t
*pte
, *orig_pte
;
1213 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1214 ptl
= pmd_trans_huge_lock(pmdp
, vma
);
1216 u64 flags
= 0, frame
= 0;
1219 if ((vma
->vm_flags
& VM_SOFTDIRTY
) || pmd_soft_dirty(pmd
))
1220 flags
|= PM_SOFT_DIRTY
;
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.
1228 if (pmd_present(pmd
)) {
1229 struct page
*page
= pmd_page(pmd
);
1231 if (page_mapcount(page
) == 1)
1232 flags
|= PM_MMAP_EXCLUSIVE
;
1234 flags
|= PM_PRESENT
;
1236 frame
= pmd_pfn(pmd
) +
1237 ((addr
& ~PMD_MASK
) >> PAGE_SHIFT
);
1240 for (; addr
!= end
; addr
+= PAGE_SIZE
) {
1241 pagemap_entry_t pme
= make_pme(frame
, flags
);
1243 err
= add_to_pagemap(addr
, &pme
, pm
);
1246 if (pm
->show_pfn
&& (flags
& PM_PRESENT
))
1253 if (pmd_trans_unstable(pmdp
))
1255 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1258 * We can assume that @vma always points to a valid one and @end never
1259 * goes beyond vma->vm_end.
1261 orig_pte
= pte
= pte_offset_map_lock(walk
->mm
, pmdp
, addr
, &ptl
);
1262 for (; addr
< end
; pte
++, addr
+= PAGE_SIZE
) {
1263 pagemap_entry_t pme
;
1265 pme
= pte_to_pagemap_entry(pm
, vma
, addr
, *pte
);
1266 err
= add_to_pagemap(addr
, &pme
, pm
);
1270 pte_unmap_unlock(orig_pte
, ptl
);
1277 #ifdef CONFIG_HUGETLB_PAGE
1278 /* This function walks within one hugetlb entry in the single call */
1279 static int pagemap_hugetlb_range(pte_t
*ptep
, unsigned long hmask
,
1280 unsigned long addr
, unsigned long end
,
1281 struct mm_walk
*walk
)
1283 struct pagemapread
*pm
= walk
->private;
1284 struct vm_area_struct
*vma
= walk
->vma
;
1285 u64 flags
= 0, frame
= 0;
1289 if (vma
->vm_flags
& VM_SOFTDIRTY
)
1290 flags
|= PM_SOFT_DIRTY
;
1292 pte
= huge_ptep_get(ptep
);
1293 if (pte_present(pte
)) {
1294 struct page
*page
= pte_page(pte
);
1296 if (!PageAnon(page
))
1299 if (page_mapcount(page
) == 1)
1300 flags
|= PM_MMAP_EXCLUSIVE
;
1302 flags
|= PM_PRESENT
;
1304 frame
= pte_pfn(pte
) +
1305 ((addr
& ~hmask
) >> PAGE_SHIFT
);
1308 for (; addr
!= end
; addr
+= PAGE_SIZE
) {
1309 pagemap_entry_t pme
= make_pme(frame
, flags
);
1311 err
= add_to_pagemap(addr
, &pme
, pm
);
1314 if (pm
->show_pfn
&& (flags
& PM_PRESENT
))
1322 #endif /* HUGETLB_PAGE */
1325 * /proc/pid/pagemap - an array mapping virtual pages to pfns
1327 * For each page in the address space, this file contains one 64-bit entry
1328 * consisting of the following:
1330 * Bits 0-54 page frame number (PFN) if present
1331 * Bits 0-4 swap type if swapped
1332 * Bits 5-54 swap offset if swapped
1333 * Bit 55 pte is soft-dirty (see Documentation/vm/soft-dirty.txt)
1334 * Bit 56 page exclusively mapped
1336 * Bit 61 page is file-page or shared-anon
1337 * Bit 62 page swapped
1338 * Bit 63 page present
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
1343 * precisely which pages are mapped (or in swap) and comparing mapped
1344 * pages between processes.
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.
1350 static ssize_t
pagemap_read(struct file
*file
, char __user
*buf
,
1351 size_t count
, loff_t
*ppos
)
1353 struct mm_struct
*mm
= file
->private_data
;
1354 struct pagemapread pm
;
1355 struct mm_walk pagemap_walk
= {};
1357 unsigned long svpfn
;
1358 unsigned long start_vaddr
;
1359 unsigned long end_vaddr
;
1360 int ret
= 0, copied
= 0;
1362 if (!mm
|| !atomic_inc_not_zero(&mm
->mm_users
))
1366 /* file position must be aligned */
1367 if ((*ppos
% PM_ENTRY_BYTES
) || (count
% PM_ENTRY_BYTES
))
1374 /* do not disclose physical addresses: attack vector */
1375 pm
.show_pfn
= file_ns_capable(file
, &init_user_ns
, CAP_SYS_ADMIN
);
1377 pm
.len
= (PAGEMAP_WALK_SIZE
>> PAGE_SHIFT
);
1378 pm
.buffer
= kmalloc(pm
.len
* PM_ENTRY_BYTES
, GFP_TEMPORARY
);
1383 pagemap_walk
.pmd_entry
= pagemap_pmd_range
;
1384 pagemap_walk
.pte_hole
= pagemap_pte_hole
;
1385 #ifdef CONFIG_HUGETLB_PAGE
1386 pagemap_walk
.hugetlb_entry
= pagemap_hugetlb_range
;
1388 pagemap_walk
.mm
= mm
;
1389 pagemap_walk
.private = &pm
;
1392 svpfn
= src
/ PM_ENTRY_BYTES
;
1393 start_vaddr
= svpfn
<< PAGE_SHIFT
;
1394 end_vaddr
= mm
->task_size
;
1396 /* watch out for wraparound */
1397 if (svpfn
> mm
->task_size
>> PAGE_SHIFT
)
1398 start_vaddr
= end_vaddr
;
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.
1407 while (count
&& (start_vaddr
< end_vaddr
)) {
1412 end
= (start_vaddr
+ PAGEMAP_WALK_SIZE
) & PAGEMAP_WALK_MASK
;
1414 if (end
< start_vaddr
|| 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
);
1421 len
= min(count
, PM_ENTRY_BYTES
* pm
.pos
);
1422 if (copy_to_user(buf
, pm
.buffer
, len
)) {
1431 if (!ret
|| ret
== PM_END_OF_BUFFER
)
1442 static int pagemap_open(struct inode
*inode
, struct file
*file
)
1444 struct mm_struct
*mm
;
1446 mm
= proc_mem_open(inode
, PTRACE_MODE_READ
);
1449 file
->private_data
= mm
;
1453 static int pagemap_release(struct inode
*inode
, struct file
*file
)
1455 struct mm_struct
*mm
= file
->private_data
;
1462 const struct file_operations proc_pagemap_operations
= {
1463 .llseek
= mem_lseek
, /* borrow this */
1464 .read
= pagemap_read
,
1465 .open
= pagemap_open
,
1466 .release
= pagemap_release
,
1468 #endif /* CONFIG_PROC_PAGE_MONITOR */
1473 unsigned long pages
;
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
];
1483 struct numa_maps_private
{
1484 struct proc_maps_private proc_maps
;
1485 struct numa_maps md
;
1488 static void gather_stats(struct page
*page
, struct numa_maps
*md
, int pte_dirty
,
1489 unsigned long nr_pages
)
1491 int count
= page_mapcount(page
);
1493 md
->pages
+= nr_pages
;
1494 if (pte_dirty
|| PageDirty(page
))
1495 md
->dirty
+= nr_pages
;
1497 if (PageSwapCache(page
))
1498 md
->swapcache
+= nr_pages
;
1500 if (PageActive(page
) || PageUnevictable(page
))
1501 md
->active
+= nr_pages
;
1503 if (PageWriteback(page
))
1504 md
->writeback
+= nr_pages
;
1507 md
->anon
+= nr_pages
;
1509 if (count
> md
->mapcount_max
)
1510 md
->mapcount_max
= count
;
1512 md
->node
[page_to_nid(page
)] += nr_pages
;
1515 static struct page
*can_gather_numa_stats(pte_t pte
, struct vm_area_struct
*vma
,
1521 if (!pte_present(pte
))
1524 page
= vm_normal_page(vma
, addr
, pte
);
1528 if (PageReserved(page
))
1531 nid
= page_to_nid(page
);
1532 if (!node_isset(nid
, node_states
[N_MEMORY
]))
1538 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1539 static struct page
*can_gather_numa_stats_pmd(pmd_t pmd
,
1540 struct vm_area_struct
*vma
,
1546 if (!pmd_present(pmd
))
1549 page
= vm_normal_page_pmd(vma
, addr
, pmd
);
1553 if (PageReserved(page
))
1556 nid
= page_to_nid(page
);
1557 if (!node_isset(nid
, node_states
[N_MEMORY
]))
1564 static int gather_pte_stats(pmd_t
*pmd
, unsigned long addr
,
1565 unsigned long end
, struct mm_walk
*walk
)
1567 struct numa_maps
*md
= walk
->private;
1568 struct vm_area_struct
*vma
= walk
->vma
;
1573 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1574 ptl
= pmd_trans_huge_lock(pmd
, vma
);
1578 page
= can_gather_numa_stats_pmd(*pmd
, vma
, addr
);
1580 gather_stats(page
, md
, pmd_dirty(*pmd
),
1581 HPAGE_PMD_SIZE
/PAGE_SIZE
);
1586 if (pmd_trans_unstable(pmd
))
1589 orig_pte
= pte
= pte_offset_map_lock(walk
->mm
, pmd
, addr
, &ptl
);
1591 struct page
*page
= can_gather_numa_stats(*pte
, vma
, addr
);
1594 gather_stats(page
, md
, pte_dirty(*pte
), 1);
1596 } while (pte
++, addr
+= PAGE_SIZE
, addr
!= end
);
1597 pte_unmap_unlock(orig_pte
, ptl
);
1600 #ifdef CONFIG_HUGETLB_PAGE
1601 static int gather_hugetlb_stats(pte_t
*pte
, unsigned long hmask
,
1602 unsigned long addr
, unsigned long end
, struct mm_walk
*walk
)
1604 pte_t huge_pte
= huge_ptep_get(pte
);
1605 struct numa_maps
*md
;
1608 if (!pte_present(huge_pte
))
1611 page
= pte_page(huge_pte
);
1616 gather_stats(page
, md
, pte_dirty(huge_pte
), 1);
1621 static int gather_hugetlb_stats(pte_t
*pte
, unsigned long hmask
,
1622 unsigned long addr
, unsigned long end
, struct mm_walk
*walk
)
1629 * Display pages allocated per node and memory policy via /proc.
1631 static int show_numa_map(struct seq_file
*m
, void *v
, int is_pid
)
1633 struct numa_maps_private
*numa_priv
= m
->private;
1634 struct proc_maps_private
*proc_priv
= &numa_priv
->proc_maps
;
1635 struct vm_area_struct
*vma
= v
;
1636 struct numa_maps
*md
= &numa_priv
->md
;
1637 struct file
*file
= vma
->vm_file
;
1638 struct mm_struct
*mm
= vma
->vm_mm
;
1639 struct mm_walk walk
= {
1640 .hugetlb_entry
= gather_hugetlb_stats
,
1641 .pmd_entry
= gather_pte_stats
,
1645 struct mempolicy
*pol
;
1652 /* Ensure we start with an empty set of numa_maps statistics. */
1653 memset(md
, 0, sizeof(*md
));
1655 pol
= __get_vma_policy(vma
, vma
->vm_start
);
1657 mpol_to_str(buffer
, sizeof(buffer
), pol
);
1660 mpol_to_str(buffer
, sizeof(buffer
), proc_priv
->task_mempolicy
);
1663 seq_printf(m
, "%08lx %s", vma
->vm_start
, buffer
);
1666 seq_puts(m
, " file=");
1667 seq_file_path(m
, file
, "\n\t= ");
1668 } else if (vma
->vm_start
<= mm
->brk
&& vma
->vm_end
>= mm
->start_brk
) {
1669 seq_puts(m
, " heap");
1670 } else if (is_stack(proc_priv
, vma
, is_pid
)) {
1671 seq_puts(m
, " stack");
1674 if (is_vm_hugetlb_page(vma
))
1675 seq_puts(m
, " huge");
1677 /* mmap_sem is held by m_start */
1678 walk_page_vma(vma
, &walk
);
1684 seq_printf(m
, " anon=%lu", md
->anon
);
1687 seq_printf(m
, " dirty=%lu", md
->dirty
);
1689 if (md
->pages
!= md
->anon
&& md
->pages
!= md
->dirty
)
1690 seq_printf(m
, " mapped=%lu", md
->pages
);
1692 if (md
->mapcount_max
> 1)
1693 seq_printf(m
, " mapmax=%lu", md
->mapcount_max
);
1696 seq_printf(m
, " swapcache=%lu", md
->swapcache
);
1698 if (md
->active
< md
->pages
&& !is_vm_hugetlb_page(vma
))
1699 seq_printf(m
, " active=%lu", md
->active
);
1702 seq_printf(m
, " writeback=%lu", md
->writeback
);
1704 for_each_node_state(nid
, N_MEMORY
)
1706 seq_printf(m
, " N%d=%lu", nid
, md
->node
[nid
]);
1708 seq_printf(m
, " kernelpagesize_kB=%lu", vma_kernel_pagesize(vma
) >> 10);
1711 m_cache_vma(m
, vma
);
1715 static int show_pid_numa_map(struct seq_file
*m
, void *v
)
1717 return show_numa_map(m
, v
, 1);
1720 static int show_tid_numa_map(struct seq_file
*m
, void *v
)
1722 return show_numa_map(m
, v
, 0);
1725 static const struct seq_operations proc_pid_numa_maps_op
= {
1729 .show
= show_pid_numa_map
,
1732 static const struct seq_operations proc_tid_numa_maps_op
= {
1736 .show
= show_tid_numa_map
,
1739 static int numa_maps_open(struct inode
*inode
, struct file
*file
,
1740 const struct seq_operations
*ops
)
1742 return proc_maps_open(inode
, file
, ops
,
1743 sizeof(struct numa_maps_private
));
1746 static int pid_numa_maps_open(struct inode
*inode
, struct file
*file
)
1748 return numa_maps_open(inode
, file
, &proc_pid_numa_maps_op
);
1751 static int tid_numa_maps_open(struct inode
*inode
, struct file
*file
)
1753 return numa_maps_open(inode
, file
, &proc_tid_numa_maps_op
);
1756 const struct file_operations proc_pid_numa_maps_operations
= {
1757 .open
= pid_numa_maps_open
,
1759 .llseek
= seq_lseek
,
1760 .release
= proc_map_release
,
1763 const struct file_operations proc_tid_numa_maps_operations
= {
1764 .open
= tid_numa_maps_open
,
1766 .llseek
= seq_lseek
,
1767 .release
= proc_map_release
,
1769 #endif /* CONFIG_NUMA */