File: valgrind.txt

package info (click to toggle)
nco 4.0.2-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 8,544 kB
  • ctags: 3,159
  • sloc: ansic: 31,449; cpp: 21,684; sh: 11,008; perl: 3,407; makefile: 1,781; lex: 1,137; yacc: 605; python: 116
file content (583 lines) | stat: -rw-r--r-- 20,541 bytes parent folder | download | duplicates (4)
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
# $Header: /cvsroot/nco/nco/doc/valgrind.txt,v 1.5 2005/10/23 07:08:50 zender Exp $

# Purpose: Suppression file for valgrind
# Default suppressed warnings in /usr/local/lib/valgrind/default.supp

# Usage:
# Use existing suppressions file on program:
# valgrind --suppressions=${HOME}/c++/valgrind.txt ccc > ~/foo 2>&1

# More verbose output for leak checks
# valgrind --leak-check=yes --suppressions=${HOME}/c++/valgrind.txt
# ccc > ~/foo 2>&1
# Show reachable blocks during leak detection
# valgrind --leak-check=yes --show-reachable=yes --suppressions=${HOME}/c++/valgrind.txt ccc > ~/foo 2>&1

# Ask valgrind to help by generating more suppresions:
# valgrind --gen-suppressions=yes --suppressions=${HOME}/c++/valgrind.txt ccc > ~/foo 2>&1
# valgrind --gen-suppressions=yes --suppressions=${HOME}/c++/valgrind.txt --suppressions=/usr/lib/valgrind/default.supp ccc > ~/foo 2>&1

# File Format is:
# {
#     name_of_suppression
#     tool_name:supp_kind
#         "For memcheck, supp_kinds are
#	  Param Value1 Value2 Value4 Value8 Value16
#	  Free Addr1 Addr2 Addr4 Addr8 Addr16
#	  Cond (previously known as Value0)
#	  (if Param: name of system call param, if Free: name of free-ing fn)"
#     caller0 name, or /name/of/so/file.so
#     caller1 name, or ditto
#     (optionally: caller2 name)
#     (optionally: caller3 name)
#  }

# Valid example from /usr/lib/valgrind/default.supp
{
   Debian_dlopen4
   Memcheck:Addr1
   obj:/lib/ld-2.3.2.so
   fun:_dl_check_map_versions
   fun:dl_open_worker
   fun:_dl_catch_error
}

# First, error suppressions on my personal code
# Suppress warnings associated with touching system memory by
# accessing command line arguments
# ==2904== Invalid read of size 4
# ==2904==    at 0x807B1A1: cmd_ln_sng(int, char const* const*) (utl.cc:435)
# ==2904==  Address 0x4FC2CC20 is on thread 1's stack
{
   Questionable_read4_warning_from_libcsz_c++_utl_cc_cmd_ln_sng
   Memcheck:Addr4
   fun:_Z10cmd_ln_sngiPKPKc
}

# Suppress common problem found with ccc 20040707:
# ==22906== Invalid write of size 4
# ==22906==    at 0x804E20C: main (ccc.cc:118)
# ==22906==    by 0x4044A507: __libc_start_main (../sysdeps/generic/libc-start.c:129)
# ==22906==    by 0x804E0E1: strcpy@@GLIBC_2.0 (in /home/zender/bin/LINUX/ccc)
# ==22906==    by <bogus frame pointer> ???
# ==22906==    Address 0xBFC2DF34 is on thread 1's stack
# {
#    strcpy/*libc_start_main*(Addr4)
#    Memcheck:Addr4
#    fun:*main*
#    fun:*libc_start_main*
#    fun:strcpy*
# }

# Suppress common problem found with ccc 20040707:
# ==7359== Invalid write of size 4
# ==7359==    at 0x804BBBF: main (stl_alloc.h:652)
# ==7359==  Address 0x4FC2CBA0 is on thread 1's stack
{
   Questionable_write4_warning_from_ccc_main
   Memcheck:Addr4
   fun:main
}

# Suppress common problem found with ccc 20040707:
# ==7359== Invalid read of size 4
# ==7359==    at 0x3C4630C7: getenv (in /lib/tls/libc-2.3.2.so)
# ==7359==  Address 0x4FC2CBA0 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_main_getenv
   Memcheck:Addr4
   fun:getenv
}

# Suppress common problem found with ccc 20040707:
# ==7359== Invalid read of size 4
# ==7359==    at 0x3C3CE60E: std::string::string(char const*, std::allocator<char> const&) (in /usr/lib/libstdc++.so.5.0.6)
# ==7359==  Address 0x4FC2CBA4 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_string
   Memcheck:Addr4
   fun:_ZNSsC1EPKcRKSaIcE
}

