aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python/sched-migration.py
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2017-07-04 12:00:58 -0400
committerBjorn Helgaas <bhelgaas@google.com>2017-07-04 12:00:58 -0400
commit66a63e15bf7482c1de5cc906cbc473943ed8e898 (patch)
treee47d70839da3458a572bd7d5c2195117f2983daa /tools/perf/scripts/python/sched-migration.py
parentbec36cfa7bd43a1e4484b14ff6144855f3446c4c (diff)
parentbf44167f37a12bd353ed10fa706691d3f6e4b1a0 (diff)
Merge branch 'pci/host-rcar' into next
* pci/host-rcar: PCI: rcar-gen2: Make of_device_ids const PCI: rcar: Use proper name for the R-Car SoC
Diffstat (limited to 'tools/perf/scripts/python/sched-migration.py')
0 files changed, 0 insertions, 0 deletions
itter Alexey Dobriyan <adobriyan@gmail.com> 2008-10-23 10:48:31 -0400 proc: move pagecount stuff to fs/proc/page.c' href='/cgit/cgit.cgi/litmus-rt-tegra.git/commit/fs/proc/page.c?id=6d80e53f0056178c63fa8fbf3e8de40fb4df5f50'>6d80e53f005
ed7ce0f1022

6d80e53f005





















17797549591






















9a840895147

17797549591









































9a840895147

17797549591


































17797549591

17797549591













6d80e53f005








6d80e53f005






6d80e53f005

ed7ce0f1022

17797549591

6d80e53f005



ed7ce0f1022

6d80e53f005




















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244



                           
                      



                           
                          




                             
 




















                                                                   

                                                 

                                     




                                                      
                                            



                                      

                      





















                                                                         






















                                    

                                  









































                                                                            

                                  


































                                                                            

                                                                













                                                                 








                                                                   






                                                                       

                                                 

                                     

                                                       



                                      

                      




















                                                                              
#include <linux/bootmem.h>
#include <linux/compiler.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/ksm.h>
#include <linux/mm.h>
#include <linux/mmzone.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/hugetlb.h>
#include <asm/uaccess.h>
#include "internal.h"

#define KPMSIZE sizeof(u64)
#define KPMMASK (KPMSIZE - 1)

/* /proc/kpagecount - an array exposing page counts
 *
 * Each entry is a u64 representing the corresponding
 * physical page count.
 */
static ssize_t kpagecount_read(struct file *file, char __user *buf,
			     size_t count, loff_t *ppos)
{
	u64 __user *out = (u64 __user *)buf;
	struct page *ppage;
	unsigned long src = *ppos;
	unsigned long pfn;
	ssize_t ret = 0;
	u64 pcount;

	pfn = src / KPMSIZE;
	count = min_t(size_t, count, (max_pfn * KPMSIZE) - src);
	if (src & KPMMASK || count & KPMMASK)
		return -EINVAL;

	while (count > 0) {
		if (pfn_valid(pfn))
			ppage = pfn_to_page(pfn);
		else
			ppage = NULL;
		if (!ppage)
			pcount = 0;
		else
			pcount = page_mapcount(ppage);

		if (put_user(pcount, out)) {
			ret = -EFAULT;
			break;
		}

		pfn++;
		out++;
		count -= KPMSIZE;
	}