-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule.symvers
More file actions
2418 lines (2418 loc) · 88.3 KB
/
Module.symvers
File metadata and controls
2418 lines (2418 loc) · 88.3 KB
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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0x75107469 firmware_unregister vmlinux
0x7518e247 set_anon_super vmlinux
0x2642591c kmem_cache_alloc vmlinux
0x5cc2dfb4 i2c_put_adapter vmlinux
0x96cd2b04 scsi_sense_key_string vmlinux
0x4d9a7564 request_firmware vmlinux
0x0a2487e0 unblock_all_signals vmlinux
0x94095c16 csum_partial vmlinux
0x4a591a25 __generic_unplug_device vmlinux
0x375492a4 rpciod_up vmlinux
0x59ab4080 cap_bset vmlinux
0xd1d8233a device_add vmlinux
0x06bbc090 device_del vmlinux
0x3259dcce profile_event_unregister vmlinux
0xda59e0c8 rtl8187_ieee80211_wake_queue drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x9a0030d7 sock_no_mmap vmlinux
0x7afa0e56 i2c_add_driver vmlinux
0x54e6fcdd net_enable_timestamp vmlinux
0x97831172 sockfd_lookup vmlinux
0x23c914ea scsi_get_command vmlinux
0x997dcfad sync_page_range_nolock vmlinux
0xa5f19b37 scsi_target_quiesce vmlinux
0xcdfad26c transport_class_register vmlinux
0x204fb647 elv_try_last_merge vmlinux
0x173714c7 transport_class_unregister vmlinux
0x7ef58220 default_wake_function vmlinux
0x5216a992 pci_bus_read_config_byte vmlinux
0x5ea429e0 iget_locked vmlinux
0x586c2355 class_interface_register vmlinux
0x4a9bbcf8 test_clear_page_dirty vmlinux
0xe16bea7d rpc_new_task vmlinux
0x925e8e9c class_interface_unregister vmlinux
0x29c6f164 xdr_encode_netobj vmlinux
0x9af3256a tty_register_device vmlinux
0xc208452d usb_bus_list_lock vmlinux
0x17cf4400 find_bus vmlinux
0x7c650a56 steal_locks vmlinux
0x93304684 param_get_string vmlinux
0xaa39f95c memmove vmlinux
0xa070eb73 ata_check_status drivers/scsi/libata
0x1d17e4bd blk_congestion_wait vmlinux
0x76d3cd60 laptop_mode vmlinux
0x6af87414 end_page_writeback vmlinux
0x18ef903f generic_file_direct_write vmlinux
0xbd7f813d skb_recv_datagram vmlinux
0xa51c1940 class_get vmlinux
0x73104ddd generic_file_readonly_mmap vmlinux
0xeaf4e622 pci_map_rom vmlinux
0xfb758902 register_console vmlinux
0x9a0d8991 ip_finish_output vmlinux
0x99cdb319 sock_no_socketpair vmlinux
0x6d23e747 gnet_stats_start_copy vmlinux
0x272e7488 cond_resched_softirq vmlinux
0x2a3b4a48 sysctl_ms_jiffies vmlinux
0x05ae407f driver_find vmlinux
0x5b6d45fb lock_may_read vmlinux
0xe3bc195c rtl8187_ieee80211_wx_get_freq drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x774af221 rtl8187_ieee80211_wx_set_freq drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x515c23c5 load_nls vmlinux
0x24667939 dma_unmap_sg vmlinux
0x0c65e73c scsi_normalize_sense vmlinux
0xc98d5433 register_pppox_proto vmlinux
0xbf2d46cd posix_locks_deadlock vmlinux
0x72b243d4 free_dma vmlinux
0x4ff02836 dma_sync_single_range_for_device vmlinux
0x92b483b3 clr_watch_point vmlinux
0xcdab1870 xdr_init_decode vmlinux
0x0059da13 device_unregister vmlinux
0x5734b2c2 mmc_cleanup_queue drivers/mmc/mmc_core
0xe6d14293 xfrm_state_add vmlinux
0xa739012e iw_handler_set_thrspy vmlinux
0xcf3e68f9 scsicam_bios_param vmlinux
0x4c4de369 I_BDEV vmlinux
0x9190f14d find_or_create_page vmlinux
0xf3037ae5 usb_sg_init vmlinux
0x7c29432f usb_sg_wait vmlinux
0x92ba96e8 usb_buffer_unmap_sg vmlinux
0x5054091d scsi_reset_provider vmlinux
0xf4216711 kblockd_flush vmlinux
0xe9d383e8 invalidate_bdev vmlinux
0x11267875 scsi_extd_sense_format vmlinux
0xb8949e2a cancel_rearming_delayed_workqueue vmlinux
0x00729cf4 xdr_buf_from_iov vmlinux
0x660f6b2c class_device_initialize vmlinux
0x362b9040 pci_bus_write_config_dword vmlinux
0x1be83fa3 blk_cleanup_queue vmlinux
0x04a8394f tty_hung_up_p vmlinux
0xf7802434 __blk_attempt_remerge vmlinux
0x57b3e340 usb_driver_release_interface vmlinux
0x2367ce61 mpage_writepages vmlinux
0x8acba84d write_one_page vmlinux
0x887aa18d inet_add_protocol vmlinux
0x8537b963 nlmsvc_ops vmlinux
0xc8a1475c sync_blockdev vmlinux
0x6e720ff2 rtnl_unlock vmlinux
0xbd1d873e sock_rfree vmlinux
0x0cce5280 kernel_recvmsg vmlinux
0x03f3fdc6 freeze_bdev vmlinux
0x4b2af00a bd_release vmlinux
0x53a21daf param_get_long vmlinux
0x04483bd9 ata_scsi_release drivers/scsi/libata
0x874b706b skb_copy_datagram_iovec vmlinux
0x3f9184b0 __kfree_skb vmlinux
0x759f29b7 pci_find_parent_resource vmlinux
0xf13fdfab ip_defrag vmlinux
0x4b50d00a scsi_flush_work vmlinux
0x2d74c069 scsi_allocate_request vmlinux
0x97d6093a generic_file_aio_read vmlinux
0x1da0aff2 free_netdev vmlinux
0x1368d231 register_binfmt vmlinux
0xc5548c7f scsi_host_get vmlinux
0x6d9e4435 zlib_inflateIncomp vmlinux
0x42351596 idr_pre_get vmlinux
0x40c705e7 sigprocmask vmlinux
0x801e0b28 sk_stream_wait_connect vmlinux
0xd6646588 do_mmap_pgoff vmlinux
0x8d551bef sysctl_tcp_rmem vmlinux
0x69e87733 sock_no_sendmsg vmlinux
0x3140a0a7 i2c_master_recv vmlinux
0x4e944387 vfs_unlink vmlinux
0x25dc6227 mmc_bus_type drivers/mmc/mmc_core
0x5381ba68 bus_rescan_devices vmlinux
0x3ed521cd put_tty_driver vmlinux
0x865ebccd ioport_resource vmlinux
0xc7a4fbed rtnl_lock vmlinux
0xa8721b97 system_state vmlinux
0xbabf0f35 rpciod_down vmlinux
0x02876657 csum_partial_copy_fromiovecend vmlinux
0x475a6cdb con_set_default_unimap vmlinux
0xd96ec83b dev_get_by_index vmlinux
0xd890ecfa mtd_do_chip_probe vmlinux
0x9d0ddf41 ioctl_by_bdev vmlinux
0xb1675d53 class_device_add vmlinux
0xfaf0e2ef generic_delete_inode vmlinux
0x4f3770b6 ata_sg_init_one drivers/scsi/libata
0x3e05ae4e mars_ata_busy_sleep drivers/scsi/libata
0xe18ac854 sk_stream_rfree vmlinux
0xfac8b5ec mmc_wait_for_req drivers/mmc/mmc_core
0xdff85ceb blk_run_queue vmlinux
0xcff53400 kref_put vmlinux
0xac5e31b6 __secpath_destroy vmlinux
0xa2ee15b8 tcp_unhash vmlinux
0xb880dda7 alloc_skb vmlinux
0x46bc0adc zlib_deflate vmlinux
0x658d658c wake_bit_function vmlinux
0x0ea358ba bus_remove_file vmlinux
0xfb0915c8 mempool_resize vmlinux
0x18eb93f6 xfrm_unregister_km vmlinux
0xeecfd7a6 in_dev_finish_destroy vmlinux
0x1e68841f secure_tcp_sequence_number vmlinux
0x7bc75743 bio_map_user vmlinux
0x6908cf76 __brelse vmlinux
0x5dda1943 scsi_device_set_state vmlinux
0xaa06bbc8 attribute_container_add_class_device vmlinux
0xae9d2677 mark_buffer_async_write vmlinux
0x999e0aba wait_for_completion_interruptible_timeout vmlinux
0x7781b32b mmc_add_host drivers/mmc/mmc_core
0x28e23139 xfrm_probe_algs vmlinux
0xe091c187 inet_sock_destruct vmlinux
0x3a9b6fb9 blk_unregister_region vmlinux
0x677d9881 pci_hp_register vmlinux
0xe11671b4 unregister_nls vmlinux
0x9628995f __scsi_device_lookup_by_target vmlinux
0x3de88ff0 malloc_sizes vmlinux
0x36629641 radix_tree_gang_lookup vmlinux
0x4bc78972 register_nls vmlinux
0xb121390a probe_irq_on vmlinux
0x0da35c01 xfrm_state_lookup vmlinux
0x9fc890d5 tcp_parse_options vmlinux
0x71e08b0b i2c_smbus_write_block_data vmlinux
0x219def8c elv_remove_request vmlinux
0x9296bec2 rpc_unlink vmlinux
0x63dde2ec module_refcount vmlinux
0xb857dfed console_unblank vmlinux
0x3b4f3ff7 usb_lock_device_for_reset vmlinux
0xa036636e pci_enable_device_bars vmlinux
0x0549ed4c ___pskb_trim vmlinux
0x85df9b6c strsep vmlinux
0x9efed5af iomem_resource vmlinux
0x249368ae vfs_create vmlinux
0x8fc2326b mtd_erase_callback vmlinux
0x265a5466 sb_min_blocksize vmlinux
0xd54b74ac scsi_device_types vmlinux
0x59d696b6 register_module_notifier vmlinux
0xc7208c3a serial8250_resume_port vmlinux
0x82220925 i2c_control vmlinux
0xf0c73c33 unregister_sysctl_table vmlinux
0x023cd996 del_gendisk vmlinux
0x73463cef dcache_lock vmlinux
0x8e637aa7 block_write_full_page vmlinux
0xaad39931 xfrm_register_type vmlinux
0x75d5fdee __skb_linearize vmlinux
0xf6933c48 lockd_up vmlinux
0x133b27d7 fat_sync_inode vmlinux
0xbdc4710b sock_no_getsockopt vmlinux
0xc87074c3 sock_no_setsockopt vmlinux
0x6494166d __blockdev_direct_IO vmlinux
0x8f2b4851 __down_read_trylock vmlinux
0x0bd5d2f3 km_new_mapping vmlinux
0x2850b86c i2c_adapter_id vmlinux
0x5c67f3a5 parse_token vmlinux
0x3c919845 generic_block_bmap vmlinux
0x868784cb __symbol_get vmlinux
0xf4f6025c devfs_remove vmlinux
0x71e4c6da kmem_cache_free vmlinux
0x1676f9f9 lookup_hash vmlinux
0xa9496c60 prepare_to_wait vmlinux
0x1a1a4f09 __request_region vmlinux
0x07364752 bdev_read_only vmlinux
0x75b2f5c7 sock_wfree vmlinux
0x08b18831 fat_date_unix2dos vmlinux
0xa3b07c52 test_set_page_writeback vmlinux
0xa3ae4f34 qdisc_destroy vmlinux
0x8755ff95 devfs_mk_dir vmlinux
0x03cada27 files_stat vmlinux
0x9e075d95 truncate_inode_pages vmlinux
0xd7772d32 input_flush_device vmlinux
0x0948cde9 num_physpages vmlinux
0xa1b61bfd class_device_register vmlinux
0x2f7016a9 sysfs_create_file vmlinux
0xb9258cff seq_lseek vmlinux
0x9a1dfd65 strpbrk vmlinux
0x0796d507 cdrom_get_last_written vmlinux
0x1551dc51 bitmap_find_free_region vmlinux
0x748c4403 rtl8187_ieee80211_wx_set_encode drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0xd9c5ecbe rtl8187_ieee80211_wx_get_encode drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x71fa908a cache_flush vmlinux
0x7be146d3 cache_fresh vmlinux
0x05d8b538 xfrm_parse_spi vmlinux
0xc4e72b51 set_disk_ro vmlinux
0x3acb0a69 journal_invalidatepage vmlinux
0x27cbbea7 do_softirq vmlinux
0x5a16594c xfrm_aalg_get_byid vmlinux
0x82cccecb tcp_create_openreq_child vmlinux
0x63bfa4fc sk_common_release vmlinux
0xfebd7ba7 skb_queue_head vmlinux
0xef1b0fae sk_reset_timer vmlinux
0x4be927e7 scsi_io_completion vmlinux
0xc27f8147 bio_alloc_bioset vmlinux
0x220d85f0 mii_ethtool_gset vmlinux
0x0ae3aa82 mii_ethtool_sset vmlinux
0xc02b8b31 release_sock vmlinux
0x347f0172 class_remove_file vmlinux
0x60f3c938 sync_inode vmlinux
0x3d1d28c8 unmap_underlying_metadata vmlinux
0xa582a33e input_register_device vmlinux
0x06460e63 __invalidate_device vmlinux
0x2ba707a8 sysctl_tcp_low_latency vmlinux
0x1163f0a7 blk_max_low_pfn vmlinux
0xd7653a56 blk_queue_free_tags vmlinux
0x9030a587 simple_sync_file vmlinux
0x0c2199bf request_irq vmlinux
0xf099679c notifier_chain_unregister vmlinux
0x550953f5 register_sysctl_table vmlinux
0xe4cd77b7 tty_flip_buffer_push vmlinux
0x93e25757 cap_task_reparent_to_init vmlinux
0x19981040 swapper_space vmlinux
0x1f15563b UTMI_VendorIF_Init vmlinux
0x96c4e0da uart_get_divisor vmlinux
0xf9a482f9 msleep vmlinux
0x8c36bde8 unregister_netdev vmlinux
0xde6af262 __bforget vmlinux
0x6ae1de95 xdr_reserve_space vmlinux
0x858bdcf0 sock_no_listen vmlinux
0xa80cd470 scsi_device_lookup_by_target vmlinux
0xe0ff7a18 unregister_pppox_proto vmlinux
0x79aa04a2 get_random_bytes vmlinux
0xab600421 probe_irq_off vmlinux
0x51077d8e rpcauth_unregister vmlinux
0x72dfdbaa sock_no_poll vmlinux
0xa0d422ea sd_media_present vmlinux
0x9fa78f7f kmem_find_general_cachep vmlinux
0x0de5ae7b PCI_DMA_BUS_IS_PHYS vmlinux
0x3797e731 vlan_ioctl_set vmlinux
0xc11d8093 iov_shorten vmlinux
0x04abc193 scsi_scan_target vmlinux
0xd26dbc92 cap_inode_setxattr vmlinux
0x0f5da7fc devfs_unregister_tape vmlinux
0xa78c90e3 remove_arg_zero vmlinux
0xe6f365d4 remap_pfn_range vmlinux
0x4454ca0c i2c_attach_client vmlinux
0x8b232107 device_bind_driver vmlinux
0x68de6f7f rpc_wake_up_status vmlinux
0xf39bf4d9 put_cmsg vmlinux
0x06c8c997 skb_free_datagram vmlinux
0xacfbaf08 filp_close vmlinux
0x9ccd42f6 wait_for_completion_interruptible vmlinux
0xab5c10d0 tty_std_termios vmlinux
0x1d2b705f generic_readlink vmlinux
0x04a67929 ether_setup vmlinux
0x77364801 elv_requeue_request vmlinux
0x64b26838 device_create_file vmlinux
0x598527f7 zlib_deflateParams vmlinux
0xc4befd19 __break_lease vmlinux
0xdc76cbcb param_set_bool vmlinux
0x69d2a6b2 force_sig vmlinux
0x005f3e84 __downgrade_write vmlinux
0x45e10487 d_path vmlinux
0x0d4da3b6 igrab vmlinux
0xf5f66031 per_cpu__softnet_data vmlinux
0x49f1c53d sock_recvmsg vmlinux
0xb12cdfe7 system_utsname vmlinux
0x0abfec4b linkwatch_fire_event vmlinux
0xb23e0e6f kfifo_alloc vmlinux
0x66d757b6 rpc_queue_upcall vmlinux
0x41f4e540 uart_write_wakeup vmlinux
0xdacd08cc pci_bus_read_config_word vmlinux
0xf415536b skb_append vmlinux
0x83abfd56 schedule_delayed_work_on vmlinux
0xc8db0c68 rtl8187_ieee80211_register_crypto_ops drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211_crypt
0x3c67a6bd xfrm_policy_list vmlinux
0x29f524fc sysctl_tcp_tw_reuse vmlinux
0x57e1cb25 sk_stream_error vmlinux
0x531791e4 sget vmlinux
0x2bc95bd4 memset vmlinux
0x2ba0fc18 cdrom_media_changed vmlinux
0x3dd9cda6 blk_queue_max_hw_segments vmlinux
0x064db9a5 mark_mounts_for_expiry vmlinux
0x6c672417 xfrm_aalg_get_byidx vmlinux
0x9988266e unregister_cdrom vmlinux
0x1c692b70 register_chrdev vmlinux
0x2081ac44 dma_sync_single_for_device vmlinux
0xaf0111af idr_get_new_above vmlinux
0x80a74090 cap_capable vmlinux
0x51c5d7f3 rpc_create_client vmlinux
0x7643a5ac transport_configure_device vmlinux
0xc722eb42 misc_register vmlinux
0xebf17382 may_umount_tree vmlinux
0xedd6b5a9 block_invalidatepage vmlinux
0x75ca9fae __strncpy_from_user_asm vmlinux
0x5da2cec5 tty_ldisc_ref vmlinux
0xbfee3ad5 loop_unregister_transfer vmlinux
0xce8a3e65 unregister_serial vmlinux
0x1be57115 xdr_decode_netobj vmlinux
0xa59c80d4 ethtool_op_set_tso vmlinux
0xabdd4b78 pci_restore_state vmlinux
0x8a6d8b64 do_generic_mapping_read vmlinux
0x23b2f0c0 inode_sub_bytes vmlinux
0x69b64c3c inode_set_bytes vmlinux
0x53315033 arp_xmit vmlinux
0x648d9c9b neigh_add vmlinux
0x2090725f __dev_get_by_index vmlinux
0x1cb4c2c6 __create_workqueue vmlinux
0xabe77484 securebits vmlinux
0x9fe9a267 ata_probe_ent_alloc drivers/scsi/libata
0xedcf6be4 qword_add vmlinux
0xb687c2b4 pci_proc_attach_device vmlinux
0x17df17bc sysctl_tcp_ecn vmlinux
0xce36ded6 sysctl_tcp_mem vmlinux
0xafb272ce ethtool_op_set_tx_csum vmlinux
0xd14e39e0 rtl8187_ieee80211_unregister_crypto_ops drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211_crypt
0x36de3bb2 generic_mii_ioctl vmlinux
0x13af230e usb_bulk_msg vmlinux
0x3e7e6e39 blk_attempt_remerge vmlinux
0xe7abfeca kfifo_free vmlinux
0x4459c82e xfrm_state_delete_tunnel vmlinux
0x0d8a24c5 scsi_rescan_device vmlinux
0xba8b14e3 rb_prev vmlinux
0x7d850612 utf8_mbstowcs vmlinux
0x1cc6719a register_reboot_notifier vmlinux
0xc045ad4e timespec_trunc vmlinux
0x4f5651c3 tcp_sockets_allocated vmlinux
0x944073b7 scsi_device_quiesce vmlinux
0x489dc51d add_mtd_partitions vmlinux
0x48f48ad2 con_copy_unimap vmlinux
0x9fe636d2 tty_ldisc_ref_wait vmlinux
0xf13f374e block_commit_write vmlinux
0x180ec766 class_device_remove_file vmlinux
0x60b3266d journal_get_undo_access vmlinux
0x0468263b rtl8187_ieee80211_wx_set_rate drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x909ecd46 rtl8187_ieee80211_wx_get_rate drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0xaf8e31be dput vmlinux
0xad738077 rpc_delay vmlinux
0x5bd26000 rpc_proc_unregister vmlinux
0xdab2e994 tcp_v4_remember_stamp vmlinux
0x4b88e224 device_power_up vmlinux
0xdfa23841 nobh_commit_write vmlinux
0xc33156e8 pci_dac_page_to_dma vmlinux
0xe1a66013 sk_free vmlinux
0x4b7bac76 scsi_is_sdev_device vmlinux
0x9b5a7203 pci_bus_max_busnr vmlinux
0xea191df0 kobject_init vmlinux
0xd9d7dcbb flush_workqueue vmlinux
0x81594412 sleep_on vmlinux
0xcaf3185e platform_info vmlinux
0x6c4f5c13 scsi_wait_req vmlinux
0xf70f3136 proc_bus vmlinux
0xb3d595e6 simple_lookup vmlinux
0xf78d04ab netlink_register_notifier vmlinux
0x928f11ad usb_match_id vmlinux
0x0f56cdb7 xfrm_policy_insert vmlinux
0x01bb4023 usb_add_hcd vmlinux
0xd4d773e4 unlock_rename vmlinux
0x09548e7d do_posix_clock_nosettime vmlinux
0xef5512fc devfs_mk_bdev vmlinux
0xf13a5402 devfs_mk_cdev vmlinux
0x9305deab simple_rmdir vmlinux
0x08dfdfee free_task vmlinux
0x5a045b05 i2c_del_adapter vmlinux
0x09a91f81 scsi_block_requests vmlinux
0x802b0d6e ata_port_disable drivers/scsi/libata
0x36956dd7 mmc_release_host drivers/mmc/mmc_core
0x2d234537 fat_dir_empty vmlinux
0x21d7e9fe cdev_alloc vmlinux
0xea1b4bda __getblk vmlinux
0xa346017d i2c_venus_add_bus vmlinux
0x8fae17c1 rpc_clnt_sigunmask vmlinux
0xbcc70350 svc_exit_thread vmlinux
0x872ee9f5 pagevec_lookup_tag vmlinux
0x74cc238d current_kernel_time vmlinux
0x5a744b86 netlink_set_nonroot vmlinux
0xe640fc83 usb_reset_device vmlinux
0xdee2c21d locks_copy_lock vmlinux
0x93c207a4 gnet_stats_start_copy_compat vmlinux
0x71ee9f01 sock_create_kern vmlinux
0x40f0c3a7 transport_remove_device vmlinux
0x3290f5e0 pci_unregister_driver vmlinux
0x53dbeea6 zlib_deflateEnd vmlinux
0xdd4aec26 radix_tree_tagged vmlinux
0x89ff8b28 unload_nls vmlinux
0x76bf656d __bitmap_shift_left vmlinux
0xe753a9d9 ata_bmdma_stop drivers/scsi/libata
0xe876ac65 lock_sock vmlinux
0x78b7895e __scsi_device_lookup vmlinux
0x11f7ce5e memcpy vmlinux
0x5341a0eb bdevname vmlinux
0xcbcf69a3 cdev_init vmlinux
0x41685cfb request_resource vmlinux
0x4fb28f03 inet_getname vmlinux
0x0652a313 class_device_create_bin_file vmlinux
0x26907bf2 i2c_smbus_write_quick vmlinux
0xe616a6a4 put_mtd_device vmlinux
0x2368d2a0 platform_get_resource vmlinux
0x97c2b314 iput vmlinux
0x87c492f8 sleep_on_timeout vmlinux
0x92a81b86 create_proc_entry vmlinux
0x99c96a40 proc_doulongvec_ms_jiffies_minmax vmlinux
0x71a50dbc register_blkdev vmlinux
0xe3afdcda neigh_event_ns vmlinux
0x1f1849bf request_firmware_nowait vmlinux
0x8a1203a9 kref_get vmlinux
0xe1a633e3 generic_commit_write vmlinux
0x9c0148bd ata_std_ports drivers/scsi/libata
0xda6cab74 i2c_probe vmlinux
0x61eaf411 dst_destroy vmlinux
0xbe97cecb journal_errno vmlinux
0xebdcac3d svc_wake_up vmlinux
0x03a474b2 scsi_mode_sense vmlinux
0x18e07c3b journal_check_available_features vmlinux
0xdfa6e289 xfrm4_tunnel_register net/ipv4/xfrm4_tunnel
0x6bf4c146 xfrm_dst_lookup vmlinux
0x111f398e ata_qc_free drivers/scsi/libata
0xe00dad7f dst_alloc vmlinux
0x09431929 single_release vmlinux
0x5e24dd13 get_user_pages vmlinux
0xa108eb4d sysctl_optmem_max vmlinux
0xd0181f4f __bitmap_xor vmlinux
0xc1f89412 __dev_remove_pack vmlinux
0x758f9c49 auth_unix_forget_old vmlinux
0xabb01bca iget5_locked vmlinux
0x5210b436 mii_check_media vmlinux
0xfc49a044 platform_device_register_simple vmlinux
0x18cf728b dcache_dir_lseek vmlinux
0xfc704208 km_waitq vmlinux
0x15976b3c pci_scan_bus_parented vmlinux
0x2bd86e59 d_splice_alias vmlinux
0x10479175 do_sync_read vmlinux
0xfe02a978 mem_map vmlinux
0xeebf0571 mmc_wait_for_cmd drivers/mmc/mmc_core
0xbca70d3e rpc_mkpipe vmlinux
0x545bab2d ata_qc_new_init drivers/scsi/libata
0x14b8247d zlib_inflateSync vmlinux
0xcc3058fa ata_dev_classify drivers/scsi/libata
0xbda5351a rtl8187_ieee80211_stop_queue drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0xe1eea9d3 alloc_netdev vmlinux
0xd2be0632 netif_receive_skb vmlinux
0xa05ae6ff journal_update_format vmlinux
0xfb6af58d recalc_sigpending vmlinux
0xb178b5c3 ip_dev_find vmlinux
0xe9ea84d8 empty_usermodehelper_queue vmlinux
0x3c2aa794 anon_transport_class_register vmlinux
0x8709f888 path_lookup vmlinux
0x348deb5f rpcauth_init_credcache vmlinux
0x5c713a18 xdr_shift_buf vmlinux
0xabf062ee device_register vmlinux
0xf6f14344 dentry_open vmlinux
0x3c438e64 sysctl_overcommit_memory vmlinux
0x5ff9e221 dma_free_coherent vmlinux
0x2dd7f0ce rpc_clnt_sigmask vmlinux
0x1cc1f73e skb_checksum_help vmlinux
0xe259c947 class_device_unregister vmlinux
0xa5808bbf tasklet_init vmlinux
0x75ff084b device_power_down vmlinux
0xd0120d2f sock_no_recvmsg vmlinux
0x09a540dd rtc_alarm_get_time vmlinux
0xe2e07b5d kfifo_init vmlinux
0x27179be8 svc_authenticate vmlinux
0x651fb37d complete vmlinux
0xbfec6228 ata_bmdma_start drivers/scsi/libata
0x18df16d1 class_put vmlinux
0x99780310 scsi_test_unit_ready vmlinux
0x8f8f5f0a subsys_remove_file vmlinux
0x8a7d1c31 high_memory vmlinux
0xd986d396 next_thread vmlinux
0xb3bfd714 simple_link vmlinux
0x265cb402 scsi_remove_target vmlinux
0x61cbad9e sysdev_remove_file vmlinux
0x04d34a1f journal_blocks_per_page vmlinux
0xd31edfe9 mempool_create vmlinux
0x4b293605 kblockd_schedule_work vmlinux
0xc59c5e84 pci_siig10x_fn vmlinux
0x83b745ef pci_siig20x_fn vmlinux
0x3cc3f707 send_sig_info vmlinux
0x0ee41b52 __neigh_event_send vmlinux
0x7e2f8e0e unregister_netdevice vmlinux
0xb62255f0 sk_stream_wait_close vmlinux
0xd79b5a02 allow_signal vmlinux
0x54e53e53 __strncpy_from_user_nocheck_asm vmlinux
0xbf0ea1a9 rpc_call_setup vmlinux
0x5e60bcf4 platform_get_irq vmlinux
0xd443ea1b kill_anon_super vmlinux
0xa7604ed0 xfrm4_rcv vmlinux
0x753299e9 ppp_output_wakeup vmlinux
0x57e19673 blk_queue_hardsect_size vmlinux
0x7b152112 xdr_buf_subsegment vmlinux
0xbc2b01d8 inet_dgram_connect vmlinux
0xcea86c90 end_that_request_first vmlinux
0x346cd3fc driver_unregister vmlinux
0x33ac6fba mars_qc_complete_noop drivers/scsi/libata
0x440d05d0 kobject_get vmlinux
0xcc5ba65b kobject_put vmlinux
0x683a3221 param_set_copystring vmlinux
0x3cfa5f21 rtl8187_ieee80211_txb_free drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x73515b6c cfi_read_pri vmlinux
0x84a14fa3 usb_reset_configuration vmlinux
0xd494b146 d_validate vmlinux
0x5649b70a rtc_alarm_set_time vmlinux
0xee813be4 subsystem_init vmlinux
0xc256e762 __bitmap_equal vmlinux
0x291a813a fasync_helper vmlinux
0x2c3241d7 locks_mandatory_area vmlinux
0x0acb1a3c __bitmap_shift_right vmlinux
0xcd689748 inet_register_protosw vmlinux
0xc0983384 mempool_destroy vmlinux
0x15b61f36 scsi_ioctl vmlinux
0xe34478c5 set_binfmt vmlinux
0xbe26a7d2 print_pagevec_count vmlinux
0x23fee21c ata_scsi_error drivers/scsi/libata
0x75da6fb3 cap_ptrace vmlinux
0x07ec222c slab_reclaim_pages vmlinux
0xe5867808 dlci_ioctl_set vmlinux
0x0840ead6 scsi_report_device_reset vmlinux
0x3e8e8945 scsi_print_sense vmlinux
0x12e1eebc kobject_unregister vmlinux
0x1708af9d usb_submit_urb vmlinux
0x63b10dd9 page_symlink_inode_operations vmlinux
0xe7ead430 vunmap vmlinux
0x8607fe00 refrigerator vmlinux
0x9837236e rtl8187_alloc_ieee80211 drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0xf75a054e xfrm_policy_alloc vmlinux
0xe5c78a99 do_blank_screen vmlinux
0xf9755be4 set_page_dirty_lock vmlinux
0xd4a4003e tcp_v4_conn_request vmlinux
0x3063efb0 usb_get_descriptor vmlinux
0x3cc3c131 get_mtd_device vmlinux
0xcfd9109d tcp_v4_syn_recv_sock vmlinux
0xa2cb20c6 usb_put_dev vmlinux
0xd30ff307 kmem_cache_shrink vmlinux
0xc998d641 icmp_err_convert vmlinux
0x8a1ade20 mii_check_link vmlinux
0xa7587646 crc7 vmlinux
0xe95f0f60 __down_write vmlinux
0x1ea7054c tcp_hashinfo vmlinux
0x57723930 scsi_unregister vmlinux
0x1c553872 fd_install vmlinux
0xde7f26c2 scsi_internal_device_unblock vmlinux
0x3ce4ca6f disable_irq vmlinux
0xcb0eb6dc cdrom_get_media_event vmlinux
0x26e285bc scsi_host_alloc vmlinux
0xa423e5d5 sysfs_remove_file vmlinux
0xa0ceef51 out_of_line_wait_on_bit vmlinux
0x1be24222 invalidate_partition vmlinux
0xd49460c9 pci_get_subsys vmlinux
0x9eecde16 do_brk vmlinux
0xe322d239 generic_permission vmlinux
0x3d9ee9f0 clear_page vmlinux
0x2995f244 rtl8187_ieee80211_wlan_frequencies drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x948ad9e1 uart_get_baud_rate vmlinux
0x5f6b34a5 pci_proc_detach_bus vmlinux
0xfbe41d8c secpath_dup vmlinux
0xd4f5e990 EhciPortPowerId vmlinux
0xcdd1562d set_user_nice vmlinux
0x65e6c8c7 rpc_new_child vmlinux
0xe24134e1 rpc_release_client vmlinux
0xcaf26a80 tcp_openreq_cachep vmlinux
0xa18580b2 sock_setsockopt vmlinux
0xee6dcfac simple_transaction_release vmlinux
0xb27e432e unlock_buffer vmlinux
0x60cec3b9 notifier_chain_register vmlinux
0xef591bdb proto_register vmlinux
0x4eb5a8f4 tty_wakeup vmlinux
0x77614ac7 skb_copy_expand vmlinux
0x5a06c5be transport_setup_device vmlinux
0xec094395 d_lookup vmlinux
0x59fac81f kernel_subsys vmlinux
0x372390b2 cap_task_post_setuid vmlinux
0x2efa450d sys_read vmlinux
0xb82da95d zone_table vmlinux
0x822650d5 scsi_remove_host vmlinux
0x076e5d51 radix_tree_gang_lookup_tag vmlinux
0xe6a20580 scsi_is_host_device vmlinux
0xce631b8a sync_dirty_buffer vmlinux
0xdca3eecf pci_remove_bus_device vmlinux
0x0fbee064 dma_supported vmlinux
0x93acec36 usb_alloc_urb vmlinux
0xd1c830b3 add_disk_randomness vmlinux
0x13928f26 inode_init_once vmlinux
0x40790793 dma_cache_sync vmlinux
0xcbd0176f scsi_cmd_ioctl vmlinux
0x1081b7c3 neigh_seq_stop vmlinux
0x6be09e8b blocking_notifier_chain_unregister vmlinux
0xd847498e ata_noop_dev_select drivers/scsi/libata
0xb694b3f5 mmc_register_driver drivers/mmc/mmc_core
0x05d21a0b neigh_table_init vmlinux
0xf42b6593 blk_queue_segment_boundary vmlinux
0x31b2b952 blk_stop_queue vmlinux
0x231d780e blk_insert_request vmlinux
0xfacaf763 attribute_container_register vmlinux
0x0b800639 sysfs_create_link vmlinux
0xf7ae5a29 svc_set_client vmlinux
0x40a3ec78 tcp_reset_keepalive_timer vmlinux
0x32d390a9 add_mtd_device vmlinux
0xe97f4ce5 qword_get vmlinux
0x39a61fb6 ethtool_op_set_sg vmlinux
0xdf3776f7 journal_revoke vmlinux
0x9a80a79c seq_release vmlinux
0xd393be4b sysfs_create_bin_file vmlinux
0xbc43433b rtl8187_ieee80211_wx_set_rawtx drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0xdb9895e3 xfrm_state_unregister_afinfo vmlinux
0x2269bd2b USBPHY_SetReg_Default_30 vmlinux
0x391db9c3 USBPHY_SetReg_Default_31 vmlinux
0x794915a1 USBPHY_SetReg_Default_32 vmlinux
0x3de869fe USBPHY_SetReg_Default_33 vmlinux
0x92b0cea9 USBPHY_SetReg_Default_34 vmlinux
0x30f619b9 USBPHY_SetReg_Default_35 vmlinux
0xdbc1a2ba USBPHY_SetReg_Default_36 vmlinux
0xc5089209 USBPHY_SetReg_Default_38 vmlinux
0x2acaf937 USBPHY_SetReg_Default_39 vmlinux
0xb7e2b4a5 auth_domain_put vmlinux
0x3e784b3b scsi_target_block vmlinux
0x0bc55868 slhc_remember vmlinux
0x00ef0e51 free_buffer_head vmlinux
0xa94782b0 fget vmlinux
0x86e9acae match_token vmlinux
0xc49b29e8 vmtruncate vmlinux
0x731ab9e0 posix_test_lock vmlinux
0xf2be5339 kill_block_super vmlinux
0x8a87e2b2 flush_signals vmlinux
0x1a4dce1b neigh_lookup_nodev vmlinux
0x218a8e69 blk_put_request vmlinux
0xd5d36c52 usb_hub_cleanup vmlinux
0x2143dede cdrom_mode_select vmlinux
0xaa2ce6d6 __mntput vmlinux
0x21fd6abb mapping_tagged vmlinux
0x0e502ead rpc_setbufsize vmlinux
0x9dfe9466 put_disk vmlinux
0xf6bb4729 color_table vmlinux
0x869c1488 vm_committed_space vmlinux
0x7f084b45 module_add_driver vmlinux
0xb8520a43 auth_unix_add_addr vmlinux
0xa03e4087 usb_alloc_dev vmlinux
0x9336776d proc_root_fs vmlinux
0xd420b9f7 rtl8187_ieee80211_get_beacon drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x31a89d59 rpc_debug vmlinux
0x76e25a15 bus_create_file vmlinux
0xe38d9f64 drain_pcp_pages vmlinux
0xbef43296 console_conditional_schedule vmlinux
0xaae6c879 svc_destroy vmlinux
0x2604245d fat_detach vmlinux
0x2d52f584 pci_dac_dma_to_offset vmlinux
0x7ee8c5cb rb_erase vmlinux
0x1c3800a0 __netdev_watchdog_up vmlinux
0x5b2cdc0d cache_check vmlinux
0x7e4e2f7f destroy_venus_i2c_handle vmlinux
0x1369671c usb_check_bandwidth vmlinux
0xb1700c05 set_blocksize vmlinux
0x83f5b88f kcalloc vmlinux
0x61d38135 uart_unregister_driver vmlinux
0xaa4f0600 pci_dac_dma_sync_single_for_cpu vmlinux
0xfedeebe0 blk_execute_rq vmlinux
0xfe53a18e rpc_call_sync vmlinux
0x9fc921bb vsscanf vmlinux
0x82d79b51 sysctl_vfs_cache_pressure vmlinux
0x01075bf0 panic vmlinux
0x7eb0087d dma_sync_single_for_cpu vmlinux
0xb7d9010c __up vmlinux
0xa86565b3 __vmalloc vmlinux
0x77414029 __kmalloc vmlinux
0xb111736c put_files_struct vmlinux
0xe094c362 mips_machgroup vmlinux
0xcea5e6ad ata_sg_init drivers/scsi/libata
0x683999e9 rpc_wake_up_next vmlinux
0x0b5af436 __ip_select_ident vmlinux
0xa84b5d04 journal_load vmlinux
0x16ee6349 flock_lock_file_wait vmlinux
0xcbc13588 iw_handler_get_spy vmlinux
0xeb6ffd7f locks_init_lock vmlinux
0x71c90087 memcmp vmlinux
0x492ef849 d_alloc_name vmlinux
0xa6c454d6 vfs_readdir vmlinux
0x6b60eef6 zlib_inflate vmlinux
0x3771b461 crc_ccitt vmlinux
0x0ead5073 vscnprintf vmlinux
0x79aba27d add_hotplug_env_var vmlinux
0x8bb459a8 simple_statfs vmlinux
0x1992a2ba param_set_long vmlinux
0xfad5ee90 xfrm4_tunnel_deregister net/ipv4/xfrm4_tunnel
0xec0b30e8 ip_mc_join_group vmlinux
0x4622314f usb_string vmlinux
0xedceb043 journal_update_superblock vmlinux
0x97fa3af8 lease_modify vmlinux
0xea415559 set_watch_point vmlinux
0x3ae1cde1 xfrm_dst_ifdown vmlinux
0x4688dfdb neigh_seq_start vmlinux
0xb27901be skb_clone_fraglist vmlinux
0x6083a924 cpu_sysdev_class vmlinux
0x59d1d7dc class_simple_set_hotplug vmlinux
0x73e20c1c strlcpy vmlinux
0xf98b0275 tty_ldisc_put vmlinux
0x1cac4150 xfrm_state_check vmlinux
0x5b8869b5 driver_create_file vmlinux
0xcd6fcf16 blk_requeue_request vmlinux
0xdc6255df xfrm_find_acq vmlinux
0xb5ae672c scsi_scan_host vmlinux
0xe269ea1c sys_open vmlinux
0x1e315ff7 tcp_sendpage vmlinux
0xb859c3d0 allocate_resource vmlinux
0x1b283c17 block_prepare_write vmlinux
0xfb7ed31a remove_suid vmlinux
0x38f29719 kill_pg vmlinux
0x533f84cb fat_notify_change vmlinux
0x19cffe17 vfs_rmdir vmlinux
0xf9a5a9f9 generic_shutdown_super vmlinux
0x37e74642 get_jiffies_64 vmlinux
0x895871e8 svc_create_thread vmlinux
0xb413acbc del_mtd_partitions vmlinux
0x25cb79cb scsi_track_queue_full vmlinux
0xbce81843 cap_bprm_set_security vmlinux
0xac801805 init_buffer vmlinux
0x7aec8c42 ____request_resource vmlinux
0x4e281735 rpcauth_create vmlinux
0xbcee3a7e sock_no_getname vmlinux
0x102a5b05 usb_hcd_register_root_hub vmlinux
0x9515a27b vfs_link vmlinux
0xbda2f619 usb_buffer_alloc vmlinux
0xf82abc1d isa_dma_bridge_buggy vmlinux
0x5a721eec journal_flush vmlinux
0x0d5eeb25 panic_notifier_list vmlinux
0xe0b5f103 unregister_mtd_chip_driver vmlinux
0xac570d83 d_delete vmlinux
0x51c47591 mod_timer vmlinux
0xf9e5df40 MARS_CP_EN drivers/scsi/libata
0xdd3a5b4a idr_remove vmlinux
0x5b384ebc param_get_invbool vmlinux
0xbf9d1b96 nfsd_debug vmlinux
0xd666ab92 tty_hangup vmlinux
0x6eb91d74 pci_disable_device vmlinux
0xe4b3c1be init_mm vmlinux
0x39dec32c zlib_inflateSyncPoint vmlinux
0xc815caca __strlen_user_nocheck_asm vmlinux
0xaf57c446 read_cache_page vmlinux
0xc64c2466 dev_change_flags vmlinux
0x5a4dac68 cpu_present_map vmlinux
0x0f87bede xfrm_state_walk vmlinux
0x4b382933 scsi_set_medium_removal vmlinux
0xcf3d6fbd __kill_fasync vmlinux
0xbf1c7791 sysfs_create_dir vmlinux
0x7ce105dc generic_unplug_device vmlinux
0x2e1bf603 pm_unregister vmlinux
0x6c14d80c usb_init_urb vmlinux
0x9353684e tcp_accept vmlinux
0x33c5972f scsi_device_get vmlinux
0x09a7c05c scsi_device_put vmlinux
0x24b1ec24 rtl8187_ieee80211_wx_set_power drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x0a91174e rtl8187_ieee80211_wx_get_power drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x492f2c74 xfrm_policy_flush vmlinux
0xf1d0cdab __check_region vmlinux
0xf6388c56 sysctl_ip_default_ttl vmlinux
0xb6bf5e49 sock_sendmsg vmlinux
0xe4f6915c mmc_request_done drivers/mmc/mmc_core
0xf99b391f class_register vmlinux
0x05a0c814 lease_get_mtime vmlinux
0x6af2d562 sb_set_blocksize vmlinux
0xaad19bfc qdisc_unlock_tree vmlinux
0xcb51d0fd vmalloc_to_pfn vmlinux
0xbcd95981 get_task_mm vmlinux
0x3a6ec837 dma_is_consistent vmlinux
0x73725b2c crypto_unregister_alg vmlinux
0xee52d161 get_empty_filp vmlinux
0xebdd3a60 filp_open vmlinux
0xb6806195 generic_file_aio_write vmlinux
0x4c9bd9e3 xfrm_calg_get_byname vmlinux
0x12766f5f copy_io_context vmlinux
0x410119b9 get_disk vmlinux
0x23624dc8 __free_pages vmlinux
0xed9650c4 inet_bind vmlinux
0x6483a6e3 pci_scan_child_bus vmlinux
0xb76830cc pci_assign_resource vmlinux
0x435886e8 xfrm_user_policy vmlinux
0x1915033d skb_split vmlinux
0xc6f87b9c input_grab_device vmlinux
0x1a4adc7b default_mtd_writev vmlinux
0x57a4b127 journal_try_to_free_buffers vmlinux
0x686c703f xfrm_count_auth_supported vmlinux
0x519f5288 netlink_broadcast vmlinux
0xc3cf1128 in_group_p vmlinux
0x05a11464 udp_sendmsg vmlinux
0x26a36dd3 usb_kill_urb vmlinux
0x083ee9ce usb_get_intf vmlinux
0xbc50c655 init_rwsem vmlinux
0xcceb3cda sk_wait_data vmlinux
0x0a717b62 pci_enable_wake vmlinux
0x04a20170 unshare_files vmlinux
0x9f3854a4 blk_phys_contig_segment vmlinux
0x2153dd51 end_buffer_read_sync vmlinux
0x0b6690b8 inter_module_get_request vmlinux
0x584c2e3b ata_eng_timeout drivers/scsi/libata
0xb73452f9 neigh_for_each vmlinux
0x7e64181d usb_calc_bus_time vmlinux
0x5418d52a param_get_ushort vmlinux
0x5b4892d2 ata_scsi_ioctl drivers/scsi/libata
0xa6cbc567 usb_find_interface vmlinux
0xc5f52c7d pci_add_new_bus vmlinux
0x814cb012 __down vmlinux
0x78c8651b xfrm_state_check_expire vmlinux
0xd640ea74 netdev_boot_setup_check vmlinux
0x82148b09 sock_i_uid vmlinux
0xb2f0761b sock_i_ino vmlinux
0xff7fbb72 usb_trylock_device vmlinux
0xc0e52c23 register_gifconf vmlinux
0xeebe7584 mempool_alloc vmlinux
0xd95d22a5 pci_max_busnr vmlinux
0x37d9677a usb_hcd_rbus_resume vmlinux
0x825788ec proc_dointvec_minmax vmlinux
0x7b4eb856 dma_unmap_single vmlinux
0xe1bc75ea uart_unregister_port vmlinux
0xdc43a9c8 daemonize vmlinux
0xc4c309c3 blk_queue_make_request vmlinux
0x908486a5 class_simple_device_add vmlinux
0xe864e1e1 put_driver vmlinux
0x44b473e5 zlib_deflateCopy vmlinux
0xefa13b85 inter_module_register vmlinux
0x606246ac tty_ldisc_deref vmlinux
0xef0ab88b vfs_getattr vmlinux
0x9dbf5958 tcp_inherit_port vmlinux
0x7348ecd0 inet_del_protocol vmlinux
0x83b52f8c neigh_update vmlinux
0x7ee21c94 put_io_context vmlinux
0x5fa7d6b3 nobh_truncate_page vmlinux
0xcb771c58 dma_map_single vmlinux
0xf4edd4fb ethtool_op_set_tx_hw_csum vmlinux
0x40daba68 end_that_request_chunk vmlinux
0xd69b7fde pci_dac_dma_to_page vmlinux
0x4d865433 rtl8187_ieee80211_rx_mgt drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0xc85c3fb3 rtl8187_ieee80211_is_54g drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x32e2dc41 icmp_send vmlinux
0xe49414e9 rtattr_parse vmlinux
0xf79cb1e8 scsi_scan_single_target vmlinux
0x49261658 xfrm_state_update vmlinux
0x6ebf8788 usb_deregister_dev vmlinux
0x2a97369a journal_recover vmlinux
0x72b76471 dev_open vmlinux
0xda478259 ilookup vmlinux
0x4302d0eb free_pages vmlinux
0xa74c34b4 class_device_remove_bin_file vmlinux
0xd866d470 unlock_new_inode vmlinux
0x2394a062 sock_unregister vmlinux
0x17873c1f scsi_ioctl_send_command vmlinux
0x3e8ba759 kobject_hotplug vmlinux
0x9d2a3c6b kset_register vmlinux
0x4ed1dac7 fput vmlinux
0x09b33d18 posix_timer_event vmlinux
0xbd99f38e journal_set_features vmlinux
0x944a564d is_console_locked vmlinux
0x00d5de27 add_disk vmlinux
0x724779e3 sysctl_max_map_count vmlinux
0xaf3320e7 inet_shutdown vmlinux
0xac6b958c posix_lock_file_wait vmlinux
0xb01adefc uart_remove_one_port vmlinux
0x4e830a3e strnicmp vmlinux
0x879da7d3 vmalloc_to_page vmlinux
0xecc723c5 bus_add_device vmlinux
0x2552ebf1 journal_start_commit vmlinux
0x66885b4f __wake_up_bit vmlinux
0x2d4ea172 sock_release vmlinux
0x7488d9f7 usb_hcd_giveback_urb vmlinux
0x45564f16 pci_find_device vmlinux
0x8169d460 add_wait_queue_exclusive vmlinux
0xaf20e1b1 usb_claim_bandwidth vmlinux
0x75811312 crc_ccitt_table vmlinux
0x863cb91a utf8_wcstombs vmlinux
0x725aade4 nlmclnt_proc vmlinux
0x87437099 register_posix_clock vmlinux
0xad291c62 isa_slot_offset vmlinux
0x1a29e9a3 netdev_set_master vmlinux
0x4e9834f8 idr_init vmlinux
0x15e10bab mpage_readpage vmlinux
0xd6ee688f vmalloc vmlinux
0x47b698ab pci_request_region vmlinux
0xaae70047 scsi_adjust_queue_depth vmlinux
0x54e2f6fd ppp_unregister_compressor vmlinux
0x838944bd blk_complete_barrier_rq vmlinux
0xb24487cb cap_capset_check vmlinux
0xfce4b007 lock_rename vmlinux
0xad939649 bio_split vmlinux
0xcf8488f1 ata_bmdma_status drivers/scsi/libata
0x0be4bbeb xdr_inline_decode vmlinux
0x17e56aee tcp_check_req vmlinux
0x2a4b8ad3 netlink_unicast vmlinux
0xf181d8b2 neigh_sysctl_register vmlinux
0xdcb0349b sys_close vmlinux
0xbf44a59c fat_build_inode vmlinux
0xe0c6a286 seq_read vmlinux
0x71f9d1d1 is_bad_inode vmlinux
0x89b301d4 param_get_int vmlinux
0x53cc8baa start_tty vmlinux
0x711eef68 pci_remove_device_safe vmlinux
0xb59d3ba6 notify_change vmlinux
0x0460e8d5 follow_up vmlinux
0x6483655c param_get_short vmlinux
0x85f3499f skb_copy_and_csum_datagram_iovec vmlinux
0xfcacba89 sock_no_ioctl vmlinux
0x9423062d close_bdev_excl vmlinux
0x9f4303d5 dma_alloc_coherent vmlinux
0xc4bbd201 scsi_remove_device vmlinux
0xf18b132c pci_hp_change_slot_info vmlinux
0x65b256ff simple_empty vmlinux
0xb61192ff usb_hub_tt_clear_buffer vmlinux
0x2c0da9ab blk_queue_merge_bvec vmlinux
0x49573fef journal_lock_updates vmlinux
0x15e67592 dev_set_mtu vmlinux
0x7bd87272 xdr_decode_string_inplace vmlinux
0xfd4fe045 svc_seq_show vmlinux
0x33cecc07 scsi_free_host_dev vmlinux
0xa43d9be8 driver_register vmlinux
0x6d02fbe5 find_lock_page vmlinux
0x64659ec6 platform_get_irq_byname vmlinux
0x804000aa remove_wait_queue vmlinux
0x89cef6fb param_array_set vmlinux
0x806d5133 param_array_get vmlinux
0xbef5a8ed sk_stream_write_space vmlinux
0x527e8dcf kset_find_obj vmlinux
0x47026d51 ata_device_add drivers/scsi/libata
0xd8d45648 rtl8187_ieee80211_softmac_start_protocol drivers/net/wireless/realtek/usb/rtl8187/ieee80211/ieee80211-8187
0x32288cf2 add_mtd_blktrans_dev vmlinux
0x8568c024 usb_buffer_free vmlinux
0xd044e87f tcp_sendmsg vmlinux
0xc6f3e691 i2c_smbus_write_word_data vmlinux
0x31ab8946 do_posix_clock_notimer_create vmlinux
0x9276dfd1 ata_tf_load drivers/scsi/libata
0x63fa9282 ata_tf_read drivers/scsi/libata
0x16f00316 sock_map_fd vmlinux
0x45a55ec8 __iounmap vmlinux
0x593cc946 xfrm_replay_advance vmlinux
0xc2ec314c d_prune_aliases vmlinux
0x0f01f1f8 __strnlen_user_asm vmlinux
0x6e440b58 memcpy_fromiovecend vmlinux
0x2bea46a8 __pagevec_release vmlinux
0x6f67f475 rtc_lock vmlinux
0x04947458 ilookup5 vmlinux
0x83a476ce bitmap_scnlistprintf vmlinux
0x19ef3d83 journal_release_buffer vmlinux
0x96ef05b2 per_cpu__kstat vmlinux
0x52fb7f11 find_trylock_page vmlinux
0x8ef12e14 simple_fill_super vmlinux
0xf50bda13 have_submounts vmlinux
0x240b8cc8 __user_walk vmlinux
0xf397b9aa __tasklet_schedule vmlinux
0xa90fd3b7 dev_load vmlinux
0x7f073690 bio_add_page vmlinux
0x7ca341af kernel_thread vmlinux
0xba7921dc zlib_inflateEnd vmlinux
0x446b619e open_by_devnum vmlinux
0xda16cac0 contig_page_data vmlinux
0xb423dba1 console_blanked vmlinux
0xa2316d64 pci_bus_add_device vmlinux
0xbff25cef rpc_run_child vmlinux
0xc06de07c simple_transaction_read vmlinux
0x8a99a016 mempool_free_slab vmlinux
0x3d0376bf __flush_dcache_page vmlinux
0x2e909b6e pci_scan_slot vmlinux
0x295be6be generic_getxattr vmlinux
0xc7cda926 generic_setxattr vmlinux
0xaa804e9a mpage_readpages vmlinux
0x7b960c20 pci_request_regions vmlinux
0x2eb6ce48 __wait_on_buffer vmlinux
0xd425b569 nr_swap_pages vmlinux
0x712d4af7 ata_host_stop drivers/scsi/libata
0x388d28f3 sock_create vmlinux
0x3ded86a1 kill_litter_super vmlinux