# Suppress common problem found with ccc 20040707:
# ==7440== Invalid write of size 4
# ==7440==    at 0x3C3CDFB9: std::string::_Alloc_hider::_Alloc_hider(char*, std::allocator<char> const&) (in /usr/lib/libstdc++.so.5.0.6)
# ==7440==  Address 0x4FFFDE10 is on thread 1's stack
{
   Questionable_write4_warning_from_ccc_libstdc++_alloc_hider
   Memcheck:Addr4
   fun:_ZNSs12_Alloc_hiderC1EPcRKSaIcE
}

# Suppress common problem found with ccc 20040707:
# ==7445== Invalid read of size 4
# ==7445==    at 0x3C4CD8D2: time (in /lib/tls/libc-2.3.2.so)
# ==7445==  Address 0x4FC2CBA0 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libc_time
   Memcheck:Addr4
   fun:time
}

# Suppress common problem found with ccc 20040707:
# ==7445== Invalid read of size 4
# ==7445==    at 0x3C4CCF33: ctime (in /lib/tls/libc-2.3.2.so)
# ==7445==  Address 0x4FC2CBA0 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libc_ctime
   Memcheck:Addr4
   fun:ctime
}

# Suppress common problem found with ccc 20040707:
# ==7445== Invalid read of size 4
# ==7445==    at 0x3C4CE7EF: (within /lib/tls/libc-2.3.2.so)
# ==7445==  Address 0x4FC2CFBC is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libc
   Memcheck:Addr4
   obj:/lib/tls/libc-2.3.2.so
}

# Suppress common problem found with ccc 20040707:
# ==7451== Invalid read of size 4
# ==7451==    at 0x3C3C327C: std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*) (in /usr/lib/libstdc++.so.5.0.6)
# ==7451==  Address 0x4FC2CB60 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_ostream1
   Memcheck:Addr4
   fun:_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc
}

# Suppress common problem found with ccc 20040707:
# ==7472== Invalid read of size 4
# ==7472==    at 0x3C3C090C: std::basic_ostream<char, std::char_traits<char> >& std::operator<< <char, std::char_traits<char>, std::allocator<char> >(std::basic_ostream<char, std::char_traits<char> >&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) (in /usr/lib/libstdc++.so.5.0.6)
# ==7472==  Address 0x4FC2CB60 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_ostream2
   Memcheck:Addr4
   fun:_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E
}

# Suppress common problem found with ccc 20040707:
# ==7472== Invalid read of size 4
# ==7472==    at 0x3C020A33: strrchr (mac_replace_strmem.c:119)
# ==7472==  Address 0x4FC2CB60 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_strrchr
   Memcheck:Addr4
   fun:strrchr
}

# Suppress common problem found with ccc 20040707:
# ==7477== Invalid read of size 1
# ==7477==    at 0x3C020A36: strrchr (mac_replace_strmem.c:118)
# ==7477==  Address 0x4FC2CB64 is on thread 1's stack
{
   Questionable_read1_warning_from_ccc_strrchr
   Memcheck:Addr1
   fun:strrchr
}

# Suppress common problem found with ccc 20040707:
# ==7472== Invalid read of size 4
# ==7472==    at 0x3C3D0F59: std::string::compare(char const*) const (in /usr/lib/libstdc++.so.5.0.6)
# ==7472==  Address 0x4FC2CB60 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_compare
   Memcheck:Addr4
   fun:_ZNKSs7compareEPKc
}

# Suppress common problem found with ccc 20040707:
# ==7472== Invalid read of size 4
# ==7472==    at 0x3C3C1676: std::ostream::operator<<(std::ostream& (*)(std::ostream&)) (in /usr/lib/libstdc++.so.5.0.6)
# ==7472==  Address 0x4FC2CB60 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_ostream3
   Memcheck:Addr4
   fun:_ZNSolsEPFRSoS_E
}

# Suppress common problem found with ccc 20050417:
# ==9911== Invalid read of size 4
# ==9911==    at 0x1BB7A326: std::string::length() const (in /usr/lib/libstdc++.so.6.0.3)
# ==9911==  Address 0x52BFDE00 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_length
   Memcheck:Addr4
   fun:_ZNKSs6lengthEv
}

# Suppress common problem found with ccc 20050417:
# ==9911== Invalid read of size 4
# ==9911==    at 0x1BB7B893: std::string::assign(char const*, unsigned) (in /usr/lib/libstdc++.so.6.0.3)
#==9911==  Address 0x52BFDD30 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_assign
   Memcheck:Addr4
   fun:_ZNSs6assignEPKcj
}

