aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2014-10-16 10:07:06 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-10-29 08:28:48 -0400
commit8b62fa59ed62bf1f42d35360fae8592c6b816a06 (patch)
tree211e7c4a67f8edaf3c25210fb4b7f36061726eee /tools/perf/scripts/python
parent1b9e97a2a95e4941dcfa968c4b2e04022e9a343e (diff)
perf tools: Fix report -F dso_to for data without branch info
The branch field sorting code assumes hist_entry::branch_info is allocated, which is wrong and following perf session ends up with report segfault. $ perf record ls $ perf report -F dso_to perf: Segmentation fault Checking that hist_entry::branch_info is valid and display "N/A" string in snprint callback if it's not. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Andi Kleen <ak@linux.intel.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1413468427-31049-7-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions
006-03-23 06:00:43 -0500 committer Linus Torvalds <torvalds@g5.osdl.org> 2006-03-23 10:38:14 -0500 [PATCH] sem2mutex: NCPFS' href='/cgit/cgit.cgi/litmus-rt-imx6.git/commit/fs/ncpfs/file.c?id=8e3f90459b7052c31a9669417b837fb14aa6d313'>8e3f90459b70
1da177e4c3f4













































8e3f90459b70
1da177e4c3f4






92e5baef8578
1da177e4c3f4










1da177e4c3f4

































































92e5baef8578
1da177e4c3f4








1da177e4c3f4



2e54eb96e2c8
1da177e4c3f4



1da177e4c3f4







1da177e4c3f4

















c3b2da314834



1da177e4c3f4






























1da177e4c3f4

2e54eb96e2c8




1da177e4c3f4














4b6f5d20b04d
1da177e4c3f4
2e54eb96e2c8
1da177e4c3f4

93d84b6d99f5
54f67f631dfc


1da177e4c3f4




92e1d5be91a0
1da177e4c3f4


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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298








                                                                              






                         
                          
                        
 
                   
 
                                                                               
 
                                                                         




















                                                                          
                                                  













































                                                                                          
                                                    






                                                                              
                                                    










                                                                    

































































                                                                                     
                                                    








                                                                    



                                       
                                         



                                                                        







                                                             

















                                                                                   



                                       






























                                                                            

                    




                                                 














                                                                    
                                                  
 
                                              

                                         
                                    


                                           




                                      
                                                         


                                            
/*
 *  file.c
 *
 *  Copyright (C) 1995, 1996 by Volker Lendecke
 *  Modified 1997 Peter Waltenberg, Bill Hawes, David Woodhouse for 2.1 dcache
 *
 */

#include <asm/uaccess.h>

#include <linux/time.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/fcntl.h>
#include <linux/stat.h>
#include <linux/mm.h>
#include <linux/vmalloc.h>
#include <linux/sched.h>

#include "ncp_fs.h"

static int ncp_fsync(struct file *file, loff_t start, loff_t end, int datasync)
{
	return filemap_write_and_wait_range(file->f_mapping, start, end);
}

/*
 * Open a file with the specified read/write mode.
 */
int ncp_make_open(struct inode *inode, int right)
{
	int error;