2 #include <linux/hugetlb.h>
3 #include <linux/huge_mm.h>
4 #include <linux/mount.h>
5 #include <linux/seq_file.h>
6 #include <linux/highmem.h>
7 #include <linux/ptrace.h>
8 #include <linux/slab.h>
9 #include <linux/pagemap.h>
10 #include <linux/mempolicy.h>
11 #include <linux/rmap.h>
12 #include <linux/swap.h>
13 #include <linux/swapops.h>
16 #include <asm/uaccess.h>
17 #include <asm/tlbflush.h>
20 void task_mem(struct seq_file
*m
, struct mm_struct
*mm
)
22 unsigned long data
, text
, lib
, swap
;
23 unsigned long hiwater_vm
, total_vm
, hiwater_rss
, total_rss
;
26 * Note: to minimize their overhead, mm maintains hiwater_vm and
27 * hiwater_rss only when about to *lower* total_vm or rss. Any
28 * collector of these hiwater stats must therefore get total_vm
29 * and rss too, which will usually be the higher. Barriers? not
30 * worth the effort, such snapshots can always be inconsistent.
32 hiwater_vm
= total_vm
= mm
->total_vm
;
33 if (hiwater_vm
< mm
->hiwater_vm
)
34 hiwater_vm
= mm
->hiwater_vm
;
35 hiwater_rss
= total_rss
= get_mm_rss(mm
);
36 if (hiwater_rss
< mm
->hiwater_rss
)
37 hiwater_rss
= mm
->hiwater_rss
;
39 data
= mm
->total_vm
- mm
->shared_vm
- mm
->stack_vm
;
40 text
= (PAGE_ALIGN(mm
->end_code
) - (mm
->start_code
& PAGE_MASK
)) >> 10;
41 lib
= (mm
->exec_vm
<< (PAGE_SHIFT
-10)) - text
;
42 swap
= get_mm_counter(mm
, MM_SWAPENTS
);
55 hiwater_vm
<< (PAGE_SHIFT
-10),
56 (total_vm
- mm
->reserved_vm
) << (PAGE_SHIFT
-10),
57 mm
->locked_vm
<< (PAGE_SHIFT
-10),
58 hiwater_rss
<< (PAGE_SHIFT
-10),
59 total_rss
<< (PAGE_SHIFT
-10),
60 data
<< (PAGE_SHIFT
-10),
61 mm
->stack_vm
<< (PAGE_SHIFT
-10), text
, lib
,
62 (PTRS_PER_PTE
*sizeof(pte_t
)*mm
->nr_ptes
) >> 10,
63 swap
<< (PAGE_SHIFT
-10));
66 unsigned long task_vsize(struct mm_struct
*mm
)
68 return PAGE_SIZE
* mm
->total_vm
;
71 unsigned long task_statm(struct mm_struct
*mm
,
72 unsigned long *shared
, unsigned long *text
,
73 unsigned long *data
, unsigned long *resident
)
75 *shared
= get_mm_counter(mm
, MM_FILEPAGES
);
76 *text
= (PAGE_ALIGN(mm
->end_code
) - (mm
->start_code
& PAGE_MASK
))
78 *data
= mm
->total_vm
- mm
->shared_vm
;
79 *resident
= *shared
+ get_mm_counter(mm
, MM_ANONPAGES
);
83 static void pad_len_spaces(struct seq_file
*m
, int len
)
85 len
= 25 + sizeof(void*) * 6 - len
;
88 seq_printf(m
, "%*c", len
, ' ');
91 static void vma_stop(struct proc_maps_private
*priv
, struct vm_area_struct
*vma
)
93 if (vma
&& vma
!= priv
->tail_vma
) {
94 struct mm_struct
*mm
= vma
->vm_mm
;
95 up_read(&mm
->mmap_sem
);
100 static void *m_start(struct seq_file
*m
, loff_t
*pos
)
102 struct proc_maps_private
*priv
= m
->private;
103 unsigned long last_addr
= m
->version
;
104 struct mm_struct
*mm
;
105 struct vm_area_struct
*vma
, *tail_vma
= NULL
;
108 /* Clear the per syscall fields in priv */
110 priv
->tail_vma
= NULL
;
113 * We remember last_addr rather than next_addr to hit with
114 * mmap_cache most of the time. We have zero last_addr at
115 * the beginning and also after lseek. We will have -1 last_addr
116 * after the end of the vmas.
119 if (last_addr
== -1UL)
122 priv
->task
= get_pid_task(priv
->pid
, PIDTYPE_PID
);
124 return ERR_PTR(-ESRCH
);
126 mm
= mm_for_maps(priv
->task
);
127 if (!mm
|| IS_ERR(mm
))
129 down_read(&mm
->mmap_sem
);
131 tail_vma
= get_gate_vma(priv
->task
->mm
);
132 priv
->tail_vma
= tail_vma
;
134 /* Start with last addr hint */
135 vma
= find_vma(mm
, last_addr
);
136 if (last_addr
&& vma
) {
142 * Check the vma index is within the range and do
143 * sequential scan until m_index.
146 if ((unsigned long)l
< mm
->map_count
) {
153 if (l
!= mm
->map_count
)
154 tail_vma
= NULL
; /* After gate vma */
160 /* End of vmas has been reached */
161 m
->version
= (tail_vma
!= NULL
)? 0: -1UL;
162 up_read(&mm
->mmap_sem
);
167 static void *m_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
169 struct proc_maps_private
*priv
= m
->private;
170 struct vm_area_struct
*vma
= v
;
171 struct vm_area_struct
*tail_vma
= priv
->tail_vma
;
174 if (vma
&& (vma
!= tail_vma
) && vma
->vm_next
)
177 return (vma
!= tail_vma
)? tail_vma
: NULL
;
180 static void m_stop(struct seq_file
*m
, void *v
)
182 struct proc_maps_private
*priv
= m
->private;
183 struct vm_area_struct
*vma
= v
;
188 put_task_struct(priv
->task
);
191 static int do_maps_open(struct inode
*inode
, struct file
*file
,
192 const struct seq_operations
*ops
)
194 struct proc_maps_private
*priv
;
196 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
198 priv
->pid
= proc_pid(inode
);
199 ret
= seq_open(file
, ops
);
201 struct seq_file
*m
= file
->private_data
;
210 static void show_map_vma(struct seq_file
*m
, struct vm_area_struct
*vma
)
212 struct mm_struct
*mm
= vma
->vm_mm
;
213 struct file
*file
= vma
->vm_file
;
214 int flags
= vma
->vm_flags
;
215 unsigned long ino
= 0;
216 unsigned long long pgoff
= 0;
222 struct inode
*inode
= vma
->vm_file
->f_path
.dentry
->d_inode
;
223 dev
= inode
->i_sb
->s_dev
;
225 pgoff
= ((loff_t
)vma
->vm_pgoff
) << PAGE_SHIFT
;
228 /* We don't show the stack guard page in /proc/maps */
229 start
= vma
->vm_start
;
230 if (vma
->vm_flags
& VM_GROWSDOWN
)
231 if (!vma_stack_continue(vma
->vm_prev
, vma
->vm_start
))
234 seq_printf(m
, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n",
237 flags
& VM_READ
? 'r' : '-',
238 flags
& VM_WRITE
? 'w' : '-',
239 flags
& VM_EXEC
? 'x' : '-',
240 flags
& VM_MAYSHARE
? 's' : 'p',
242 MAJOR(dev
), MINOR(dev
), ino
, &len
);
245 * Print the dentry name for named mappings, and a
246 * special [heap] marker for the heap:
249 pad_len_spaces(m
, len
);
250 seq_path(m
, &file
->f_path
, "\n");
252 const char *name
= arch_vma_name(vma
);
255 if (vma
->vm_start
<= mm
->brk
&&
256 vma
->vm_end
>= mm
->start_brk
) {
258 } else if (vma
->vm_start
<= mm
->start_stack
&&
259 vma
->vm_end
>= mm
->start_stack
) {
267 pad_len_spaces(m
, len
);
274 static int show_map(struct seq_file
*m
, void *v
)
276 struct vm_area_struct
*vma
= v
;
277 struct proc_maps_private
*priv
= m
->private;
278 struct task_struct
*task
= priv
->task
;
280 show_map_vma(m
, vma
);
282 if (m
->count
< m
->size
) /* vma is copied successfully */
283 m
->version
= (vma
!= get_gate_vma(task
->mm
))
288 static const struct seq_operations proc_pid_maps_op
= {
295 static int maps_open(struct inode
*inode
, struct file
*file
)
297 return do_maps_open(inode
, file
, &proc_pid_maps_op
);
300 const struct file_operations proc_maps_operations
= {
304 .release
= seq_release_private
,
308 * Proportional Set Size(PSS): my share of RSS.
310 * PSS of a process is the count of pages it has in memory, where each
311 * page is divided by the number of processes sharing it. So if a
312 * process has 1000 pages all to itself, and 1000 shared with one other
313 * process, its PSS will be 1500.
315 * To keep (accumulated) division errors low, we adopt a 64bit
316 * fixed-point pss counter to minimize division errors. So (pss >>
317 * PSS_SHIFT) would be the real byte count.
319 * A shift of 12 before division means (assuming 4K page size):
320 * - 1M 3-user-pages add up to 8KB errors;
321 * - supports mapcount up to 2^24, or 16M;
322 * - supports PSS up to 2^52 bytes, or 4PB.
326 #ifdef CONFIG_PROC_PAGE_MONITOR
327 struct mem_size_stats
{
328 struct vm_area_struct
*vma
;
329 unsigned long resident
;
330 unsigned long shared_clean
;
331 unsigned long shared_dirty
;
332 unsigned long private_clean
;
333 unsigned long private_dirty
;
334 unsigned long referenced
;
335 unsigned long anonymous
;
336 unsigned long anonymous_thp
;
342 static void smaps_pte_entry(pte_t ptent
, unsigned long addr
,
343 unsigned long ptent_size
, struct mm_walk
*walk
)
345 struct mem_size_stats
*mss
= walk
->private;
346 struct vm_area_struct
*vma
= mss
->vma
;
350 if (is_swap_pte(ptent
)) {
351 mss
->swap
+= ptent_size
;
355 if (!pte_present(ptent
))
358 page
= vm_normal_page(vma
, addr
, ptent
);
363 mss
->anonymous
+= ptent_size
;
365 mss
->resident
+= ptent_size
;
366 /* Accumulate the size in pages that have been accessed. */
367 if (pte_young(ptent
) || PageReferenced(page
))
368 mss
->referenced
+= ptent_size
;
369 mapcount
= page_mapcount(page
);
371 if (pte_dirty(ptent
) || PageDirty(page
))
372 mss
->shared_dirty
+= ptent_size
;
374 mss
->shared_clean
+= ptent_size
;
375 mss
->pss
+= (ptent_size
<< PSS_SHIFT
) / mapcount
;
377 if (pte_dirty(ptent
) || PageDirty(page
))
378 mss
->private_dirty
+= ptent_size
;
380 mss
->private_clean
+= ptent_size
;
381 mss
->pss
+= (ptent_size
<< PSS_SHIFT
);
385 static int smaps_pte_range(pmd_t
*pmd
, unsigned long addr
, unsigned long end
,
386 struct mm_walk
*walk
)
388 struct mem_size_stats
*mss
= walk
->private;
389 struct vm_area_struct
*vma
= mss
->vma
;
393 spin_lock(&walk
->mm
->page_table_lock
);
394 if (pmd_trans_huge(*pmd
)) {
395 if (pmd_trans_splitting(*pmd
)) {
396 spin_unlock(&walk
->mm
->page_table_lock
);
397 wait_split_huge_page(vma
->anon_vma
, pmd
);
399 smaps_pte_entry(*(pte_t
*)pmd
, addr
,
400 HPAGE_PMD_SIZE
, walk
);
401 spin_unlock(&walk
->mm
->page_table_lock
);
402 mss
->anonymous_thp
+= HPAGE_PMD_SIZE
;
406 spin_unlock(&walk
->mm
->page_table_lock
);
409 * The mmap_sem held all the way back in m_start() is what
410 * keeps khugepaged out of here and from collapsing things
413 pte
= pte_offset_map_lock(vma
->vm_mm
, pmd
, addr
, &ptl
);
414 for (; addr
!= end
; pte
++, addr
+= PAGE_SIZE
)
415 smaps_pte_entry(*pte
, addr
, PAGE_SIZE
, walk
);
416 pte_unmap_unlock(pte
- 1, ptl
);
421 static int show_smap(struct seq_file
*m
, void *v
)
423 struct proc_maps_private
*priv
= m
->private;
424 struct task_struct
*task
= priv
->task
;
425 struct vm_area_struct
*vma
= v
;
426 struct mem_size_stats mss
;
427 struct mm_walk smaps_walk
= {
428 .pmd_entry
= smaps_pte_range
,
433 memset(&mss
, 0, sizeof mss
);
435 /* mmap_sem is held in m_start */
436 if (vma
->vm_mm
&& !is_vm_hugetlb_page(vma
))
437 walk_page_range(vma
->vm_start
, vma
->vm_end
, &smaps_walk
);
439 show_map_vma(m
, vma
);
445 "Shared_Clean: %8lu kB\n"
446 "Shared_Dirty: %8lu kB\n"
447 "Private_Clean: %8lu kB\n"
448 "Private_Dirty: %8lu kB\n"
449 "Referenced: %8lu kB\n"
450 "Anonymous: %8lu kB\n"
451 "AnonHugePages: %8lu kB\n"
453 "KernelPageSize: %8lu kB\n"
454 "MMUPageSize: %8lu kB\n"
456 (vma
->vm_end
- vma
->vm_start
) >> 10,
458 (unsigned long)(mss
.pss
>> (10 + PSS_SHIFT
)),
459 mss
.shared_clean
>> 10,
460 mss
.shared_dirty
>> 10,
461 mss
.private_clean
>> 10,
462 mss
.private_dirty
>> 10,
463 mss
.referenced
>> 10,
465 mss
.anonymous_thp
>> 10,
467 vma_kernel_pagesize(vma
) >> 10,
468 vma_mmu_pagesize(vma
) >> 10,
469 (vma
->vm_flags
& VM_LOCKED
) ?
470 (unsigned long)(mss
.pss
>> (10 + PSS_SHIFT
)) : 0);
472 if (m
->count
< m
->size
) /* vma is copied successfully */
473 m
->version
= (vma
!= get_gate_vma(task
->mm
))
478 static const struct seq_operations proc_pid_smaps_op
= {
485 static int smaps_open(struct inode
*inode
, struct file
*file
)
487 return do_maps_open(inode
, file
, &proc_pid_smaps_op
);
490 const struct file_operations proc_smaps_operations
= {
494 .release
= seq_release_private
,
497 static int clear_refs_pte_range(pmd_t
*pmd
, unsigned long addr
,
498 unsigned long end
, struct mm_walk
*walk
)
500 struct vm_area_struct
*vma
= walk
->private;
505 split_huge_page_pmd(walk
->mm
, pmd
);
507 pte
= pte_offset_map_lock(vma
->vm_mm
, pmd
, addr
, &ptl
);
508 for (; addr
!= end
; pte
++, addr
+= PAGE_SIZE
) {
510 if (!pte_present(ptent
))
513 page
= vm_normal_page(vma
, addr
, ptent
);
517 /* Clear accessed and referenced bits. */
518 ptep_test_and_clear_young(vma
, addr
, pte
);
519 ClearPageReferenced(page
);
521 pte_unmap_unlock(pte
- 1, ptl
);
526 #define CLEAR_REFS_ALL 1
527 #define CLEAR_REFS_ANON 2
528 #define CLEAR_REFS_MAPPED 3
530 static ssize_t
clear_refs_write(struct file
*file
, const char __user
*buf
,
531 size_t count
, loff_t
*ppos
)
533 struct task_struct
*task
;
534 char buffer
[PROC_NUMBUF
];
535 struct mm_struct
*mm
;
536 struct vm_area_struct
*vma
;
539 memset(buffer
, 0, sizeof(buffer
));
540 if (count
> sizeof(buffer
) - 1)
541 count
= sizeof(buffer
) - 1;
542 if (copy_from_user(buffer
, buf
, count
))
544 if (strict_strtol(strstrip(buffer
), 10, &type
))
546 if (type
< CLEAR_REFS_ALL
|| type
> CLEAR_REFS_MAPPED
)
548 task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
551 mm
= get_task_mm(task
);
553 struct mm_walk clear_refs_walk
= {
554 .pmd_entry
= clear_refs_pte_range
,
557 down_read(&mm
->mmap_sem
);
558 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
) {
559 clear_refs_walk
.private = vma
;
560 if (is_vm_hugetlb_page(vma
))
563 * Writing 1 to /proc/pid/clear_refs affects all pages.
565 * Writing 2 to /proc/pid/clear_refs only affects
568 * Writing 3 to /proc/pid/clear_refs only affects file
571 if (type
== CLEAR_REFS_ANON
&& vma
->vm_file
)
573 if (type
== CLEAR_REFS_MAPPED
&& !vma
->vm_file
)
575 walk_page_range(vma
->vm_start
, vma
->vm_end
,
579 up_read(&mm
->mmap_sem
);
582 put_task_struct(task
);
587 const struct file_operations proc_clear_refs_operations
= {
588 .write
= clear_refs_write
,
589 .llseek
= noop_llseek
,
597 #define PM_ENTRY_BYTES sizeof(u64)
598 #define PM_STATUS_BITS 3
599 #define PM_STATUS_OFFSET (64 - PM_STATUS_BITS)
600 #define PM_STATUS_MASK (((1LL << PM_STATUS_BITS) - 1) << PM_STATUS_OFFSET)
601 #define PM_STATUS(nr) (((nr) << PM_STATUS_OFFSET) & PM_STATUS_MASK)
602 #define PM_PSHIFT_BITS 6
603 #define PM_PSHIFT_OFFSET (PM_STATUS_OFFSET - PM_PSHIFT_BITS)
604 #define PM_PSHIFT_MASK (((1LL << PM_PSHIFT_BITS) - 1) << PM_PSHIFT_OFFSET)
605 #define PM_PSHIFT(x) (((u64) (x) << PM_PSHIFT_OFFSET) & PM_PSHIFT_MASK)
606 #define PM_PFRAME_MASK ((1LL << PM_PSHIFT_OFFSET) - 1)
607 #define PM_PFRAME(x) ((x) & PM_PFRAME_MASK)
609 #define PM_PRESENT PM_STATUS(4LL)
610 #define PM_SWAP PM_STATUS(2LL)
611 #define PM_NOT_PRESENT PM_PSHIFT(PAGE_SHIFT)
612 #define PM_END_OF_BUFFER 1
614 static int add_to_pagemap(unsigned long addr
, u64 pfn
,
615 struct pagemapread
*pm
)
617 pm
->buffer
[pm
->pos
++] = pfn
;
618 if (pm
->pos
>= pm
->len
)
619 return PM_END_OF_BUFFER
;
623 static int pagemap_pte_hole(unsigned long start
, unsigned long end
,
624 struct mm_walk
*walk
)
626 struct pagemapread
*pm
= walk
->private;
629 for (addr
= start
; addr
< end
; addr
+= PAGE_SIZE
) {
630 err
= add_to_pagemap(addr
, PM_NOT_PRESENT
, pm
);
637 static u64
swap_pte_to_pagemap_entry(pte_t pte
)
639 swp_entry_t e
= pte_to_swp_entry(pte
);
640 return swp_type(e
) | (swp_offset(e
) << MAX_SWAPFILES_SHIFT
);
643 static u64
pte_to_pagemap_entry(pte_t pte
)
646 if (is_swap_pte(pte
))
647 pme
= PM_PFRAME(swap_pte_to_pagemap_entry(pte
))
648 | PM_PSHIFT(PAGE_SHIFT
) | PM_SWAP
;
649 else if (pte_present(pte
))
650 pme
= PM_PFRAME(pte_pfn(pte
))
651 | PM_PSHIFT(PAGE_SHIFT
) | PM_PRESENT
;
655 static int pagemap_pte_range(pmd_t
*pmd
, unsigned long addr
, unsigned long end
,
656 struct mm_walk
*walk
)
658 struct vm_area_struct
*vma
;
659 struct pagemapread
*pm
= walk
->private;
663 split_huge_page_pmd(walk
->mm
, pmd
);
665 /* find the first VMA at or above 'addr' */
666 vma
= find_vma(walk
->mm
, addr
);
667 for (; addr
!= end
; addr
+= PAGE_SIZE
) {
668 u64 pfn
= PM_NOT_PRESENT
;
670 /* check to see if we've left 'vma' behind
671 * and need a new, higher one */
672 if (vma
&& (addr
>= vma
->vm_end
))
673 vma
= find_vma(walk
->mm
, addr
);
675 /* check that 'vma' actually covers this address,
676 * and that it isn't a huge page vma */
677 if (vma
&& (vma
->vm_start
<= addr
) &&
678 !is_vm_hugetlb_page(vma
)) {
679 pte
= pte_offset_map(pmd
, addr
);
680 pfn
= pte_to_pagemap_entry(*pte
);
681 /* unmap before userspace copy */
684 err
= add_to_pagemap(addr
, pfn
, pm
);
694 #ifdef CONFIG_HUGETLB_PAGE
695 static u64
huge_pte_to_pagemap_entry(pte_t pte
, int offset
)
698 if (pte_present(pte
))
699 pme
= PM_PFRAME(pte_pfn(pte
) + offset
)
700 | PM_PSHIFT(PAGE_SHIFT
) | PM_PRESENT
;
704 /* This function walks within one hugetlb entry in the single call */
705 static int pagemap_hugetlb_range(pte_t
*pte
, unsigned long hmask
,
706 unsigned long addr
, unsigned long end
,
707 struct mm_walk
*walk
)
709 struct pagemapread
*pm
= walk
->private;
713 for (; addr
!= end
; addr
+= PAGE_SIZE
) {
714 int offset
= (addr
& ~hmask
) >> PAGE_SHIFT
;
715 pfn
= huge_pte_to_pagemap_entry(*pte
, offset
);
716 err
= add_to_pagemap(addr
, pfn
, pm
);
725 #endif /* HUGETLB_PAGE */
728 * /proc/pid/pagemap - an array mapping virtual pages to pfns
730 * For each page in the address space, this file contains one 64-bit entry
731 * consisting of the following:
733 * Bits 0-55 page frame number (PFN) if present
734 * Bits 0-4 swap type if swapped
735 * Bits 5-55 swap offset if swapped
736 * Bits 55-60 page shift (page size = 1<<page shift)
737 * Bit 61 reserved for future use
738 * Bit 62 page swapped
739 * Bit 63 page present
741 * If the page is not present but in swap, then the PFN contains an
742 * encoding of the swap file number and the page's offset into the
743 * swap. Unmapped pages return a null PFN. This allows determining
744 * precisely which pages are mapped (or in swap) and comparing mapped
745 * pages between processes.
747 * Efficient users of this interface will use /proc/pid/maps to
748 * determine which areas of memory are actually mapped and llseek to
749 * skip over unmapped regions.
751 #define PAGEMAP_WALK_SIZE (PMD_SIZE)
752 #define PAGEMAP_WALK_MASK (PMD_MASK)
753 static ssize_t
pagemap_read(struct file
*file
, char __user
*buf
,
754 size_t count
, loff_t
*ppos
)
756 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
757 struct mm_struct
*mm
;
758 struct pagemapread pm
;
760 struct mm_walk pagemap_walk
= {};
763 unsigned long start_vaddr
;
764 unsigned long end_vaddr
;
770 mm
= mm_for_maps(task
);
772 if (!mm
|| IS_ERR(mm
))
776 /* file position must be aligned */
777 if ((*ppos
% PM_ENTRY_BYTES
) || (count
% PM_ENTRY_BYTES
))
785 pm
.len
= PM_ENTRY_BYTES
* (PAGEMAP_WALK_SIZE
>> PAGE_SHIFT
);
786 pm
.buffer
= kmalloc(pm
.len
, GFP_TEMPORARY
);
791 pagemap_walk
.pmd_entry
= pagemap_pte_range
;
792 pagemap_walk
.pte_hole
= pagemap_pte_hole
;
793 #ifdef CONFIG_HUGETLB_PAGE
794 pagemap_walk
.hugetlb_entry
= pagemap_hugetlb_range
;
796 pagemap_walk
.mm
= mm
;
797 pagemap_walk
.private = &pm
;
800 svpfn
= src
/ PM_ENTRY_BYTES
;
801 start_vaddr
= svpfn
<< PAGE_SHIFT
;
802 end_vaddr
= TASK_SIZE_OF(task
);
804 /* watch out for wraparound */
805 if (svpfn
> TASK_SIZE_OF(task
) >> PAGE_SHIFT
)
806 start_vaddr
= end_vaddr
;
809 * The odds are that this will stop walking way
810 * before end_vaddr, because the length of the
811 * user buffer is tracked in "pm", and the walk
812 * will stop when we hit the end of the buffer.
815 while (count
&& (start_vaddr
< end_vaddr
)) {
820 end
= (start_vaddr
+ PAGEMAP_WALK_SIZE
) & PAGEMAP_WALK_MASK
;
822 if (end
< start_vaddr
|| end
> end_vaddr
)
824 down_read(&mm
->mmap_sem
);
825 ret
= walk_page_range(start_vaddr
, end
, &pagemap_walk
);
826 up_read(&mm
->mmap_sem
);
829 len
= min(count
, PM_ENTRY_BYTES
* pm
.pos
);
830 if (copy_to_user(buf
, pm
.buffer
, len
)) {
839 if (!ret
|| ret
== PM_END_OF_BUFFER
)
847 put_task_struct(task
);
852 const struct file_operations proc_pagemap_operations
= {
853 .llseek
= mem_lseek
, /* borrow this */
854 .read
= pagemap_read
,
856 #endif /* CONFIG_PROC_PAGE_MONITOR */
859 extern int show_numa_map(struct seq_file
*m
, void *v
);
861 static const struct seq_operations proc_pid_numa_maps_op
= {
865 .show
= show_numa_map
,
868 static int numa_maps_open(struct inode
*inode
, struct file
*file
)
870 return do_maps_open(inode
, file
, &proc_pid_numa_maps_op
);
873 const struct file_operations proc_numa_maps_operations
= {
874 .open
= numa_maps_open
,
877 .release
= seq_release_private
,