# Suppress common problem found with ccc 20050417:
# ==9911== Invalid read of size 4
# ==9911==    at 0x1BB7B56C: std::string::_M_mutate(unsigned, unsigned, unsigned) (in /usr/lib/libstdc++.so.6.0.3)
# ==9911==  Address 0x52BFDD30 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_M_mutate
   Memcheck:Addr4
   fun:_ZNSs9_M_mutateEjjj
}

# Suppress common problem found with ccc 20050417:
# ==11077== Invalid read of size 4
# ==11077==    at 0x1BB7B2AF: std::string::assign(std::string const&) (in /usr/lib/libstdc++.so.6.0.3)
# ==11077==  Address 0x52BFDD20 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_assign
   Memcheck:Addr4
   fun:_ZNSs6assignERKSs
}

# Suppress common problem found with ccc 20050417:
# ==11577== Invalid read of size 4
# ==11577==    at 0x1BB7A46B: std::string::find(char const*, unsigned, unsigned) const (in /usr/lib/libstdc++.so.6.0.3)
# ==11577==  Address 0x52BFDD20 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_find
   Memcheck:Addr4
   fun:_ZNKSs4findEPKcjj
}

# Suppress common problem found with ccc 20050417:
# ==11577== Invalid read of size 4
# ==11577==    at 0x1BB7A702: std::string::find_first_of(char const*, unsigned, unsigned) const (in /usr/lib/libstdc++.so.6.0.3)
# ==11577==  Address 0x52BFDD20 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_find_first_of
   Memcheck:Addr4
   fun:_ZNKSs13find_first_ofEPKcjj
}

# Suppress common problem found with ccc 20050417:
# ==11577== Invalid read of size 4
# ==11577==    at 0x1BB7D712: std::string::substr(unsigned, unsigned) const (in /usr/lib/libstdc++.so.6.0.3)
# ==11577==  Address 0x52BFDD20 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_substr
   Memcheck:Addr4
   fun:_ZNKSs6substrEjj
}

# Suppress common problem found with ccc 20050417:
# ==12886== Invalid read of size 4
# ==12886==    at 0x1BB7D67C: std::string::string(std::string const&, unsigned, unsigned) (in /usr/lib/libstdc++.so.6.0.3)
# ==12886==  Address 0x52BFDD20 is on thread 1's stack
{
   Questionable_read4_warning_from_ccc_libstdc++_string_string
   Memcheck:Addr4
   fun:_ZNSsC1ERKSsjj
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-2.2 gcc-4.0.0 20050914:
# ==1151== Syscall param writev(vector[...]) contains uninitialised or unaddressable byte(s)
# ==1151==    at 0x1B8E4C02: (within /lib/ld-2.3.2.so)
# ==1151==  Address 0x1BB0A718 is 32 bytes inside a block of size 72 alloc'd
{
   Questionable_writev_warning_from_nco_mpich2-1.0.2_valgrind-2.2_gcc-4.0.0_problem1
   Memcheck:Param
   writev(vector[...])
   obj:/lib/ld-2.3.2.so
   fun:MPIDU_Socki_handle_write
   fun:MPIDU_Sock_wait
   fun:MPIDI_CH3_Progress_wait
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-2.2 gcc-4.0.0 20050914:
# ==1164== Syscall param writev(vector[...]) contains uninitialised or unaddressable byte(s)
# ==1164==    at 0x1B8E4C02: (within /lib/ld-2.3.2.so)
# ==1164==  Address 0x52BFCFB4 is on thread 1's stack
{
   Questionable_writev_warning_from_nco_mpich2-1.0.2_valgrind-2.2_gcc-4.0.0_problem2
   Memcheck:Param
   writev(vector[...])
   obj:/lib/ld-2.3.2.so
   fun:MPIDU_Sock_writev
   fun:MPIDI_CH3_iStartMsgv
   fun:MPID_Send
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-2.2 gcc-4.0.0 20050914:
# ==1164== Syscall param write(buf) contains uninitialised or unaddressable byte(s)
# ==1164==    at 0x1B8E4C02: (within /lib/ld-2.3.2.so)
# ==1164==  Address 0x52BFD108 is on thread 1's stack
{
   Questionable_writev_warning_from_nco_mpich2-1.0.2_valgrind-2.2_gcc-4.0.0_problem3
   Memcheck:Param
   write(buf)
   obj:/lib/ld-2.3.2.so
   fun:MPIDU_Sock_write
   fun:MPIDI_CH3_iStartMsg
   fun:MPID_VCRT_Release
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-2.2 gcc-4.0.0 20050914:
# ==1185== Syscall param write(buf) contains uninitialised or unaddressable byte(s)
# ==1185==    at 0x1B8E4C02: (within /lib/ld-2.3.2.so)
# ==1185==  Address 0x52BFCEA8 is on thread 1's stack
{
   Questionable_writev_warning_from_nco_mpich2-1.0.2_valgrind-2.2_gcc-4.0.0_problem4
   Memcheck:Param
   write(buf)
   obj:/lib/ld-2.3.2.so
   fun:MPIDU_Sock_write
   fun:MPIDI_CH3_iStartMsg
   fun:MPIDI_CH3U_Handle_recv_pkt
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==18618== Conditional jump or move depends on uninitialised value(s)
# ==18618==    at 0x1B8EC7D3: (within /lib/ld-2.3.5.so)
{
   Questionable_cond_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_problem1
   Memcheck:Cond
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==20985== Invalid read of size 8
# ==20985==    at 0x80E5D88: (within /data/zender/bin/LINUX/mpncbo)
# ==20985==  Address 0x1BB06278 is 176 bytes inside a block of size 180 alloc'd
# ==20985==    at 0x1B8FF8A6: malloc (vg_replace_malloc.c:149)
# ==20985==    by 0x807F52E: new_x_NC_attr (attr.c:73)
{
   Questionable_read8_warning_from_libnetcdf_new_x_NC_attr
   Memcheck:Addr8
   obj:/data/zender/bin/LINUX/mpncbo
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==4864== Invalid read of size 4
# ==4864==    at 0x1B8F4FA0: (within /lib/ld-2.3.5.so)
# ==4864==    by 0x1BA4EA1F: __nss_hosts_lookup (in /lib/tls/libc-2.3.5.so)
# ==4864==  Address 0x1BB0A1B0 is 24 bytes inside a block of size 27
{
   Questionable_read4_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1
   Memcheck:Addr4
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:_dl_open
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:__libc_dlopen_mode
   fun:__nss_lookup_function
   obj:/lib/tls/libc-2.3.5.so
   fun:__nss_hosts_lookup
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==4864== Conditional jump or move depends on uninitialised value(s)
# ==4864==    at 0x1B8ECB13: (within /lib/ld-2.3.5.so)
# ==4864==    by 0x1BA510AA: gethostbyname (in /lib/tls/libc-2.3.5.so)
{
   Questionable_cond_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_gethostbyname
   Memcheck:Cond
   obj:/lib/ld-2.3.5.so
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:_dl_open
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:__libc_dlopen_mode
   fun:__nss_lookup_function
   obj:/lib/tls/libc-2.3.5.so
   fun:__nss_hosts_lookup
   fun:gethostbyname_r
   fun:gethostbyname
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==4864== Syscall param writev(vector[...]) points to uninitialised byte(s)
# ==4864==    at 0x1BA339F3: writev (in /lib/tls/libc-2.3.5.so)
# ==4864==    by 0x80DB2F6: MPIDU_Socki_handle_write (in /data/zender/bin/LINUX/mpncbo)
{
   Questionable_param_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_problem1
   Memcheck:Param
   writev(vector[...])
   fun:writev
   fun:MPIDU_Socki_handle_write
   fun:MPIDU_Sock_wait
   fun:MPIDI_CH3_Progress_wait
   fun:MPIC_Wait
   fun:MPIC_Send
   fun:MPIR_Bcast
   fun:MPI_Bcast
   fun:main.J
   fun:__libc_start_main
   obj:/data/zender/bin/LINUX/mpncbo
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==7001== Syscall param writev(vector[...]) points to uninitialised byte(s)
# ==7001==    at 0x1BA339F3: writev (in /lib/tls/libc-2.3.5.so)
# ==7001==    by 0x80D9373: MPIDU_Sock_writev (in /data/zender/bin/LINUX/mpncbo)
{
   Questionable_param_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_problem2
   Memcheck:Param
   writev(vector[...])
   fun:writev
   fun:MPIDU_Sock_writev
   fun:MPIDI_CH3_iStartMsgv
   fun:MPID_Send
   fun:MPIC_Send
   fun:MPIR_Bcast
   fun:MPI_Bcast
   fun:main.J
   fun:__libc_start_main
   obj:/data/zender/bin/LINUX/mpncbo
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==7380== Syscall param write(buf) points to uninitialised byte(s)
# ==7380==    at 0x1B94F35E: __write_nocancel (in /lib/tls/libpthread-2.3.5.so)
# ==7380==    by 0x80D8DF2: MPIDU_Sock_write (in /data/zender/bin/LINUX/mpncbo)
{
   Questionable_param_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_problem3
   Memcheck:Param
   write(buf)
   fun:__write_nocancel
   fun:MPIDU_Sock_write
   fun:MPIDI_CH3_iStartMsg
   fun:MPID_VCRT_Release
   fun:MPID_Finalize
   fun:MPI_Finalize
   fun:main.J
   fun:__libc_start_main
   obj:/data/zender/bin/LINUX/mpncbo
}

# Suppress common problem found in NCO mpncbo with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==7876== Syscall param write(buf) points to uninitialised byte(s)
# ==7876==    at 0x1B94F35E: __write_nocancel (in /lib/tls/libpthread-2.3.5.so)
# ==7876==    by 0x80D8DF2: MPIDU_Sock_write (in /data/zender/bin/LINUX/mpncbo)
{
   Questionable_param_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_problem4
   Memcheck:Param
   write(buf)
   fun:__write_nocancel
   fun:MPIDU_Sock_write
   fun:MPIDI_CH3_iStartMsg
   fun:MPIDI_CH3U_Handle_recv_pkt
   fun:MPIDI_CH3I_Progress_handle_sock_event
   fun:MPIDI_CH3_Progress_wait
   fun:MPID_Finalize
   fun:MPI_Finalize
   fun:main.J
   fun:__libc_start_main
   obj:/data/zender/bin/LINUX/mpncbo
}

# Suppress common problem found in NCO mpncra with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==8563== Conditional jump or move depends on uninitialised value(s)
# ==8563==    at 0x1B8F4DEE: (within /lib/ld-2.3.5.so)
# ==8563==    by 0x1B9C9CA1: getpwuid (in /lib/tls/libc-2.3.5.so)
{
   Questionable_cond_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_getpwuid
   Memcheck:Cond
   obj:/lib/ld-2.3.5.so
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:_dl_open
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:__libc_dlopen_mode
   fun:__nss_lookup_function
   obj:/lib/tls/libc-2.3.5.so
   fun:__nss_passwd_lookup
   fun:getpwuid_r
   fun:getpwuid
}

# Suppress common problem found in NCO mpncra with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==8563== Conditional jump or move depends on uninitialised value(s)
# ==8563==    at 0x1B8F4F7C: (within /lib/ld-2.3.5.so)
# ==8563==    by 0x1BA1DBCF: __nss_passwd_lookup (in /lib/tls/libc-2.3.5.so)
{
   Questionable_cond_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_passwd_lookup
   Memcheck:Cond
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:_dl_open
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:__libc_dlopen_mode
   fun:__nss_lookup_function
   obj:/lib/tls/libc-2.3.5.so
   fun:__nss_passwd_lookup
}

# Suppress common problem found in NCO mpncra with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# =9343== Invalid read of size 4
# ==9343==    at 0x1B8F4F89: (within /lib/ld-2.3.5.so)
# ==9343==    by 0x1BA411DD: __libc_dlopen_mode (in /lib/tls/libc-2.3.5.so)
{
   Questionable_read4_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_dlopen_mode
   Memcheck:Addr4
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:_dl_open
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:__libc_dlopen_mode
}

# Suppress common problem found in NCO mpncra with mpich2-1.0.2 valgrind-3.0.1 icc-8.1 20050914:
# ==9343== Invalid read of size 4
# ==9343==    at 0x1B8F4FA0: (within /lib/ld-2.3.5.so)
# ==9343==    by 0x1B906DFC: _nss_compat_getpwuid_r (in /lib/tls/libnss_compat-2.3.5.so)
{
   Questionable_read4_warning_from_nco_mpich2-1.0.2_valgrind-3.0.1_icc-8.1_getpwuid_r
   Memcheck:Addr4
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:_dl_open
   obj:/lib/tls/libc-2.3.5.so
   obj:/lib/ld-2.3.5.so
   fun:__libc_dlopen_mode
   fun:__nss_lookup_function
   obj:/lib/tls/libnss_compat-2.3.5.so
   fun:_nss_compat_getpwuid_r
}

# Suppress common problem found in NCO Ubuntu 5.10 valgrind-3.0.1 gcc-4.0.2 20051022:
# ==18629== Conditional jump or move depends on uninitialised value(s)
# ==18629==    at 0x1B8EC82D: (within /lib/ld-2.3.5.so)
{
   Conditional_jump_or_move_nco_ubuntu-5.10_valgrind-3.0.1_gcc-4.0.2
   Memcheck:Cond
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
   obj:/lib/ld-2.3.5.so
}