reverted: --- linux-2.6.24/drivers/usb/host/ehci.h +++ linux-2.6.24.orig/drivers/usb/host/ehci.h @@ -74,6 +74,7 @@ /* async schedule support */ struct ehci_qh *async; struct ehci_qh *reclaim; + unsigned reclaim_ready : 1; unsigned scanning : 1; /* periodic schedule support */ @@ -104,7 +105,6 @@ struct dma_pool *itd_pool; /* itd per iso urb */ struct dma_pool *sitd_pool; /* sitd per split iso urb */ - struct timer_list iaa_watchdog; struct timer_list watchdog; unsigned long actions; unsigned stamp; @@ -140,21 +140,9 @@ } -static inline void -iaa_watchdog_start(struct ehci_hcd *ehci) -{ - WARN_ON(timer_pending(&ehci->iaa_watchdog)); - mod_timer(&ehci->iaa_watchdog, - jiffies + msecs_to_jiffies(EHCI_IAA_MSECS)); -} - -static inline void iaa_watchdog_done(struct ehci_hcd *ehci) -{ - del_timer(&ehci->iaa_watchdog); -} - enum ehci_timer_action { TIMER_IO_WATCHDOG, + TIMER_IAA_WATCHDOG, TIMER_ASYNC_SHRINK, TIMER_ASYNC_OFF, }; @@ -172,6 +160,9 @@ unsigned long t; switch (action) { + case TIMER_IAA_WATCHDOG: + t = EHCI_IAA_JIFFIES; + break; case TIMER_IO_WATCHDOG: t = EHCI_IO_JIFFIES; break; @@ -188,7 +179,8 @@ // async queue SHRINK often precedes IAA. while it's ready // to go OFF neither can matter, and afterwards the IO // watchdog stops unless there's still periodic traffic. + if (action != TIMER_IAA_WATCHDOG + && t > ehci->watchdog.expires - if (time_before_eq(t, ehci->watchdog.expires) && timer_pending (&ehci->watchdog)) return; mod_timer (&ehci->watchdog, t); reverted: --- linux-2.6.24/drivers/usb/host/ehci-hub.c +++ linux-2.6.24.orig/drivers/usb/host/ehci-hub.c @@ -123,8 +123,6 @@ if (time_before (jiffies, ehci->next_statechange)) msleep(5); - del_timer_sync(&ehci->watchdog); - del_timer_sync(&ehci->iaa_watchdog); port = HCS_N_PORTS (ehci->hcs_params); spin_lock_irq (&ehci->lock); @@ -136,7 +134,7 @@ } ehci->command = ehci_readl(ehci, &ehci->regs->command); if (ehci->reclaim) + ehci->reclaim_ready = 1; - end_unlink_async(ehci); ehci_work(ehci); /* Unlike other USB host controller types, EHCI doesn't have @@ -173,6 +171,7 @@ } /* turn off now-idle HC */ + del_timer_sync (&ehci->watchdog); ehci_halt (ehci); hcd->state = HC_STATE_SUSPENDED; reverted: --- linux-2.6.24/drivers/usb/host/ehci-dbg.c +++ linux-2.6.24.orig/drivers/usb/host/ehci-dbg.c @@ -763,7 +763,9 @@ } if (ehci->reclaim) { + temp = scnprintf (next, size, "reclaim qh %p%s\n", + ehci->reclaim, + ehci->reclaim_ready ? " ready" : ""); - temp = scnprintf(next, size, "reclaim qh %p\n", ehci->reclaim); size -= temp; next += temp; } reverted: --- linux-2.6.24/drivers/usb/host/ehci-pci.c +++ linux-2.6.24.orig/drivers/usb/host/ehci-pci.c @@ -305,7 +305,7 @@ /* emptying the schedule aborts any urbs */ spin_lock_irq(&ehci->lock); if (ehci->reclaim) + ehci->reclaim_ready = 1; - end_unlink_async(ehci); ehci_work(ehci); spin_unlock_irq(&ehci->lock); diff -u linux-2.6.24/drivers/usb/host/ehci-q.c linux-2.6.24/drivers/usb/host/ehci-q.c --- linux-2.6.24/drivers/usb/host/ehci-q.c +++ linux-2.6.24/drivers/usb/host/ehci-q.c @@ -973,7 +973,7 @@ struct ehci_qh *qh = ehci->reclaim; struct ehci_qh *next; - iaa_watchdog_done(ehci); + timer_action_done (ehci, TIMER_IAA_WATCHDOG); // qh->hw_next = cpu_to_hc32(qh->qh_dma); qh->qh_state = QH_STATE_IDLE; @@ -983,6 +983,7 @@ /* other unlink(s) may be pending (in QH_STATE_UNLINK_WAIT) */ next = qh->reclaim; ehci->reclaim = next; + ehci->reclaim_ready = 0; qh->reclaim = NULL; qh_completions (ehci, qh); @@ -1058,10 +1059,11 @@ return; } + ehci->reclaim_ready = 0; cmd |= CMD_IAAD; ehci_writel(ehci, cmd, &ehci->regs->command); (void)ehci_readl(ehci, &ehci->regs->command); - iaa_watchdog_start(ehci); + timer_action (ehci, TIMER_IAA_WATCHDOG); } /*-------------------------------------------------------------------------*/ reverted: --- linux-2.6.24/drivers/usb/host/ehci-hcd.c +++ linux-2.6.24.orig/drivers/usb/host/ehci-hcd.c @@ -109,7 +109,7 @@ #define EHCI_TUNE_MULT_TT 1 #define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */ +#define EHCI_IAA_JIFFIES (HZ/100) /* arbitrary; ~10 msec */ -#define EHCI_IAA_MSECS 10 /* arbitrary */ #define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */ #define EHCI_ASYNC_JIFFIES (HZ/20) /* async idle timeout */ #define EHCI_SHRINK_JIFFIES (HZ/200) /* async qh unlink delay */ @@ -266,7 +266,6 @@ /*-------------------------------------------------------------------------*/ -static void end_unlink_async(struct ehci_hcd *ehci); static void ehci_work(struct ehci_hcd *ehci); #include "ehci-hub.c" @@ -276,62 +275,25 @@ /*-------------------------------------------------------------------------*/ +static void ehci_watchdog (unsigned long param) -static void ehci_iaa_watchdog(unsigned long param) { struct ehci_hcd *ehci = (struct ehci_hcd *) param; unsigned long flags; spin_lock_irqsave (&ehci->lock, flags); + /* lost IAA irqs wedge things badly; seen with a vt8235 */ + if (ehci->reclaim) { + u32 status = ehci_readl(ehci, &ehci->regs->status); + if (status & STS_IAA) { + ehci_vdbg (ehci, "lost IAA\n"); - /* Lost IAA irqs wedge things badly; seen first with a vt8235. - * So we need this watchdog, but must protect it against both - * (a) SMP races against real IAA firing and retriggering, and - * (b) clean HC shutdown, when IAA watchdog was pending. - */ - if (ehci->reclaim - && !timer_pending(&ehci->iaa_watchdog) - && HC_IS_RUNNING(ehci_to_hcd(ehci)->state)) { - u32 cmd, status; - - /* If we get here, IAA is *REALLY* late. It's barely - * conceivable that the system is so busy that CMD_IAAD - * is still legitimately set, so let's be sure it's - * clear before we read STS_IAA. (The HC should clear - * CMD_IAAD when it sets STS_IAA.) - */ - cmd = ehci_readl(ehci, &ehci->regs->command); - if (cmd & CMD_IAAD) - ehci_writel(ehci, cmd & ~CMD_IAAD, - &ehci->regs->command); - - /* If IAA is set here it either legitimately triggered - * before we cleared IAAD above (but _way_ late, so we'll - * still count it as lost) ... or a silicon erratum: - * - VIA seems to set IAA without triggering the IRQ; - * - IAAD potentially cleared without setting IAA. - */ - status = ehci_readl(ehci, &ehci->regs->status); - if ((status & STS_IAA) || !(cmd & CMD_IAAD)) { COUNT (ehci->stats.lost_iaa); ehci_writel(ehci, STS_IAA, &ehci->regs->status); + ehci->reclaim_ready = 1; } - - ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n", - status, cmd); - end_unlink_async(ehci); } + /* stop async processing after it's idled a bit */ - spin_unlock_irqrestore(&ehci->lock, flags); -} - -static void ehci_watchdog(unsigned long param) -{ - struct ehci_hcd *ehci = (struct ehci_hcd *) param; - unsigned long flags; - - spin_lock_irqsave(&ehci->lock, flags); - - /* stop async processing after it's idled a bit */ if (test_bit (TIMER_ASYNC_OFF, &ehci->actions)) start_unlink_async (ehci, ehci->async); @@ -401,6 +363,8 @@ static void ehci_work (struct ehci_hcd *ehci) { timer_action_done (ehci, TIMER_IO_WATCHDOG); + if (ehci->reclaim_ready) + end_unlink_async (ehci); /* another CPU may drop ehci->lock during a schedule scan while * it reports urb completions. this flag guards against bogus @@ -435,7 +399,6 @@ /* no more interrupts ... */ del_timer_sync (&ehci->watchdog); - del_timer_sync(&ehci->iaa_watchdog); spin_lock_irq(&ehci->lock); if (HC_IS_RUNNING (hcd->state)) @@ -484,10 +447,6 @@ ehci->watchdog.function = ehci_watchdog; ehci->watchdog.data = (unsigned long) ehci; - init_timer(&ehci->iaa_watchdog); - ehci->iaa_watchdog.function = ehci_iaa_watchdog; - ehci->iaa_watchdog.data = (unsigned long) ehci; - /* * hw default: 1K periodic list heads, one per frame. * periodic_size can shrink by USBCMD update if hcc_params allows. @@ -504,6 +463,7 @@ ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params); ehci->reclaim = NULL; + ehci->reclaim_ready = 0; ehci->next_uframe = -1; /* @@ -651,7 +611,7 @@ static irqreturn_t ehci_irq (struct usb_hcd *hcd) { struct ehci_hcd *ehci = hcd_to_ehci (hcd); + u32 status, pcd_status = 0; - u32 status, pcd_status = 0, cmd; int bh; spin_lock (&ehci->lock); @@ -672,7 +632,7 @@ /* clear (just) interrupts */ ehci_writel(ehci, status, &ehci->regs->status); + ehci_readl(ehci, &ehci->regs->command); /* unblock posted write */ - cmd = ehci_readl(ehci, &ehci->regs->command); bh = 0; #ifdef EHCI_VERBOSE_DEBUG @@ -693,17 +653,9 @@ /* complete the unlinking of some qh [4.15.2.3] */ if (status & STS_IAA) { + COUNT (ehci->stats.reclaim); + ehci->reclaim_ready = 1; + bh = 1; - /* guard against (alleged) silicon errata */ - if (cmd & CMD_IAAD) { - ehci_writel(ehci, cmd & ~CMD_IAAD, - &ehci->regs->command); - ehci_dbg(ehci, "IAA with IAAD still set?\n"); - } - if (ehci->reclaim) { - COUNT(ehci->stats.reclaim); - end_unlink_async(ehci); - } else - ehci_dbg(ehci, "IAA with nothing to reclaim?\n"); } /* remote wakeup [4.3.1] */ @@ -809,16 +761,10 @@ static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh) { + /* if we need to use IAA and it's busy, defer */ + if (qh->qh_state == QH_STATE_LINKED + && ehci->reclaim + && HC_IS_RUNNING (ehci_to_hcd(ehci)->state)) { - /* failfast */ - if (!HC_IS_RUNNING(ehci_to_hcd(ehci)->state) && ehci->reclaim) - end_unlink_async(ehci); - - /* if it's not linked then there's nothing to do */ - if (qh->qh_state != QH_STATE_LINKED) - ; - - /* defer till later if busy */ - else if (ehci->reclaim) { struct ehci_qh *last; for (last = ehci->reclaim; @@ -828,8 +774,12 @@ qh->qh_state = QH_STATE_UNLINK_WAIT; last->reclaim = qh; + /* bypass IAA if the hc can't care */ + } else if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state) && ehci->reclaim) + end_unlink_async (ehci); + + /* something else might have unlinked the qh by now */ + if (qh->qh_state == QH_STATE_LINKED) - /* start IAA cycle */ - } else start_unlink_async (ehci, qh); } @@ -856,19 +806,7 @@ qh = (struct ehci_qh *) urb->hcpriv; if (!qh) break; + unlink_async (ehci, qh); - switch (qh->qh_state) { - case QH_STATE_LINKED: - case QH_STATE_COMPLETING: - unlink_async(ehci, qh); - break; - case QH_STATE_UNLINK: - case QH_STATE_UNLINK_WAIT: - /* already started */ - break; - case QH_STATE_IDLE: - WARN_ON(1); - break; - } break; case PIPE_INTERRUPT: @@ -960,7 +898,6 @@ unlink_async (ehci, qh); /* FALL THROUGH */ case QH_STATE_UNLINK: /* wait for hw to finish? */ - case QH_STATE_UNLINK_WAIT: idle_timeout: spin_unlock_irqrestore (&ehci->lock, flags); schedule_timeout_uninterruptible(1); diff -u linux-2.6.24/debian/changelog linux-2.6.24/debian/changelog --- linux-2.6.24/debian/changelog +++ linux-2.6.24/debian/changelog @@ -1,3 +1,13 @@ +linux (2.6.24-19.36ubuntu1+804cmpc1) hardy; urgency=low + + * Revert "USB: EHCI: add separate IAA watchdog timer" + * Classmate: USB_PERSIST fixes for suspend OriginalAuthor: Alan Stern + OriginalLocation: + http://thread.gmane.org/gmane.linux.usb.general/1899 + * add ignore file to skip abi and module check + + -- Oliver Grawert Wed, 16 Jul 2008 20:33:06 +0200 + linux (2.6.24-19.36) hardy-security; urgency=low * Fixed hppa FTBS by adding ABI files from -19.33. reverted: --- linux-2.6.24/debian/abi/2.6.24-19.35/i386/386.modules +++ linux-2.6.24.orig/debian/abi/2.6.24-19.35/i386/386.modules @@ -1,1936 +0,0 @@ -3c359 -3c501 -3c503 -3c505 -3c507 -3c509 -3c515 -3c523 -3c527 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-xxxx -53c700 -6pack -8021q -8139cp -8139too -8250_accent -8250_boca -8250_exar_st16c554 -8250_fourport -8250_hub6 -8250_mca -82596 -8390 -9p -9pnet -9pnet_fd -9pnet_virtio -a100u2w -a3d -aacraid -abituguru -abituguru3 -ablkcipher -abyss -ac -ac3200 -ac97_bus -acecad -acenic -acpi-cpufreq -acpiphp -acpiphp_ibm -acquirewdt -act2000 -act200l-sir -act_gact -act_ipt -actisys-sir -act_mirred -act_nat -act_pedit -act_police -act_simple -ad7418 -adfs -adi -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm8211 -adm9240 -ads7846 -adt7470 -adutux -adv7170 -adv7175 -advansys -advantechwdt -aead -aec62xx -aes_generic -aes-i586 -affs -af_key -af_packet -af-rxrpc -agpgart -ah4 -ah6 -aha152x -aha152x_cs -aha1542 -aha1740 -ahci -aic79xx -aic7xxx -aic94xx -aiptek -aircable -airo -airo_cs -airprime -alauda -ali14xx -ali-agp -ali-ircc -alim1535_wdt -alim15x3 -alim7101_wdt -ambassador -amd64-agp -amd76xrom -amd8111e -amd-k7-agp -amd-rng -analog -anubis -aoe -apm -appledisplay -applesmc -appletalk -appletouch -applicom -arc4 -arcfb -arcmsr -arcnet -arc-rawmode -arc-rimi -ark3116 -arkfb -arlan -arptable_filter -arp_tables -arpt_mangle -asb100 -asix -asus_acpi -asus-laptop -async_memcpy -async_tx -async_xor -at1700 -at25 -ata_generic -ata_piix -aten -ati-agp -atiixp -ati_remote -ati_remote2 -atl1 -atlas_btns -atmel -atmel_cs -atmel_pci -atmtcp -atp -atp870u -atxp1 -aty128fb -atyfb -auerswald -authenc -auth_rpcgss -autofs -autofs4 -avma1_cs -avm_cs -ax25 -axnet_cs -b1 -b1dma -b1isa -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -battery -bay -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcm203x -bcm3510 -bcm43xx -befs -belkin_sa -berry_charge -bfs -bfusb -binfmt_aout -binfmt_misc -bitblit -blkcipher -block2mtd -blowfish -bluecard_cs -bluetooth -bnep -bnx2 -bonding -bpa10x -bpck -bpck6 -bpqether -br2684 -bridge -broadcom -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btcx-risc -btsdio -bttv -btuart_cs -budget -budget-av -budget-ci -budget-core -budget-patch -BusLogic -button -bw-qcam -c101 -c4 -cafe_ccic -cafe_nand -camellia -capi -capidrv -capifs -capmode -cassini -cast5 -cast6 -catc -cbc -cciss -cdc-acm -cdc_ether -cdc_subset -cdrom -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -chipreg -cicada -cifs -cinergyT2 -cirrusfb -ck804xrom -cls_basic -cls_fw -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm4000_cs -cm4040_cs -cmd64x -cmtp -cn -cobra -coda -com20020 -com20020_cs -com20020-isa -com20020-pci -com90io -com90xx -comm -compat_ioctl32 -configfs -container -cops -coretemp -corgi_bl -cosa -cp2101 -cpcihp_generic -cpcihp_zt5550 -cpia -cpia2 -cpia_pp -cpia_usb -cpqarray -cpqphp -cpu5wdt -cpufreq_conservative -cpufreq-nforce2 -cpufreq_ondemand -cpufreq_powersave -cpufreq_stats -cpufreq_userspace -cpuid -c-qcam -cr_bllcd -crc16 -crc32c -crc7 -crc-ccitt -crc-itu-t -crvml -cryptd -cryptoloop -crypto_null -cs53l32a -cs5530 -cs5535 -cs5535_gpio -cs553x_nand -cs89x0 -ct82c710 -cx22700 -cx22702 -cx2341x -cx23885 -cx24110 -cx24123 -cx25840 -cx8800 -cx8802 -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx88xx -cxacru -cxgb -cxgb3 -cy82c693 -cyber2000fb -cyberjack -cyblafb -cyclades -cyclomx -cycx_drv -cypress_cy7c63 -cypress_m8 -cytherm -dabusb -DAC960 -davicom -db9 -dc395x -dca -dccp -dccp_ccid2 -dccp_ccid3 -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dccp_tfrc_lib -dcdbas -de2104x -de4x5 -de600 -de620 -decnet -deflate -defxx -delkin_cb -dell_rbu -depca -des_generic -dib0070 -dib3000mb -dib3000mc -dib7000m -dib7000p -dibx000_common -digi_acceleport -dilnetpc -diskonchip -display -divacapi -divadidd -diva_idi -diva_mnt -divas -dl2k -dlci -dlm -dm9601 -dmascc -dm-crypt -dme1737 -dm-emc -dmfe -dm-hp-sw -dm-mirror -dm-mod -dm-multipath -dm-rdac -dm-round-robin -dm-snapshot -dmx3191d -dm-zero -dn_rtmsg -doc2000 -doc2001 -doc2001plus -docecc -dock -docprobe -donauboe -dpt_i2o -drm -ds1337 -ds1374 -ds1621 -ds1682 -ds2482 -ds2490 -ds2760_battery -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dtc -dtc2278 -dtl1_cs -dtlk -dummy -dv1394 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-au6610 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-m920x -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -e100 -e1000 -e1000e -e2100 -e752x_edac -e7xxx_edac -eata -ebt_802_3 -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_ulog -ebt_vlan -ecb -econet -ecryptfs -edac_core -eepro -eepro100 -eeprom -eeprom_93cx6 -eexpress -efficeon-agp -efs -ehci-hcd -elo -elsa_cs -em28xx -em_cmp -emi26 -emi62 -em_meta -em_nbyte -empeg -em_text -emu10k1-gp -em_u32 -eni -epat -epca -epia -epic100 -eql -es3210 -esb2rom -esi-sir -esp4 -esp6 -et61x251 -eth1394 -eth16i -eurotechwdt -evbug -evdev -ewrk3 -exportfs -ext2 -ext3 -f71805f -f71882fg -f75375s -fakephp -fan -farsync -fat -faulty -fbcon -fb_ddc -fb_sys_fops -fcrypt -fd_mcs -fdomain -fdomain_cs -fealnx -ff-memless -firestream -fit2 -fit3 -fixed -floppy -fm801-gp -fmvj18x_cs -font -forcedeth -fore_200e -freevxfs -freq_table -friq -frpw -fscher -fschmd -fscpos -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu_ts -funsoft -fuse -g450_pll -gadgetfs -gamecon -gameport -garmin_gps -gdth -generic_serial -gen_probe -genrtc -geode-aes -geode-rng -g_ether -gf128mul -gf2k -g_file_storage -gfs2 -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -g_NCR5380 -g_NCR5380_mmio -grip -grip_mp -g_serial -gtco -guillemot -gunze -gx1fb -gxfb -gx-suspmod -g_zero -hamachi -hangcheck-timer -hci_uart -hci_usb -hci_vhci -hdaps -hdlc -hdlc_cisco -hdlcdrv -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -he -hecubafb -hermes -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfs -hfsplus -hgafb -hid -hidp -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -horizon -hostap -hostap_cs -hostap_pci -hostap_plx -hostess_sv11 -hp -hp100 -hp4x -hpfs -hp-plus -hpt34x -hpt366 -hptiop -ht6560b -hwmon-vid -hysdn -i2c-algo-bit -i2c-algo-pca -i2c-algo-pcf -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-core -i2c-dev -i2c-elektor -i2c-i801 -i2c-i810 -i2c-matroxfb -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-isa -i2c-piix4 -i2c-prosavage -i2c-savage4 -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-voodoo3 -i2o_block -i2o_bus -i2o_config -i2o_core -i2o_proc -i2o_scsi -i3000_edac -i5000_edac -i5k_amb -i6300esb -i810 -i810fb -i82092 -i82365 -i82860_edac -i82875p_edac -i82975x_edac -i830 -i8k -i915 -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_mad -ibmasm -ibmasr -ibmcam -ibmlana -ibmmca -ibmpex -ibmphp -ib_mthca -ibmtr -ibmtr_cs -ib_sa -ib_srp -ib_ucm -ib_umad -ib_uverbs -ichxrom -icn -icplus -ide-cd -ide-core -ide-disk -ide-floppy -ide-generic -ide_platform -ide-scsi -ide-tape -idmouse -idt77252 -ieee1394 -ieee80211 -ieee80211_crypt -ieee80211_crypt_ccmp -ieee80211_crypt_tkip -ieee80211_crypt_wep -ieee80211softmac -ifb -iforce -imm -in2000 -inet_lro -inftl -initio -inport -input-polldev -intel-agp -intelfb -intel-rng -intel_vr_nor -interact -ioatdma -ioc4 -io_edgeport -io_ti -iowarrior -ip2 -ip2main -ip6_queue -ip6table_filter -ip6table_mangle -ip6table_raw -ip6_tables -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_hl -ip6t_HL -ip6t_ipv6header -ip6t_LOG -ip6t_mh -ip6t_owner -ip6t_REJECT -ip6t_rt -ip6_tunnel -ipaq -ipcomp -ipcomp6 -ipddp -ipg -ip_gre -iphase -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_watchdog -ip_queue -ipr -ips -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -ip_tables -ipt_addrtype -ipt_ah -ipt_CLUSTERIP -ipt_ecn -ipt_ECN -ipt_iprange -ipt_LOG -ipt_MASQUERADE -ipt_NETMAP -ipt_owner -ipt_recent -ipt_REDIRECT -ipt_REJECT -ipt_SAME -ipt_tos -ipt_TOS -ipt_ttl -ipt_TTL -ipt_ULOG -ipv6 -ip_vs -ip_vs_dh -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ipw -ipw2100 -ipw2200 -ipx -ircomm -ir-common -ircomm-tty -irda -irda-usb -ir-kbd-i2c -irlan -irnet -irport -irtty-sir -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isdnloop -isl6421 -isofs -isp116x-hcd -istallion -it87 -it8712f_wdt -iTCO_vendor_support -iTCO_wdt -ivtv -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -ixgb -ixgbe -ixj -ixj_pcmcia -jbd -jedec_probe -jffs2 -jfs -joydev -joydump -jsm -k8temp -kafs -kaweth -kbic -kbtab -kernelcapi -keyspan -keyspan_pda -keyspan_remote -khazad -kingsun-sir -kl5kusb105 -kobil_sct -konicawc -ks0108 -ks0127 -ks959-sir -ksdazzle-sir -ktti -kvm -kvm-amd -kvm-intel -kyrofb -l2cap -l440gx -l64781 -lanai -lance -lanstreamer -lapb -lapbether -lcd -ldusb -lec -led-class -leds-net48xx -leds-wrap -ledtrig-heartbeat -ledtrig-timer -legousbtower -lgdt330x -libata -libcrc32c -libertas -libertas_cs -libertas_sdio -libiscsi -libphy -libsas -libsrp -libusual -lightning -linear -litelink-sir -lkkbd -llc2 -lm63 -lm70 -lm75 -lm77 -lm78 -lm80 -lm83 -lm85 -lm87 -lm90 -lm92 -lm93 -lmc -lnbp21 -lne390 -lockd -lock_dlm -lock_nolock -logibm -longhaul -longrun -loop -lp -lp486e -lpfc -lrw -ltpc -ltv350qv -lxfb -lxt -lzo_compress -lzo_decompress -m25p80 -ma600-sir -mac80211 -machzwd -macmodes -macvlan -madgemc -magellan -map_absent -map_funcs -map_ram -map_rom -marvell -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_DAC1064 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -matroxfb_Ti3026 -matrox_w1 -max1619 -max6650 -max6875 -mbcache -mca_53c9x -mcp2120-sir -mcs7780 -mcs7830 -mct_u232 -md4 -mdacon -mdc800 -mdio-bitbang -md-mod -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -meye -mga -michael_mic -microcode -microtek -mii -minix -mixcomwd -mk712 -mkiss -mlx4_core -mlx4_ib -mmc_block -mmc_core -mos7720 -mos7840 -moxa -mpoa -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -msdos -msi-laptop -msp3400 -msr -mt2060 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mtd -mtd_blkdevs -mtdblock -mtdblock_ro -mtdchar -mtdconcat -mtd_dataflash -mtdoops -mtdram -mtouch -multipath -mwave -mxser_new -myri10ge -n2 -nand -nand_ecc -nand_ids -nandsim -natsemi -navman -nbd -ncpfs -NCR53c406a -NCR53C9x -NCR_D700 -NCR_Q720_mod -ne -ne2 -ne2k-pci -ne3210 -neofb -net1080 -net2280 -netconsole -netrom -netsc520 -nettel -netwave_cs -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sip -nf_conntrack_tftp -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_irc -nf_nat_pptp -nf_nat_proto_gre -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nfnetlink -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfsd -nftl -n_hdlc -ni5010 -ni52 -ni65 -nicstar -niu -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp437 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-1 -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -n_r3964 -ns558 -ns83820 -ns87415 -nsc_gpio -nsc-ircc -nsp32 -nsp_cs -ntfs -nvidia-agp -nvidiafb -nvram -nxt200x -nxt6000 -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ohci1394 -ohci-hcd -old_belkin-sir -olympic -omninet -on20 -on26 -onenand -onenand_sim -oprofile -opti621 -option -or51132 -or51211 -orinoco -orinoco_cs -osst -oti6858 -output -ov7670 -ovcamchip -p4-clockmod -p54common -p54pci -p54usb -p8023 -padlock-aes -padlock-sha -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pas16 -pata_acpi -pata_amd -pata_artop -pata_atiixp -pata_cmd64x -pata_cs5520 -pata_cs5536 -pata_efar -pata_hpt366 -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_marvell -pata_mpiix -pata_netcell -pata_oldpiix -pata_pcmcia -pata_pdc2027x -pata_platform -pata_qdi -pata_rz1000 -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc110pad -pc300 -pc87360 -pc8736x_gpio -pc87413_wdt -pc87427 -pca9539 -pcbc -pcbit -pcd -pcf8574 -pcf8591 -pci -pci200syn -pciehp -pci_hotplug -pcilynx -pcips2 -pcmcia -pcmcia_core -pcnet32 -pcnet_cs -pcspkr -pcwd -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc202xx_old -pdc_adma -pegasus -penmount -pf -pg -phantom -phidget -phidgetkit -phidgetmotorcontrol -phidgetservo -phonedev -phram -physmap -pktcdvd -pktgen -pl2303 -plat_nand -plat-ram -plip -plusb -pluto2 -pm2fb -pm3fb -pmc551 -pms -pnc2000 -powermate -powernow-k6 -powernow-k7 -powernow-k8 -ppa -ppdev -ppp_async -ppp_deflate -ppp_generic -ppp_mppe -pppoatm -pppoe -pppol2tp -pppox -ppp_synctty -prism54 -processor -progear_bl -proteon -psi240i -psmouse -pt -pvrusb2 -pwc -qd65xx -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlogic_cs -qlogicfas -qlogicfas408 -qnx4 -qsemi -qt1010 -quickcam_messenger -quota_v1 -quota_v2 -r128 -r8169 -r82600_edac -r8a66597-hcd -radeon -radeonfb -radio-aimslab -radio-aztech -radio-cadet -radio-gemtek -radio-gemtek-pci -radio-maestro -radio-maxiradio -radio-rtrack2 -radio-sf16fmi -radio-sf16fmr2 -radio-terratec -radio-trust -radio-typhoon -radio-zoltrix -raid0 -raid1 -raid10 -raid456 -raid_class -raw -raw1394 -ray_cs -rdma_cm -rdma_ucm -redboot -reed_solomon -reiserfs -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill -rfkill-input -ricoh_mmc -rio -rio500 -riscom8 -rivafb -rndis_host -rocket -romfs -rose -rpcsec_gss_krb5 -rpcsec_gss_spkm3 -rrunner -rsrc_nonstatic -rt2400pci -rt2500pci -rt2500usb -rt2x00lib -rt2x00pci -rt2x00usb -rt61pci -rt73usb -rtc -rtc-core -rtc-ds1307 -rtc-ds1374 -rtc-ds1553 -rtc-ds1672 -rtc-ds1742 -rtc-isl1208 -rtc-lib -rtc-m41t80 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-pcf8563 -rtc-pcf8583 -rtc-rs5c348 -rtc-rs5c372 -rtc-stk17ta8 -rtc-test -rtc-v3020 -rtc-x1205 -rtl8150 -rtl8187 -rxkad -s1d13xxxfb -s2io -s3fb -s5h1409 -s5h1420 -saa5246a -saa5249 -saa6588 -saa6752hs -saa7110 -saa7111 -saa7114 -saa7115 -saa7127 -saa7134 -saa7134-dvb -saa7134-empress -saa7146 -saa7146_vv -saa7185 -saa7191 -safe_serial -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbc60xxwdt -sbc7240_wdt -sbc8360 -sbc_epx_c3 -sbc_gxx -sbni -sbp2 -sbs -sbshc -sc -sc1200 -sc1200wdt -sc520cdp -sc520_wdt -sc92031 -scb2_flash -scc -sch_atm -sch_cbq -sch_dsmark -sch_gred -sch_hfsc -sch_htb -sch_ingress -sch_netem -sch_prio -sch_red -sch_sfq -sch_tbf -sch_teql -sco -scsi_debug -scsi_mod -scsi_tgt -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -scsi_wait_scan -sctp -scx200_32 -scx200_acb -scx200_docflash -scx200_gpio -scx200_hrt -scx200_i2c -scx200_wdt -sdhci -sdio_uart -sdla -sd_mod -se401 -seagate -sealevel -sedlbauer_cs -seed -seeq8005 -ser_gigaset -serial_cs -serio_raw -sermouse -serpent -serport -sg -sha1_generic -sha256_generic -sha512 -shaper -shpchp -sidewinder -sierra -sim710 -sir-dev -sis -sis190 -sis5595 -sis900 -sis-agp -sisfb -sisusbvga -sit -skfp -skge -skisa -sky2 -sl811_cs -sl811-hcd -slhc -slip -slram -sm501 -sm501fb -smbfs -smc9194 -smc91c92_cs -smc-mca -smctr -smc-ultra -smc-ultra32 -smsc -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc-ircc2 -sn9c102 -softcursor -softdog -sony-laptop -sonypi -soundcore -sp8870 -sp887x -spaceball -spaceorb -specialix -spectrum_cs -speedstep-centrino -speedstep-ich -speedstep-lib -speedstep-smi -speedtch -spi_bitbang -spi_butterfly -spi_lm70llp -sr_mod -ssb -ssfdc -sstfb -st -stallion -starfire -stex -stinger -stir4200 -stowaway -stradis -strip -stv0297 -stv0299 -stv680 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -svgalib -sworks-agp -sx -sx8 -sym53c416 -sym53c500_cs -sym53c8xx -synclink -synclink_cs -synclink_gt -synclinkmp -syncppp -syscopyarea -sysfillrect -sysimgblt -sysv -t128 -t1isa -t1pci -tc86c001 -tcic -tcm825x -tcp_bic -tcp_cubic -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tda10021 -tda10023 -tda1004x -tda10086 -tda7432 -tda8083 -tda826x -tda827x -tda8290 -tda9840 -tda9875 -tdfx -tdfxfb -tea -tea5761 -tea5767 -tea6415c -tea6420 -tehuti -tekram-sir -teles_cs -tg3 -tgr192 -thermal -thinkpad_acpi -thmc50 -tifm_7xx1 -tifm_core -tifm_sd -tileblit -tipc -ti_usb_3410_5052 -tlan -tlclk -tle62x0 -tlv320aic23b -tmdc -tms380tr -tmscsim -tmspci -toshiba -toshiba_acpi -touchright -touchwin -tpm -tpm_atmel -tpm_bios -tpm_infineon -tpm_nsc -tpm_tis -trancevibrator -tridentfb -trm290 -ts5500_flash -ts_bm -ts_fsm -ts_kmp -tsl2550 -ttpci-eeprom -ttusb_dec -ttusbdecfe -tua6100 -tulip -tun -tuner -tuner-3036 -tuner-simple -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -twidjoy -twofish -twofish_common -twofish-i586 -typhoon -u132-hcd -u14-34f -ubi -ucb1400_ts -udf -ueagle-atm -ufs -uhci-hcd -uinput -uio -uio_cif -uli526x -ultracam -ultrastor -umc8672 -umem -upd64031a -upd64083 -uPD98402 -usb8xxx -usbatm -usbcore -usb_debug -usb_gigaset -usbhid -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usb-storage -usbtouchscreen -usbvideo -usbvision -uss720 -uvesafb -v4l1-compat -v4l2-common -v4l2-int-device -ves1820 -ves1x93 -vesafb -veth -vfat -vga16fb -vgastate -via -via686a -via-agp -via-ircc -via-rhine -via-rng -via-velocity -vicam -video -video1394 -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videocodec -videodev -virtio -virtio_balloon -virtio_blk -virtio_net -virtio_pci -virtio_ring -visor -vitesse -vivi -vlsi_ir -vmlfb -vp27smpx -vpx3220 -vsxxxaa -vt1211 -vt8231 -vt8623fb -w1_ds2433 -w1_ds2760 -w1_smem -w1_therm -w83627ehf -w83627hf -w83627hf_wdt -w83697hf_wdt -w83781d -w83791d -w83792d -w83793 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w9966 -w9968cf -wacom -wafer5823wdt -wanrouter -wanxl -warrior -wavelan -wavelan_cs -wbsd -wd -wd7000 -wdt -wdt_pci -whiteheat -winbond-840 -wire -wistron_btns -wl3501_cs -wm8739 -wm8775 -wp512 -x25 -x25_asy -xcbc -xd -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_user -xfs -xirc2ps_cs -xircom_cb -xircom_tulip_cb -xor -xpad -xprtrdma -x_tables -xt_CLASSIFY -xt_comment -xt_connbytes -xt_connlimit -xt_connmark -xt_CONNMARK -xt_CONNSECMARK -xt_conntrack -xt_dccp -xt_dscp -xt_DSCP -xt_esp -xt_hashlimit -xt_helper -xtkbd -xt_length -xt_limit -xt_mac -xt_mark -xt_MARK -xt_multiport -xt_NFLOG -xt_NFQUEUE -xt_NOTRACK -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_realm -xts -xt_sctp -xt_SECMARK -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_TCPMSS -xt_tcpudp -xt_time -xt_TRACE -xt_u32 -xusbatm -yam -yellowfin -yenta_socket -z85230 -zatm -zc0301 -zd1201 -zd1211rw -zl10353 -zlib_deflate -znet -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx reverted: --- linux-2.6.24/debian/abi/2.6.24-19.35/i386/virtual +++ linux-2.6.24.orig/debian/abi/2.6.24-19.35/i386/virtual @@ -1,5208 +0,0 @@ -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/processor 0x1e3ebd5b acpi_processor_notify_smm -EXPORT_SYMBOL drivers/acpi/processor 0xb9299c55 acpi_processor_register_performance -EXPORT_SYMBOL drivers/acpi/processor 0xe8a3605f acpi_processor_set_thermal_limit -EXPORT_SYMBOL drivers/acpi/processor 0xeacddb89 acpi_processor_preregister_performance -EXPORT_SYMBOL drivers/acpi/processor 0xfe459f2a acpi_processor_unregister_performance -EXPORT_SYMBOL drivers/block/loop 0xa05b5b5a loop_register_transfer -EXPORT_SYMBOL drivers/block/loop 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL drivers/cdrom/cdrom 0x16ad1684 cdrom_number_of_slots -EXPORT_SYMBOL drivers/cdrom/cdrom 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL drivers/cdrom/cdrom 0x5a048dbd cdrom_ioctl -EXPORT_SYMBOL drivers/cdrom/cdrom 0x6705c431 cdrom_get_media_event -EXPORT_SYMBOL drivers/cdrom/cdrom 0x7f3214e7 cdrom_mode_sense -EXPORT_SYMBOL drivers/cdrom/cdrom 0x853e6f08 cdrom_release -EXPORT_SYMBOL drivers/cdrom/cdrom 0xa135078e register_cdrom -EXPORT_SYMBOL drivers/cdrom/cdrom 0xa6f82172 unregister_cdrom -EXPORT_SYMBOL drivers/cdrom/cdrom 0xb93d9b57 cdrom_get_last_written -EXPORT_SYMBOL drivers/cdrom/cdrom 0xbd2e1a18 cdrom_mode_select -EXPORT_SYMBOL drivers/cdrom/cdrom 0xbd3835ca cdrom_media_changed -EXPORT_SYMBOL drivers/cdrom/cdrom 0xfeedf910 cdrom_open -EXPORT_SYMBOL drivers/char/agp/agpgart 0x007fcc9c agp_collect_device_status -EXPORT_SYMBOL drivers/char/agp/agpgart 0x1141022a agp_free_page_array -EXPORT_SYMBOL drivers/char/agp/agpgart 0x1e2f5175 agp_generic_destroy_page -EXPORT_SYMBOL drivers/char/agp/agpgart 0x33d40942 agp_free_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x3849cef9 agp_alloc_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0x38d5f747 agp_create_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x47632f70 agp_generic_free_gatt_table -EXPORT_SYMBOL drivers/char/agp/agpgart 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL drivers/char/agp/agpgart 0x59d01d2b agp_copy_info -EXPORT_SYMBOL drivers/char/agp/agpgart 0x59d3e475 get_agp_version -EXPORT_SYMBOL drivers/char/agp/agpgart 0x641e5c1c agp_bind_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x673f815e agp_bridges -EXPORT_SYMBOL drivers/char/agp/agpgart 0x69733a70 agp3_generic_tlbflush -EXPORT_SYMBOL drivers/char/agp/agpgart 0x7538b132 agp_off -EXPORT_SYMBOL drivers/char/agp/agpgart 0x7bf6edfb agp_generic_remove_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x87616509 agp_generic_free_by_type -EXPORT_SYMBOL drivers/char/agp/agpgart 0x87cade43 agp_generic_alloc_user -EXPORT_SYMBOL drivers/char/agp/agpgart 0x9038ca2e agp_generic_mask_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x9404f383 agp_generic_type_to_mask_type -EXPORT_SYMBOL drivers/char/agp/agpgart 0x9e357645 agp_find_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0x9f4cef8b agp_alloc_page_array -EXPORT_SYMBOL drivers/char/agp/agpgart 0xa40c1a04 agp_generic_enable -EXPORT_SYMBOL drivers/char/agp/agpgart 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc51cf2df agp_unbind_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc934166b agp_put_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0xcbefee7a agp_generic_insert_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL drivers/char/agp/agpgart 0xde5e03c8 agp_enable -EXPORT_SYMBOL drivers/char/agp/agpgart 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL drivers/char/agp/agpgart 0xe40a83f8 agp_backend_release -EXPORT_SYMBOL drivers/char/agp/agpgart 0xe6d5c272 agp_device_command -EXPORT_SYMBOL drivers/char/agp/agpgart 0xee176313 agp_generic_alloc_page -EXPORT_SYMBOL drivers/char/agp/agpgart 0xf0f46269 agp_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0xf14f9f50 agp_generic_alloc_by_type -EXPORT_SYMBOL drivers/char/agp/agpgart 0xf5cc40d3 agp_generic_create_gatt_table -EXPORT_SYMBOL drivers/char/agp/agpgart 0xf71b98ca agp_backend_acquire -EXPORT_SYMBOL drivers/char/agp/agpgart 0xf8159573 agp_allocate_memory -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0704acbf ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x098448bb ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0db1b235 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2934ec4a ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2fe2ec6c ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x30bf1095 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x493a2141 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c46fa9c ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x63680fc2 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7ff2ca4c ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x843513a9 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x84681519 ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x930edf5f ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x94287306 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9475c181 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xba42f3d1 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcb4fae44 ipmi_user_set_run_to_completion -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcec59739 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd075ee2b ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xda52f96a ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xea2165ce ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfa8f58e2 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfee393f9 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xff98ccb1 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/cpufreq/cpufreq_conservative 0x3b2ff248 cpufreq_gov_conservative -EXPORT_SYMBOL drivers/cpufreq/cpufreq_ondemand 0xce260a88 cpufreq_gov_ondemand -EXPORT_SYMBOL drivers/cpufreq/cpufreq_userspace 0x09212e3e cpufreq_gov_userspace -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5938080e i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5a178229 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xea2ed68f i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0xe8d604d2 i2c_pcf_add_bus -EXPORT_SYMBOL drivers/i2c/i2c-core 0x02f48c22 i2c_clients_command -EXPORT_SYMBOL drivers/i2c/i2c-core 0x11f7fcc3 i2c_probe -EXPORT_SYMBOL drivers/i2c/i2c-core 0x1dc31f98 i2c_master_send -EXPORT_SYMBOL drivers/i2c/i2c-core 0x329caff3 i2c_release_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4340c469 i2c_smbus_write_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5606ebe8 i2c_put_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5d2b13c4 i2c_detach_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5e026990 i2c_del_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x652a361b i2c_get_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x655384e2 i2c_smbus_read_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x7d9fbe2a i2c_del_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x975077b9 i2c_attach_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x98941cf9 i2c_smbus_write_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9b1eed65 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa899137e i2c_master_recv -EXPORT_SYMBOL drivers/i2c/i2c-core 0xab23aae5 i2c_smbus_read_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xab9fccf9 i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xc1163aef i2c_register_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0xc7faf116 i2c_smbus_write_quick -EXPORT_SYMBOL drivers/i2c/i2c-core 0xcb6085cd i2c_smbus_read_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xd3f09321 i2c_add_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0xd8a02faf i2c_smbus_write_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0xdb965e80 i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xf53b6358 i2c_smbus_write_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xf5a6c4ed i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xfb4ed521 i2c_smbus_read_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0xfb664917 i2c_use_client -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1472840f gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x80ac5f90 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa135d880 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa25fe401 gameport_rescan -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd3084e80 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe4b488e6 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe671afec gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xec1e2cb5 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xeeb59e90 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf41fda7e gameport_unregister_driver -EXPORT_SYMBOL drivers/md/dm-mirror 0x1b0623f6 dm_register_dirty_log_type -EXPORT_SYMBOL drivers/md/dm-mirror 0xd2b49c8f dm_unregister_dirty_log_type -EXPORT_SYMBOL drivers/md/dm-mirror 0xdd3fcd72 dm_destroy_dirty_log -EXPORT_SYMBOL drivers/md/dm-mirror 0xf09d38d4 dm_create_dirty_log -EXPORT_SYMBOL drivers/md/dm-mod 0x06c6542b dm_table_put -EXPORT_SYMBOL drivers/md/dm-mod 0x0caca581 dm_get_device -EXPORT_SYMBOL drivers/md/dm-mod 0x10773da3 dm_get_mapinfo -EXPORT_SYMBOL drivers/md/dm-mod 0x1616f0f2 dm_table_event -EXPORT_SYMBOL drivers/md/dm-mod 0x38db8f0a dm_io_client_destroy -EXPORT_SYMBOL drivers/md/dm-mod 0x3a8a2be2 dm_table_get_md -EXPORT_SYMBOL drivers/md/dm-mod 0x3d11f81d dm_table_get_size -EXPORT_SYMBOL drivers/md/dm-mod 0x4c821d12 dm_table_unplug_all -EXPORT_SYMBOL drivers/md/dm-mod 0x5309a461 kcopyd_client_create -EXPORT_SYMBOL drivers/md/dm-mod 0x70675dd1 kcopyd_copy -EXPORT_SYMBOL drivers/md/dm-mod 0x7d0d0b17 dm_put_device -EXPORT_SYMBOL drivers/md/dm-mod 0x7e7c0d70 dm_table_get_mode -EXPORT_SYMBOL drivers/md/dm-mod 0x7ffdf7a3 dm_unregister_target -EXPORT_SYMBOL drivers/md/dm-mod 0x850ce72c dm_register_target -EXPORT_SYMBOL drivers/md/dm-mod 0x8963fb3a dm_table_get -EXPORT_SYMBOL drivers/md/dm-mod 0x89e40394 dm_io -EXPORT_SYMBOL drivers/md/dm-mod 0xb60e2d50 dm_io_client_resize -EXPORT_SYMBOL drivers/md/dm-mod 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL drivers/md/dm-mod 0xc8ef8e0c dm_io_client_create -EXPORT_SYMBOL drivers/md/dm-mod 0xf9a15008 kcopyd_client_destroy -EXPORT_SYMBOL drivers/md/md-mod 0x0a3efecc bitmap_start_sync -EXPORT_SYMBOL drivers/md/md-mod 0x2e426f97 bitmap_close_sync -EXPORT_SYMBOL drivers/md/md-mod 0x31271d65 bitmap_startwrite -EXPORT_SYMBOL drivers/md/md-mod 0x4ce05e0a bitmap_unplug -EXPORT_SYMBOL drivers/md/md-mod 0x586368bd bitmap_end_sync -EXPORT_SYMBOL drivers/md/md-mod 0x61aa7af9 md_check_recovery -EXPORT_SYMBOL drivers/md/md-mod 0x6973a593 md_register_thread -EXPORT_SYMBOL drivers/md/md-mod 0x85010a93 md_wakeup_thread -EXPORT_SYMBOL drivers/md/md-mod 0x91d974f2 unregister_md_personality -EXPORT_SYMBOL drivers/md/md-mod 0x9c3b847b md_error -EXPORT_SYMBOL drivers/md/md-mod 0xc52a6f4a register_md_personality -EXPORT_SYMBOL drivers/md/md-mod 0xc9b917fd md_write_start -EXPORT_SYMBOL drivers/md/md-mod 0xca0812af bitmap_endwrite -EXPORT_SYMBOL drivers/md/md-mod 0xd282530d md_write_end -EXPORT_SYMBOL drivers/md/md-mod 0xf159f3ee md_unregister_thread -EXPORT_SYMBOL drivers/md/md-mod 0xf4b0993d md_done_sync -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09d5b63a mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d6830f8 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x169d6c35 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c5c372c mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x257f0d2d mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x268e873f mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x375d8126 mpt_add_sge -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39c5c000 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e9faa25 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4440ebc9 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f8a3878 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5804da3b mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x618a5cd8 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7df0c366 mpt_proc_root_dir -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x891b7821 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b788b68 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9691518b mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa866f81d mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3f6a1e2 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe8a0352f mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb8d4a63 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xebef9831 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xecabbbbd mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf678d1a0 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc7bdf6c mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04f7c741 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x079efb23 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x12190cb1 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1751debf mptscsih_proc_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f1680e4 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x278d7f9f mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2881e417 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28f47a3b mptscsih_TMHandler -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39b80b18 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c8d66a7 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4348a809 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43c349f4 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f00eb1c mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a04508f mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x764ddf1a mptscsih_timer_expired -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7da7ed09 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8666900c mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x965ba96b mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x966a8fd8 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d46de19 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa67376e4 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad95e32a mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc58246e3 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda21bc22 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe89a6833 mptscsih_host_reset -EXPORT_SYMBOL drivers/net/8390 0x09179fde __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/8390 0x3cd19187 NS8390_init -EXPORT_SYMBOL drivers/net/8390 0x41b9804a ei_close -EXPORT_SYMBOL drivers/net/8390 0x7d7e0dbc ei_interrupt -EXPORT_SYMBOL drivers/net/8390 0xc7761723 ei_open -EXPORT_SYMBOL drivers/net/8390 0xfa11e743 ei_poll -EXPORT_SYMBOL drivers/net/mii 0x031edde9 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x2f0ca576 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x7a5084d4 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x7a87e2ce mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x84e967fe mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xb926504c mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xe5875c24 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xfe3a68f7 mii_nway_restart -EXPORT_SYMBOL drivers/net/phy/libphy 0x045ed049 phy_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/libphy 0x064038a0 phy_disable_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0x10d2b00d phy_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x119605a9 phy_sanitize_settings -EXPORT_SYMBOL drivers/net/phy/libphy 0x17c9f1e8 genphy_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x1de25d2e phy_start_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0x1f29aa0f phy_print_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x23d0c260 phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x393d56f7 phy_start -EXPORT_SYMBOL drivers/net/phy/libphy 0x45022feb phy_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0x50e8d01e phy_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0x6fcf17a6 mdiobus_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x7027f9af genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x7d0d3a57 phy_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x8a966524 phy_stop -EXPORT_SYMBOL drivers/net/phy/libphy 0x9152a4a5 phy_write -EXPORT_SYMBOL drivers/net/phy/libphy 0xaa758c17 phy_stop_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0xab6a0b0d phy_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0xb3b4b212 phy_enable_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0xb87fa0aa phy_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/libphy 0xc384a676 genphy_update_link -EXPORT_SYMBOL drivers/net/phy/libphy 0xc78a88f8 genphy_config_advert -EXPORT_SYMBOL drivers/net/phy/libphy 0xcf569f76 phy_connect -EXPORT_SYMBOL drivers/net/phy/libphy 0xd5692e87 mdio_bus_type -EXPORT_SYMBOL drivers/net/phy/libphy 0xd9e5c95e phy_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0xefc9d0c2 mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0xf8f0674c phy_disconnect -EXPORT_SYMBOL drivers/net/phy/libphy 0xfe0bb79c phy_detach -EXPORT_SYMBOL drivers/net/ppp_generic 0x00e4d8f4 ppp_unregister_channel -EXPORT_SYMBOL drivers/net/ppp_generic 0x0e689ac8 ppp_input_error -EXPORT_SYMBOL drivers/net/ppp_generic 0x36d03162 ppp_unit_number -EXPORT_SYMBOL drivers/net/ppp_generic 0x5b32aa04 ppp_register_compressor -EXPORT_SYMBOL drivers/net/ppp_generic 0x85632a80 ppp_output_wakeup -EXPORT_SYMBOL drivers/net/ppp_generic 0x964f3d33 ppp_input -EXPORT_SYMBOL drivers/net/ppp_generic 0x9bc50c2f ppp_channel_index -EXPORT_SYMBOL drivers/net/ppp_generic 0xb72f215a ppp_unregister_compressor -EXPORT_SYMBOL drivers/net/ppp_generic 0xf2e65415 ppp_register_channel -EXPORT_SYMBOL drivers/net/pppox 0x199eefcb register_pppox_proto -EXPORT_SYMBOL drivers/net/pppox 0x3bb4780e pppox_ioctl -EXPORT_SYMBOL drivers/net/pppox 0xa051244b pppox_unbind_sock -EXPORT_SYMBOL drivers/net/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/slhc 0x0ff2b602 slhc_compress -EXPORT_SYMBOL drivers/net/slhc 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL drivers/net/slhc 0xa63d85ab slhc_remember -EXPORT_SYMBOL drivers/net/slhc 0xb5ca1c46 slhc_free -EXPORT_SYMBOL drivers/net/slhc 0xdfc5169b slhc_init -EXPORT_SYMBOL drivers/net/slhc 0xe8794ce1 slhc_toss -EXPORT_SYMBOL drivers/parport/parport 0x08b617c5 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x1057cf17 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x11425ccd parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x11ddc316 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x126c6b09 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x1a9923ea parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x1dbe8d84 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x2ca517b1 parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x3a52011b parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x441825f0 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4d6a81eb parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x55cdc7c4 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x567e943c parport_write -EXPORT_SYMBOL drivers/parport/parport 0x5c428b72 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x654dddf9 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x6d369ba5 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x776dc3c8 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x7a486fdc parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x7ab9762f parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x80eade84 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x8b218a88 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x9883fc4b parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xa9f18784 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xc6134c07 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xc7b3a4df parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xd978c2f4 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe666b0d1 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xeed5e7c1 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xf7910843 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xf8add6fa parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xff30c30d parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport_pc 0xc9b6b555 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xe385f09d parport_pc_unregister_port -EXPORT_SYMBOL drivers/scsi/raid_class 0xbeed77ca raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xd0ecdf73 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xd6afb118 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0348ff91 scsi_finish_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0405b30a scsi_get_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x06bfeb70 scsi_register_interface -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x06ea1f2a scsi_host_get -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x077a6cbb scsi_bios_ptable -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0a7b8ac3 scsi_host_lookup -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0c65e73c scsi_normalize_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0c8c9e99 scsi_show_extd_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x11267875 scsi_extd_sense_format -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1680e708 scsi_register -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1adb426e scsi_alloc_sgtable -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1b2d4fda scsi_reset_provider -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1b9e0ff1 scsilun_to_int -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1d0aaf41 scsi_kmap_atomic_sg -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1ee19446 scsi_free_host_dev -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1efe346d scsi_put_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x25f03df1 scsi_device_lookup -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x29e67939 scsi_ioctl -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2d89342a scsi_show_sense_hdr -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2dbe5e5c __scsi_device_lookup -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x39165c15 scsi_test_unit_ready -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x4254e3eb scsi_scan_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x46c0c3ee scsi_scan_host -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x4a076bd5 __scsi_add_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x4c05c1bd scsi_prep_return -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x4f54cb76 scsi_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x52b68cef scsi_unregister -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x55cfb760 scsi_is_host_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x56f9e463 scsi_device_lookup_by_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x587fa879 scsi_host_put -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x5fb92428 scsi_print_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x62571de9 scsi_req_abort_cmd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x6838b84b scsi_target_resume -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x69d38ed9 __scsi_print_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x70fdddbc scsi_cmd_print_sense_hdr -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x71e3f03f scsi_rescan_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x740401b5 scsi_eh_finish_cmd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x75552abb scsi_block_when_processing_errors -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x766190f3 scsi_report_bus_reset -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x81dde3d6 scsi_set_medium_removal -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x854d78eb scsi_add_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x8a2cb800 scsi_command_normalize_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x8e79902d scsi_report_device_reset -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x90e12211 scsi_mode_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x9136936c scsi_print_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x94a84162 __scsi_iterate_devices -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x94e25f85 scsi_nonblockable_ioctl -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x97b0b004 scsi_device_resume -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x9a574baf scsi_get_host_dev -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x9cfd56c5 scsi_print_status -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xa6894d8f scsi_track_queue_full -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xa969b8a5 scsi_remove_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xaa9c82fc scsi_eh_prep_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xac5d2fe3 scsi_prep_state_check -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb0551789 scsi_free_sgtable -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb135b0ca scsi_print_result -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb1aff617 scsi_device_get -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb4a2b4e0 scsi_execute_req -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb6c5a973 scsi_show_result -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb958b8a5 scsi_eh_restore_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xbf9d8257 starget_for_each_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xc0fcaf01 scsi_device_set_state -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xc8151ce4 scsi_execute -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xca5dbc50 scsi_print_sense_hdr -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xcdecc8fb scsi_register_driver -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xcfca4072 scsi_adjust_queue_depth -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xd11e1694 __scsi_device_lookup_by_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xd1e61641 scsi_dma_unmap -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xd8ed5efb scsi_setup_fs_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xdab186f6 scsi_host_alloc -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xdd6d5097 __starget_for_each_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xdf22b3a8 scsi_setup_blk_pc_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe06f462d scsi_target_quiesce -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe12f1a01 scsi_dma_map -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe251eb57 scsi_add_host -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe431242d scsi_is_target_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xea10212a int_to_scsilun -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xebd47ec3 scsi_calculate_bounce_limit -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xec2d87e0 scsicam_bios_param -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xec67aa2e __scsi_put_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xedab92c8 scsi_host_set_state -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xef8f1534 scsi_block_requests -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf45d7e08 __scsi_alloc_queue -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf54cb3bf scsi_remove_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf68ce73f scsi_device_put -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf7282f8e scsi_unblock_requests -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf804ac26 scsi_device_quiesce -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xfa2100b0 scsi_is_sdev_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xfef96e23 __scsi_print_command -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1ed46070 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2152b9dc fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x28770f57 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4323da0a fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x58a3be03 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8be933b4 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb4c8db48 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbcb68e2 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xda6c7408 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee68c80e fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2c1d38d scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x064ea375 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06ecf03b sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d661924 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x179f770c sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cfe2d5a sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f5e67b0 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x299ddcb9 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bd3effc sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ff8d037 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x411fcced sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x471d8e4b sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70d11692 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8eb87e47 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x916e0266 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad50b3f3 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba6d4785 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd01e29c scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1338432 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd18b935b sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3b922de sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8269655 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc1edc20 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef36a00a scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf10b956d sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfaffbf5a sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb554635 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3c07a121 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3c24672b spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x83d1e04d spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8e0791da spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xba4a2212 spi_dv_device -EXPORT_SYMBOL drivers/ssb/ssb 0x0782ae0b ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x0cd615eb ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x25cece89 ssb_bus_pcibus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x3d6308ec ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x4d2a298a ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x61c7a9f3 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x6e5f56dd ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x77159b51 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7de6967c ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x88d55a3a ssb_dma_set_mask -EXPORT_SYMBOL drivers/ssb/ssb 0x8ea403da ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9a746aa3 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xdc57c883 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xf8795a23 __ssb_driver_register -EXPORT_SYMBOL drivers/usb/core/usbcore 0x0519bb2a usb_sg_init -EXPORT_SYMBOL drivers/usb/core/usbcore 0x0bd3b211 usb_lock_device_for_reset -EXPORT_SYMBOL drivers/usb/core/usbcore 0x0e91b2a7 usb_buffer_unmap_sg -EXPORT_SYMBOL drivers/usb/core/usbcore 0x19a304ba usb_disabled -EXPORT_SYMBOL drivers/usb/core/usbcore 0x1d5e99cd usb_add_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0x2d0f225b usb_register_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0x3136a72c usb_string -EXPORT_SYMBOL drivers/usb/core/usbcore 0x31a86fdd usb_get_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0x34f2450b usb_find_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0x58380ece usb_altnum_to_altsetting -EXPORT_SYMBOL drivers/usb/core/usbcore 0x63b99a78 usb_deregister_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0x64cae49c usb_buffer_map_sg -EXPORT_SYMBOL drivers/usb/core/usbcore 0x6a3f9bc4 usb_reset_device -EXPORT_SYMBOL drivers/usb/core/usbcore 0x750b5d0e usb_driver_release_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0x7693132e usb_hub_tt_clear_buffer -EXPORT_SYMBOL drivers/usb/core/usbcore 0x77125ae9 usb_alloc_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0x77d2850b usb_get_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0x7884093f usb_sg_wait -EXPORT_SYMBOL drivers/usb/core/usbcore 0x78c66275 usb_driver_claim_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL drivers/usb/core/usbcore 0x7fad9c68 usb_unlink_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0x83ce69a2 usb_hcd_pci_resume -EXPORT_SYMBOL drivers/usb/core/usbcore 0x8dcd8ac9 usb_reset_composite_device -EXPORT_SYMBOL drivers/usb/core/usbcore 0x91191315 usb_hcd_pci_remove -EXPORT_SYMBOL drivers/usb/core/usbcore 0x91a18862 usb_reset_configuration -EXPORT_SYMBOL drivers/usb/core/usbcore 0x96ffe7b7 usb_create_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL drivers/usb/core/usbcore 0x9df9e62c usb_set_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0xa00fee78 usb_sg_cancel -EXPORT_SYMBOL drivers/usb/core/usbcore 0xa44453c7 usb_control_msg -EXPORT_SYMBOL drivers/usb/core/usbcore 0xaa1075d5 usb_init_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xabc152b1 usb_get_descriptor -EXPORT_SYMBOL drivers/usb/core/usbcore 0xba375126 usb_buffer_alloc -EXPORT_SYMBOL drivers/usb/core/usbcore 0xbd8c72f8 usb_put_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0xc0c66ed9 usb_get_status -EXPORT_SYMBOL drivers/usb/core/usbcore 0xc1429cc7 usb_submit_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xc3ec8d57 usb_free_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xd18293f1 usb_get_current_frame_number -EXPORT_SYMBOL drivers/usb/core/usbcore 0xd8d52fc8 usb_hcd_pci_shutdown -EXPORT_SYMBOL drivers/usb/core/usbcore 0xda86731a usb_hcd_giveback_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xded83509 usb_clear_halt -EXPORT_SYMBOL drivers/usb/core/usbcore 0xe4aade9e usb_bulk_msg -EXPORT_SYMBOL drivers/usb/core/usbcore 0xe81f357e usb_buffer_free -EXPORT_SYMBOL drivers/usb/core/usbcore 0xe8d0beba usb_get_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0xeb0729fd usb_hcd_platform_shutdown -EXPORT_SYMBOL drivers/usb/core/usbcore 0xee0b2edd usb_ifnum_to_if -EXPORT_SYMBOL drivers/usb/core/usbcore 0xf2cbb9de usb_hcd_pci_suspend -EXPORT_SYMBOL drivers/usb/core/usbcore 0xfab12c48 usb_hcd_pci_probe -EXPORT_SYMBOL drivers/usb/core/usbcore 0xfade592b usb_put_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0xfd2efcfe usb_kill_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xfd8b366f usb_remove_hcd -EXPORT_SYMBOL drivers/video/console/bitblit 0x39c153a3 fbcon_set_bitops -EXPORT_SYMBOL drivers/video/console/font 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL drivers/video/console/font 0xbb99125c get_default_font -EXPORT_SYMBOL drivers/video/console/font 0xf7584a9c find_font -EXPORT_SYMBOL drivers/video/console/softcursor 0xfabac6f1 soft_cursor -EXPORT_SYMBOL drivers/video/console/tileblit 0xea73ddd5 fbcon_set_tileops -EXPORT_SYMBOL drivers/video/output 0x4d4250e5 video_output_unregister -EXPORT_SYMBOL drivers/video/output 0x6f4c1b3e video_output_register -EXPORT_SYMBOL drivers/video/syscopyarea 0x672ec064 sys_copyarea -EXPORT_SYMBOL drivers/video/sysfillrect 0xe34f8e7f sys_fillrect -EXPORT_SYMBOL drivers/video/sysimgblt 0x884760d6 sys_imageblit -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xca420373 w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xec36aa2f w1_ds2760_read -EXPORT_SYMBOL drivers/w1/wire 0x49aa80f0 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x4e5ae54b w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x8cf61660 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xcda061c0 w1_remove_master_device -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x672c9d44 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa8d6daac iTCO_vendor_pre_start -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xd0efe320 iTCO_vendor_pre_stop -EXPORT_SYMBOL fs/configfs/configfs 0x1512e4fd config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x19ae83ce config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x2d591781 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x2dc0b56e configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x4e5ed1c0 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x580131d2 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x62591f50 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x8c086979 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x9e78d832 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0xd2e302bf config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0xf7c8de9f config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xf885ce94 config_item_init -EXPORT_SYMBOL fs/jbd/jbd 0x046ac36a journal_get_create_access -EXPORT_SYMBOL fs/jbd/jbd 0x06050a73 journal_init_dev -EXPORT_SYMBOL fs/jbd/jbd 0x09411d72 journal_invalidatepage -EXPORT_SYMBOL fs/jbd/jbd 0x11744cf4 journal_extend -EXPORT_SYMBOL fs/jbd/jbd 0x13ac96c2 journal_load -EXPORT_SYMBOL fs/jbd/jbd 0x3465331b journal_update_format -EXPORT_SYMBOL fs/jbd/jbd 0x44068245 journal_blocks_per_page -EXPORT_SYMBOL fs/jbd/jbd 0x443ccea6 journal_start_commit -EXPORT_SYMBOL fs/jbd/jbd 0x4905feea journal_init_inode -EXPORT_SYMBOL fs/jbd/jbd 0x492fdc5e journal_force_commit -EXPORT_SYMBOL fs/jbd/jbd 0x496f658c journal_check_available_features -EXPORT_SYMBOL fs/jbd/jbd 0x554d58ba journal_dirty_data -EXPORT_SYMBOL fs/jbd/jbd 0x569ae971 journal_unlock_updates -EXPORT_SYMBOL fs/jbd/jbd 0x5b24d9ea journal_errno -EXPORT_SYMBOL fs/jbd/jbd 0x6374d2de journal_check_used_features -EXPORT_SYMBOL fs/jbd/jbd 0x6a700898 journal_revoke -EXPORT_SYMBOL fs/jbd/jbd 0x70a8386b journal_set_features -EXPORT_SYMBOL fs/jbd/jbd 0x74e54395 journal_get_undo_access -EXPORT_SYMBOL fs/jbd/jbd 0x83769e59 journal_force_commit_nested -EXPORT_SYMBOL fs/jbd/jbd 0x896f3a69 journal_get_write_access -EXPORT_SYMBOL fs/jbd/jbd 0x8c867116 journal_try_to_free_buffers -EXPORT_SYMBOL fs/jbd/jbd 0x98f513e3 journal_update_superblock -EXPORT_SYMBOL fs/jbd/jbd 0x9a0a8452 journal_dirty_metadata -EXPORT_SYMBOL fs/jbd/jbd 0xa2ccf5e3 journal_start -EXPORT_SYMBOL fs/jbd/jbd 0xaf655b9b journal_wipe -EXPORT_SYMBOL fs/jbd/jbd 0xafe72357 journal_create -EXPORT_SYMBOL fs/jbd/jbd 0xb9940608 log_wait_commit -EXPORT_SYMBOL fs/jbd/jbd 0xbe65d4fd journal_forget -EXPORT_SYMBOL fs/jbd/jbd 0xc004d6b2 journal_flush -EXPORT_SYMBOL fs/jbd/jbd 0xc099dd86 journal_lock_updates -EXPORT_SYMBOL fs/jbd/jbd 0xcb7c7443 journal_restart -EXPORT_SYMBOL fs/jbd/jbd 0xd1475fe0 journal_abort -EXPORT_SYMBOL fs/jbd/jbd 0xd788ab24 journal_release_buffer -EXPORT_SYMBOL fs/jbd/jbd 0xd8cf3540 journal_stop -EXPORT_SYMBOL fs/jbd/jbd 0xe9598bc1 journal_destroy -EXPORT_SYMBOL fs/jbd/jbd 0xf1bb6a98 journal_ack_err -EXPORT_SYMBOL fs/jbd/jbd 0xf49bd7ce journal_clear_err -EXPORT_SYMBOL fs/lockd/lockd 0x2cc86300 nlmsvc_ops -EXPORT_SYMBOL fs/lockd/lockd 0x5b7e8793 nlmclnt_proc -EXPORT_SYMBOL fs/lockd/lockd 0x976e539e lockd_up -EXPORT_SYMBOL fs/lockd/lockd 0xa7b91a7b lockd_down -EXPORT_SYMBOL fs/lockd/lockd 0xad09c2db get_nfs_grace_period -EXPORT_SYMBOL fs/mbcache 0x00ca2347 mb_cache_create -EXPORT_SYMBOL fs/mbcache 0x1de56811 mb_cache_entry_alloc -EXPORT_SYMBOL fs/mbcache 0x4000c29a mb_cache_entry_get -EXPORT_SYMBOL fs/mbcache 0x48756e4b mb_cache_entry_find_first -EXPORT_SYMBOL fs/mbcache 0x4fc2ec9f mb_cache_entry_free -EXPORT_SYMBOL fs/mbcache 0x515432c9 mb_cache_shrink -EXPORT_SYMBOL fs/mbcache 0x68dc1ead mb_cache_entry_release -EXPORT_SYMBOL fs/mbcache 0xa79e5785 mb_cache_entry_find_next -EXPORT_SYMBOL fs/mbcache 0xae6132e3 mb_cache_entry_insert -EXPORT_SYMBOL fs/mbcache 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL fs/nfs_common/nfs_acl 0x78ba7b84 nfsacl_decode -EXPORT_SYMBOL fs/nfs_common/nfs_acl 0xf4585099 nfsacl_encode -EXPORT_SYMBOL fs/nfsd/nfsd 0x0f3e6e01 nfs4_acl_nfsv4_to_posix -EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new -EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who -EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype -EXPORT_SYMBOL fs/nfsd/nfsd 0x7ee78c79 nfs4_acl_posix_to_nfsv4 -EXPORT_SYMBOL fs/xfs/xfs 0x405d752f xfs_qmcore_xfs -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc16 0x02a6ce5a crc16_table -EXPORT_SYMBOL lib/crc16 0x8ffdb3b8 crc16 -EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 -EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table -EXPORT_SYMBOL lib/libcrc32c 0x2329b292 crc32c_be -EXPORT_SYMBOL lib/libcrc32c 0x37d0b921 crc32c_le -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf0caf44b zlib_deflate_workspacesize -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd -EXPORT_SYMBOL net/802/p8022 0xb1db55ee register_8022_client -EXPORT_SYMBOL net/802/p8022 0xdfcc4a2b unregister_8022_client -EXPORT_SYMBOL net/802/p8023 0x61cb90da make_8023_client -EXPORT_SYMBOL net/802/p8023 0xe8ed2620 destroy_8023_client -EXPORT_SYMBOL net/802/psnap 0x35c50b2e register_snap_client -EXPORT_SYMBOL net/802/psnap 0xb45d4bc7 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x00a6e1a5 p9_create_tclunk -EXPORT_SYMBOL net/9p/9pnet 0x00e7e586 p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x0106a185 p9_create_tstat -EXPORT_SYMBOL net/9p/9pnet 0x09511eb8 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x0f3569f7 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x15779868 p9_set_tag -EXPORT_SYMBOL net/9p/9pnet 0x15bac5b8 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x1df84cae p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0x1ff9c757 v9fs_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x21523da9 p9_create_tattach -EXPORT_SYMBOL net/9p/9pnet 0x309767d8 p9_deserialize_stat -EXPORT_SYMBOL net/9p/9pnet 0x3b481fbb v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x465c4e6f p9_printfcall -EXPORT_SYMBOL net/9p/9pnet 0x4cadfc44 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x507c9d70 p9_create_tauth -EXPORT_SYMBOL net/9p/9pnet 0x570f7aa8 p9_conn_create -EXPORT_SYMBOL net/9p/9pnet 0x5c002155 v9fs_match_trans -EXPORT_SYMBOL net/9p/9pnet 0x6461b8de p9_create_twrite -EXPORT_SYMBOL net/9p/9pnet 0x677be60e p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0x6f11c5c3 p9_create_twrite_u -EXPORT_SYMBOL net/9p/9pnet 0x6f2bca59 p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0x71c7537d p9_create_tcreate -EXPORT_SYMBOL net/9p/9pnet 0x72180f92 p9_client_readn -EXPORT_SYMBOL net/9p/9pnet 0x80b7d718 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x81247f39 p9_create_tread -EXPORT_SYMBOL net/9p/9pnet 0x8432c83f p9_deserialize_fcall -EXPORT_SYMBOL net/9p/9pnet 0x8659121c p9_conn_rpc -EXPORT_SYMBOL net/9p/9pnet 0x8dfa3b54 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x950e6b03 p9_create_twstat -EXPORT_SYMBOL net/9p/9pnet 0x965d3a56 p9_client_uwrite -EXPORT_SYMBOL net/9p/9pnet 0xa3f4196e p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xa9536064 p9_create_tversion -EXPORT_SYMBOL net/9p/9pnet 0xac0aec6a p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xadfd597a p9_create_tremove -EXPORT_SYMBOL net/9p/9pnet 0xb05e0a40 p9_conn_destroy -EXPORT_SYMBOL net/9p/9pnet 0xb2e108d7 p9_client_auth -EXPORT_SYMBOL net/9p/9pnet 0xbbcad1f6 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xdc894ac7 p9_create_twalk -EXPORT_SYMBOL net/9p/9pnet 0xdf52ae2b p9_client_dirread -EXPORT_SYMBOL net/9p/9pnet 0xdf6ff9e3 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xdf810936 p9_conn_cancel -EXPORT_SYMBOL net/9p/9pnet 0xe2ea3039 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xee337cfa p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xf09b3efa p9_create_topen -EXPORT_SYMBOL net/9p/9pnet 0xf129cb12 p9_client_uread -EXPORT_SYMBOL net/9p/9pnet 0xf3f95cd3 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xfa7e1822 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xfff27930 p9_create_tflush -EXPORT_SYMBOL net/appletalk/appletalk 0x5c403e34 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x94f3854f atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xb34b5166 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xe4bfd7ba aarp_send_ddp -EXPORT_SYMBOL net/bridge/bridge 0x9004cd9d br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0b5ba089 ebt_unregister_watcher -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x28f30f9f ebt_register_watcher -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x37caae89 ebt_unregister_match -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x47cde2f1 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4d02ce06 ebt_register_target -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7e67b185 ebt_unregister_target -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x828d1a63 ebt_register_match -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbc70eaeb ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdb88bcc6 ebt_register_table -EXPORT_SYMBOL net/ipv4/inet_lro 0x184b032d lro_vlan_hwaccel_receive_skb -EXPORT_SYMBOL net/ipv4/inet_lro 0x1cfbd6bb lro_receive_skb -EXPORT_SYMBOL net/ipv4/inet_lro 0x74e2f75c lro_vlan_hwaccel_receive_frags -EXPORT_SYMBOL net/ipv4/inet_lro 0x8501cac1 lro_flush_pkt -EXPORT_SYMBOL net/ipv4/inet_lro 0x879cdc1c lro_receive_frags -EXPORT_SYMBOL net/ipv4/inet_lro 0xf640d1d1 lro_flush_all -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0x03289cbc ip_vs_conn_in_get -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0x25189355 register_ip_vs_app -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0x5c3b370f ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0x93164e30 unregister_ip_vs_app -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xa96100eb register_ip_vs_app_inc -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xbda183fa register_ip_vs_scheduler -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xcfbb5fc2 ip_vs_conn_put -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xded6769e ip_vs_conn_new -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xe30e1425 ip_vs_conn_out_get -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xf6b49931 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xfc7c05a4 ip_vs_skb_replace -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1fbb61e5 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5c3c3b1a arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x95a43687 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6b8e4da1 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x81b74398 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb14c4cdb ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x08230a02 nf_nat_follow_master -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x23203e34 nf_nat_protocol_unregister -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x6c4fb1bb nf_nat_seq_adjust -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x7f03019b nf_nat_setup_info -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x8d0b68e3 nf_nat_protocol_register -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x99c3e08a nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xa18c8bcb nf_nat_used_tuple -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xe0f12d1a nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/ipv4/tunnel4 0x35519778 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xde5f7134 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv6/ipv6 0x0bb82ca5 icmpv6_send -EXPORT_SYMBOL net/ipv6/ipv6 0x0c233569 ip6_route_output -EXPORT_SYMBOL net/ipv6/ipv6 0x174ee881 ipv6_push_nfrag_opts -EXPORT_SYMBOL net/ipv6/ipv6 0x20bab7e5 inet6_register_protosw -EXPORT_SYMBOL net/ipv6/ipv6 0x21cd46a8 inet6_unregister_protosw -EXPORT_SYMBOL net/ipv6/ipv6 0x26fac193 ipv6_chk_addr -EXPORT_SYMBOL net/ipv6/ipv6 0x30123eb5 icmpv6_statistics -EXPORT_SYMBOL net/ipv6/ipv6 0x3645fade ip6_frag_match -EXPORT_SYMBOL net/ipv6/ipv6 0x4f1de55f inet6_release -EXPORT_SYMBOL net/ipv6/ipv6 0x533eef59 nf_ip6_checksum -EXPORT_SYMBOL net/ipv6/ipv6 0x538383c0 unregister_inet6addr_notifier -EXPORT_SYMBOL net/ipv6/ipv6 0x53b19105 xfrm6_rcv -EXPORT_SYMBOL net/ipv6/ipv6 0x5b6dab65 ipv6_getsockopt -EXPORT_SYMBOL net/ipv6/ipv6 0x5f1676c8 rt6_lookup -EXPORT_SYMBOL net/ipv6/ipv6 0x702311ee xfrm6_input_addr -EXPORT_SYMBOL net/ipv6/ipv6 0x71d63eba ipv6_get_saddr -EXPORT_SYMBOL net/ipv6/ipv6 0x7bf3d09f inet6_del_protocol -EXPORT_SYMBOL net/ipv6/ipv6 0x7dda8c03 inet6_add_protocol -EXPORT_SYMBOL net/ipv6/ipv6 0x8307f6ba inet6_getname -EXPORT_SYMBOL net/ipv6/ipv6 0x8aef8e00 xfrm6_rcv_spi -EXPORT_SYMBOL net/ipv6/ipv6 0x936075b7 ndisc_mc_map -EXPORT_SYMBOL net/ipv6/ipv6 0xa4c8448b ip6_frag_init -EXPORT_SYMBOL net/ipv6/ipv6 0xb905ad82 icmpv6_err_convert -EXPORT_SYMBOL net/ipv6/ipv6 0xc9a82b9e in6_dev_finish_destroy -EXPORT_SYMBOL net/ipv6/ipv6 0xcdbb3866 xfrm6_find_1stfragopt -EXPORT_SYMBOL net/ipv6/ipv6 0xce19bac5 register_inet6addr_notifier -EXPORT_SYMBOL net/ipv6/ipv6 0xd2ea91b3 ip6_route_me_harder -EXPORT_SYMBOL net/ipv6/ipv6 0xd6a7a281 ipv6_setsockopt -EXPORT_SYMBOL net/ipv6/ipv6 0xe1a81c3a icmpv6msg_statistics -EXPORT_SYMBOL net/ipv6/ipv6 0xe2deeeef inet6_ioctl -EXPORT_SYMBOL net/ipv6/ipv6 0xee7f93c6 inet6_bind -EXPORT_SYMBOL net/ipv6/ipv6 0xeeefa616 ip6_xmit -EXPORT_SYMBOL net/ipv6/tunnel6 0x7f6d2a7b xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xc56035f3 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9cd013f2 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xab14e193 xfrm6_tunnel_free_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdb1b42d1 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/llc/llc 0x00594b9c llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x150f6cce llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x166b8de7 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x18cb3423 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x23b71ac7 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5c372971 llc_station_mac_sa -EXPORT_SYMBOL net/llc/llc 0xb24737dd llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xd2d6ac83 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xfba0c2e0 llc_sap_list_lock -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x08d0fd40 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4ba11495 __nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xed23741c per_cpu__nf_conntrack_stat -EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x82f94e40 nf_ct_gre_keymap_flush -EXPORT_SYMBOL net/netfilter/x_tables 0x0691313e xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x10129624 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x395ae140 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x3a2d84f4 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x3b46a5c3 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x633368e4 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x6dc1e698 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x726c4a25 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc92c3625 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd8cfd6b0 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xe60d3161 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf606ed73 xt_unregister_matches -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0da2d6a3 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x14762c45 gss_svc_to_pseudoflavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1996d910 make_checksum -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x508d0f8f gss_mech_register -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x546cf75c gss_mech_get_by_name -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x78837116 gss_decrypt_xdr_buf -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8f98cd5e krb5_encrypt -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x93e9ac52 gss_mech_get_by_pseudoflavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb8fa4901 gss_encrypt_xdr_buf -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbd41ac07 krb5_decrypt -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc54203c4 svcauth_gss_flavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc8162d4b gss_service_to_auth_domain_name -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf1a065b7 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf58d6c78 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf8115056 gss_mech_unregister -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL net/sunrpc/sunrpc 0x02bde9e9 cache_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0x02ce67a4 xdr_read_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0x04800a09 svc_authenticate -EXPORT_SYMBOL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0603da83 xdr_encode_array2 -EXPORT_SYMBOL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL net/sunrpc/sunrpc 0x085466c6 rpc_wake_up_status -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0a7e292b svc_create -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0cdbef54 auth_domain_find -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0d3d0a87 svc_create_pooled -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0d84e45e xdr_buf_from_iov -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x11faba21 rpcauth_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1505333c xdr_init_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x15348a42 rpcauth_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x16a58eb5 rpc_exit_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x18bbe9fe svc_wake_up -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1a8b6d4a xdr_inline_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1ab6d9c7 rpc_alloc_iostats -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1b4359da read_bytes_from_xdr_buf -EXPORT_SYMBOL net/sunrpc/sunrpc 0x21a35e99 svc_set_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0x25db43f4 auth_unix_add_addr -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2aa17774 rpc_free_iostats -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2da8c9e3 rpc_put_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2f41077c __rpc_wait_for_completion_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0x326269dd sunrpc_cache_update -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3457a35b rpcauth_create -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3b97753c auth_domain_lookup -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3e4712e9 svc_set_num_threads -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3e73f7c0 rpc_unlink -EXPORT_SYMBOL net/sunrpc/sunrpc 0x43575e1b rpc_shutdown_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0x54d4fb0f unix_domain_find -EXPORT_SYMBOL net/sunrpc/sunrpc 0x570b5343 rpcauth_lookup_credcache -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5d5f7e8a rpcauth_init_cred -EXPORT_SYMBOL net/sunrpc/sunrpc 0x67a4f289 svc_drop -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6b8b1cb0 rpc_wake_up_next -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6db1cd2f rpc_run_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6dcfd40d svc_recv -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge -EXPORT_SYMBOL net/sunrpc/sunrpc 0x70ad6a3e xdr_inline_decode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL net/sunrpc/sunrpc 0x71fead10 rpc_sleep_on -EXPORT_SYMBOL net/sunrpc/sunrpc 0x72411077 xdr_buf_subsegment -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7557de3e rpc_setbufsize -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7561ce0d xdr_decode_string_inplace -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7759e16b put_rpccred -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7b931e25 xdr_init_decode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7f2d3f5a svc_destroy -EXPORT_SYMBOL net/sunrpc/sunrpc 0x841bee9a rpc_killall_tasks -EXPORT_SYMBOL net/sunrpc/sunrpc 0x85ad40e5 rpc_wake_up -EXPORT_SYMBOL net/sunrpc/sunrpc 0x86d502d4 svc_auth_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8bac4778 svc_seq_show -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8fc79444 rpc_clnt_sigmask -EXPORT_SYMBOL net/sunrpc/sunrpc 0x907b7d40 rpc_call_sync -EXPORT_SYMBOL net/sunrpc/sunrpc 0x94491844 cache_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9bc56463 rpc_proc_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9e51096e rpcauth_init_credcache -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9fc12b7a xdr_shift_buf -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa18ae5c3 rpc_delay -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa381a411 rpc_print_iostats -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa3e19cce rpc_call_null -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa47ed33f xdr_encode_word -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa493f339 rpc_init_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0xabeb60fa svcauth_unix_set_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb109ab73 rpc_restart_call -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb383c6a1 xdr_enter_page -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb691d19f xdr_decode_array2 -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb6d41da9 rpc_clnt_sigunmask -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb79ba5dd rpc_execute -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb8502fb1 svc_exit_thread -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb9e598db auth_unix_forget_old -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbce67dc0 xprt_set_timeout -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd025a0a rpcauth_lookupcred -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbe62e910 svc_makesock -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbe97bf39 rpc_call_async -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc2bf7460 xdr_encode_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc6591d75 rpc_call_setup -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc8aee292 sunrpc_cache_lookup -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcb211c7c svc_sock_names -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcc19bbe5 svc_create_thread -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcc892567 svc_process -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcd82cdde rpc_bind_new_program -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcf12a4fd svc_reserve -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd32d525b cache_check -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd431f85c rpc_init_wait_queue -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd6140b35 auth_domain_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd6540af9 rpc_mkpipe -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd747590e rpc_wake_up_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0xda89237b svc_proc_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0xdbcb0d5c rpc_queue_upcall -EXPORT_SYMBOL net/sunrpc/sunrpc 0xde60c7ae rpcauth_destroy_credcache -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe0c63f25 rpc_clone_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe31f5080 xdr_process_buf -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe788f4dc xdr_reserve_space -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0xebb57dbb cache_purge -EXPORT_SYMBOL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL net/sunrpc/sunrpc 0xee872109 auth_unix_lookup -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf271bb06 xdr_decode_word -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf310ba95 xdr_write_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf378a14c xdr_buf_read_netobj -EXPORT_SYMBOL net/tipc/tipc 0x01e61721 tipc_continue -EXPORT_SYMBOL net/tipc/tipc 0x08acf310 tipc_available_nodes -EXPORT_SYMBOL net/tipc/tipc 0x10d40fcd tipc_isconnected -EXPORT_SYMBOL net/tipc/tipc 0x1472b270 tipc_disconnect -EXPORT_SYMBOL net/tipc/tipc 0x1479cb03 tipc_deleteport -EXPORT_SYMBOL net/tipc/tipc 0x15744bd3 tipc_recv_msg -EXPORT_SYMBOL net/tipc/tipc 0x15b5ecde tipc_set_portunreliable -EXPORT_SYMBOL net/tipc/tipc 0x16f27683 tipc_block_bearer -EXPORT_SYMBOL net/tipc/tipc 0x259b74f9 tipc_acknowledge -EXPORT_SYMBOL net/tipc/tipc 0x25e48e55 tipc_register_media -EXPORT_SYMBOL net/tipc/tipc 0x27d8bb58 tipc_send2port -EXPORT_SYMBOL net/tipc/tipc 0x2b23f7a8 tipc_send_buf2name -EXPORT_SYMBOL net/tipc/tipc 0x2ff1e295 tipc_forward_buf2name -EXPORT_SYMBOL net/tipc/tipc 0x310d1bc9 tipc_detach -EXPORT_SYMBOL net/tipc/tipc 0x3712e340 tipc_portunreliable -EXPORT_SYMBOL net/tipc/tipc 0x3976041f tipc_set_portimportance -EXPORT_SYMBOL net/tipc/tipc 0x3cd0b79f tipc_forward_buf2port -EXPORT_SYMBOL net/tipc/tipc 0x4b2243c6 tipc_portimportance -EXPORT_SYMBOL net/tipc/tipc 0x4ba3cfc8 tipc_send2name -EXPORT_SYMBOL net/tipc/tipc 0x538b228a tipc_withdraw -EXPORT_SYMBOL net/tipc/tipc 0x5637ed44 tipc_get_mode -EXPORT_SYMBOL net/tipc/tipc 0x5c0d4b5c tipc_ref_valid -EXPORT_SYMBOL net/tipc/tipc 0x5f2401f7 tipc_createport -EXPORT_SYMBOL net/tipc/tipc 0x612f188c tipc_send_buf_fast -EXPORT_SYMBOL net/tipc/tipc 0x62a681a3 tipc_portunreturnable -EXPORT_SYMBOL net/tipc/tipc 0x64357d3c tipc_multicast -EXPORT_SYMBOL net/tipc/tipc 0x8001e3d7 tipc_forward2port -EXPORT_SYMBOL net/tipc/tipc 0x88b73627 tipc_get_addr -EXPORT_SYMBOL net/tipc/tipc 0x9c45558e tipc_enable_bearer -EXPORT_SYMBOL net/tipc/tipc 0x9d9f123d tipc_get_port -EXPORT_SYMBOL net/tipc/tipc 0x9faf743a tipc_reject_msg -EXPORT_SYMBOL net/tipc/tipc 0xadd203d0 tipc_connect2port -EXPORT_SYMBOL net/tipc/tipc 0xae0103c3 tipc_shutdown -EXPORT_SYMBOL net/tipc/tipc 0xb01ffc2c tipc_forward2name -EXPORT_SYMBOL net/tipc/tipc 0xb1971a4e tipc_set_msg_option -EXPORT_SYMBOL net/tipc/tipc 0xb35b672c tipc_publish -EXPORT_SYMBOL net/tipc/tipc 0xbb2b2504 tipc_send -EXPORT_SYMBOL net/tipc/tipc 0xcec8514a tipc_set_portunreturnable -EXPORT_SYMBOL net/tipc/tipc 0xd04bef14 tipc_send_buf -EXPORT_SYMBOL net/tipc/tipc 0xd44731e5 tipc_ownidentity -EXPORT_SYMBOL net/tipc/tipc 0xda7f9d3f tipc_attach -EXPORT_SYMBOL net/tipc/tipc 0xdf5008fc tipc_peer -EXPORT_SYMBOL net/tipc/tipc 0xe5c1c83f tipc_createport_raw -EXPORT_SYMBOL net/tipc/tipc 0xe655d5ec tipc_send_buf2port -EXPORT_SYMBOL net/tipc/tipc 0xe7aece47 tipc_ispublished -EXPORT_SYMBOL net/tipc/tipc 0xeefd49b3 tipc_get_handle -EXPORT_SYMBOL net/tipc/tipc 0xef50a1ef tipc_disable_bearer -EXPORT_SYMBOL sound/ac97_bus 0x44d1a374 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xddb40db9 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/instr/snd-ainstr-fm 0x5a3e4571 snd_seq_fm_init -EXPORT_SYMBOL sound/core/seq/instr/snd-ainstr-simple 0xd5791cfd snd_seq_simple_init -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x296b99f2 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x4c0f74aa snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x66212d85 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x69ee7fd1 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x97b3152e snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xaa8ee3eb snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xae80f413 snd_seq_kernel_client_enqueue_blocking -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xc84df378 snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a2a7513 snd_seq_device_new -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x60bdae98 snd_seq_device_register_driver -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock -EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver -EXPORT_SYMBOL sound/core/seq/snd-seq-instr 0x333bebb1 snd_seq_instr_list_free_cond -EXPORT_SYMBOL sound/core/seq/snd-seq-instr 0xb7c8a16c snd_seq_instr_free_use -EXPORT_SYMBOL sound/core/seq/snd-seq-instr 0xc5efb48f snd_seq_instr_find -EXPORT_SYMBOL sound/core/seq/snd-seq-instr 0xc9ee1527 snd_seq_instr_list_new -EXPORT_SYMBOL sound/core/seq/snd-seq-instr 0xd220ec70 snd_seq_instr_list_free -EXPORT_SYMBOL sound/core/seq/snd-seq-instr 0xf5019917 snd_seq_instr_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6c6f1a61 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x0f6a5d32 snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x3ee65c52 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x78cf4783 snd_midi_event_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8810440b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xa215263f snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd4883565 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xda509db0 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe00177d7 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb9ae42c2 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x184f7b7b snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1b42c0db snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x1f8989c4 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2b0270d7 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x2f914d33 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x2fa71829 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x2fb34df2 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x33196303 snd_iprintf -EXPORT_SYMBOL sound/core/snd 0x356c0d94 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3b4a5fef snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x42b84656 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x4403aa9f snd_card_proc_new -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x52fe113d release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0x5464dedf snd_cards -EXPORT_SYMBOL sound/core/snd 0x5a7fdd40 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x5e07b8e5 snd_add_device_sysfs_file -EXPORT_SYMBOL sound/core/snd 0x5f9892ec snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x61935c97 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x6c222cc0 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x72161a1d snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x7e169892 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x80e61815 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x88558726 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x8a11508e snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x8a68f5d2 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x8c031d30 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x8fcc0313 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x9af7d314 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x9b056cd6 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x9d325902 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x9f055dc8 snd_register_device_for_dev -EXPORT_SYMBOL sound/core/snd 0xb213fe8b snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xbfee46c8 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xc30ee508 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xc506ce9a snd_card_register -EXPORT_SYMBOL sound/core/snd 0xccfb4d39 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL sound/core/snd 0xd4a2252c snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xd7575d6f snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0xea55310e snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xed457b0e snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xf6673c07 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xf9d500ed snd_seq_root -EXPORT_SYMBOL sound/core/snd-hwdep 0x1bc79af2 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-page-alloc 0x1143e3b8 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-page-alloc 0x1616c038 snd_dma_reserve_buf -EXPORT_SYMBOL sound/core/snd-page-alloc 0x3b91f3af snd_free_pages -EXPORT_SYMBOL sound/core/snd-page-alloc 0x6d315b3f snd_dma_get_reserved_buf -EXPORT_SYMBOL sound/core/snd-page-alloc 0x875134e8 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-page-alloc 0xade88e76 snd_malloc_pages -EXPORT_SYMBOL sound/core/snd-page-alloc 0xdf09894a snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x0154f205 snd_pcm_lib_readv -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0d8275df snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x13569cdf snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x151e567d snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x202f6822 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x29e1649a snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x30fc1e1d snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x315ff199 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x32fbe1d7 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x37933f1b snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x394066fa snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x4436ba35 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x46c8c2ed snd_pcm_suspend -EXPORT_SYMBOL sound/core/snd-pcm 0x46fefbcb snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0x4750587a snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x4f00696c snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x5082443d snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x5258e4bc snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x62421404 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x65695277 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6c7dc4ed snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7ad57fc3 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x7c5cec98 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x88c3fbe0 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x88cc66cc snd_pcm_link_rwlock -EXPORT_SYMBOL sound/core/snd-pcm 0x89a31a56 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x8bfeb574 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x8f8aaf9a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x90c4e3d5 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x9dfd1f96 snd_pcm_notify -EXPORT_SYMBOL sound/core/snd-pcm 0x9fdea959 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa690caa6 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xac331b6c snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xc0d15a54 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc4bc3043 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xc4c483df snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xd88c7367 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xdebe157f snd_pcm_lib_read -EXPORT_SYMBOL sound/core/snd-pcm 0xe0860551 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xe1e8ce08 snd_pcm_lib_writev -EXPORT_SYMBOL sound/core/snd-pcm 0xe357834b snd_pcm_lib_write -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xf750fcf6 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-rawmidi 0x01704785 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x13d67baa snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1865a0aa snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x21f2204a snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x26e2e588 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x45bb9737 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a5dfab6 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x65f4e885 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x69a5c31b snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x815cd7e8 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x84954627 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x97bb82be snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xadf72ef6 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xca1616de snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdcb0da9b snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3aee4ce snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf598e18b snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-timer 0x133e1a01 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x17d5cc75 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x7dbfe072 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x9a81048b snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x9ea2010a snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xa256d389 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xaa26f7d9 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xafbde93d snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xc52b0e6a snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xc6277ad9 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xe7844d27 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xe98873e5 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xfcc182f1 snd_timer_notify -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x73c4c993 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x9c4dbe0a snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xfe618b58 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1af11aa3 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4934e569 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4efbb45c snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6cb085bf snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb275d317 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb41ee09b snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe4a5cef3 snd_opl3_init -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x07c66392 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b79d3c5 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1cadb14b snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2226a0fc snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7424b32b snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80d80cdd snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x826149f1 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x97fbe36d snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xccea07f6 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfa1016e1 snd_vx_free_firmware -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x60d16d9e snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x76be566a snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fad34af snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa731f608 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa8a568ee snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcbb7e319 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1ed4b0cd snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2e5adaf3 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x83e11ad8 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd58c8295 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa1071007 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc2bd67e7 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4b11e7cc snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9e71f4eb snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd07db1d2 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe829d848 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xec187ea3 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1522fe50 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4ec64b39 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5e564177 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x63cd15e3 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x852463e2 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xde96202b snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0a35af0b snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4a4baacb snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5d409472 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x862d193d snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x92187206 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x94bd9958 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbf7e40fd snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc376753c snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xec176f06 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xec69588f snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x0ba4ef1d snd_sb16dsp_interrupt -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x11dad7cf snd_sb16dsp_get_pcm_ops -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x16109513 snd_sb16dsp_configure -EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x74c9acc7 snd_sb16dsp_pcm -EXPORT_SYMBOL sound/oss/ac97_codec 0x26615914 ac97_set_adc_rate -EXPORT_SYMBOL sound/oss/ac97_codec 0x31028d76 ac97_probe_codec -EXPORT_SYMBOL sound/oss/ac97_codec 0x5785e315 ac97_release_codec -EXPORT_SYMBOL sound/oss/ac97_codec 0x6cbe735e ac97_set_dac_rate -EXPORT_SYMBOL sound/oss/ac97_codec 0xbae4da72 ac97_read_proc -EXPORT_SYMBOL sound/oss/ac97_codec 0xf986b633 ac97_alloc_codec -EXPORT_SYMBOL sound/oss/ad1848 0x14bf8085 ad1848_init -EXPORT_SYMBOL sound/oss/ad1848 0x57f2b9e0 ad1848_detect -EXPORT_SYMBOL sound/oss/ad1848 0x8d660e70 probe_ms_sound -EXPORT_SYMBOL sound/oss/ad1848 0x9bf1cc62 ad1848_unload -EXPORT_SYMBOL sound/oss/ad1848 0xb29a9148 unload_ms_sound -EXPORT_SYMBOL sound/oss/ad1848 0xc04f6f67 ad1848_control -EXPORT_SYMBOL sound/oss/ad1848 0xe20e303e attach_ms_sound -EXPORT_SYMBOL sound/oss/mpu401 0x5febf284 unload_mpu401 -EXPORT_SYMBOL sound/oss/mpu401 0x813a35f5 probe_mpu401 -EXPORT_SYMBOL sound/oss/mpu401 0xc79b542b attach_mpu401 -EXPORT_SYMBOL sound/oss/msnd 0x1186f48f msnd_fifo_read -EXPORT_SYMBOL sound/oss/msnd 0x211b6281 msnd_unregister -EXPORT_SYMBOL sound/oss/msnd 0x2bcfb2fe msnd_send_word -EXPORT_SYMBOL sound/oss/msnd 0x32a5a3a7 msnd_register -EXPORT_SYMBOL sound/oss/msnd 0x340a3ddf msnd_init_queue -EXPORT_SYMBOL sound/oss/msnd 0x4ee519f8 msnd_upload_host -EXPORT_SYMBOL sound/oss/msnd 0x54230dc1 msnd_fifo_write -EXPORT_SYMBOL sound/oss/msnd 0x6601493b msnd_fifo_make_empty -EXPORT_SYMBOL sound/oss/msnd 0x90f4e8f0 msnd_enable_irq -EXPORT_SYMBOL sound/oss/msnd 0x9274d677 msnd_fifo_free -EXPORT_SYMBOL sound/oss/msnd 0x9b83041a msnd_send_dsp_cmd -EXPORT_SYMBOL sound/oss/msnd 0xade99e25 msnd_fifo_alloc -EXPORT_SYMBOL sound/oss/msnd 0xb3520772 msnd_fifo_init -EXPORT_SYMBOL sound/oss/msnd 0xdf0f59eb msnd_fifo_write_io -EXPORT_SYMBOL sound/oss/msnd 0xe139a03a msnd_disable_irq -EXPORT_SYMBOL sound/oss/msnd 0xf4c4f662 msnd_fifo_read_io -EXPORT_SYMBOL sound/oss/sb_lib 0x42424109 sb_be_quiet -EXPORT_SYMBOL sound/oss/sb_lib 0x450f9aea smw_free -EXPORT_SYMBOL sound/oss/sb_lib 0x74afd69c unload_sbmpu -EXPORT_SYMBOL sound/oss/sb_lib 0xb17b5ec1 probe_sbmpu -EXPORT_SYMBOL sound/oss/sb_lib 0xc4884969 sb_dsp_unload -EXPORT_SYMBOL sound/oss/sb_lib 0xd8a2731c sb_dsp_detect -EXPORT_SYMBOL sound/oss/sb_lib 0xe10eca4c sb_dsp_init -EXPORT_SYMBOL sound/oss/sound 0x0076e85d audio_devs -EXPORT_SYMBOL sound/oss/sound 0x04c87ec8 compute_finetune -EXPORT_SYMBOL sound/oss/sound 0x06339815 sound_unload_synthdev -EXPORT_SYMBOL sound/oss/sound 0x0f280035 conf_printf -EXPORT_SYMBOL sound/oss/sound 0x15af03f3 synth_devs -EXPORT_SYMBOL sound/oss/sound 0x17ba231d seq_input_event -EXPORT_SYMBOL sound/oss/sound 0x1b3df3cf sound_alloc_mixerdev -EXPORT_SYMBOL sound/oss/sound 0x1f395686 MIDIbuf_avail -EXPORT_SYMBOL sound/oss/sound 0x2161d5e8 sound_timer_init -EXPORT_SYMBOL sound/oss/sound 0x29af564f sound_install_mixer -EXPORT_SYMBOL sound/oss/sound 0x2aa31695 midi_synth_kill_note -EXPORT_SYMBOL sound/oss/sound 0x394cb088 sound_free_dma -EXPORT_SYMBOL sound/oss/sound 0x418f5fbe sound_close_dma -EXPORT_SYMBOL sound/oss/sound 0x4cd01bdd num_audiodevs -EXPORT_SYMBOL sound/oss/sound 0x4ff47e9d midi_synth_setup_voice -EXPORT_SYMBOL sound/oss/sound 0x51e354b2 sound_alloc_timerdev -EXPORT_SYMBOL sound/oss/sound 0x56504ca2 midi_synth_reset -EXPORT_SYMBOL sound/oss/sound 0x5d986fc9 note_to_freq -EXPORT_SYMBOL sound/oss/sound 0x6cc009b9 sound_timer_devs -EXPORT_SYMBOL sound/oss/sound 0x7679ee76 seq_copy_to_input -EXPORT_SYMBOL sound/oss/sound 0x7bdf0907 conf_printf2 -EXPORT_SYMBOL sound/oss/sound 0x8785448f midi_devs -EXPORT_SYMBOL sound/oss/sound 0x892093e0 midi_synth_controller -EXPORT_SYMBOL sound/oss/sound 0x90bd9714 sequencer_timer -EXPORT_SYMBOL sound/oss/sound 0x940a45bb mixer_devs -EXPORT_SYMBOL sound/oss/sound 0x987bcf12 DMAbuf_outputintr -EXPORT_SYMBOL sound/oss/sound 0x9a95733f sound_alloc_dma -EXPORT_SYMBOL sound/oss/sound 0x9bdaf24d midi_synth_start_note -EXPORT_SYMBOL sound/oss/sound 0x9d845b18 num_mixers -EXPORT_SYMBOL sound/oss/sound 0xa1d5f04f load_mixer_volumes -EXPORT_SYMBOL sound/oss/sound 0xa1eae7cf num_midis -EXPORT_SYMBOL sound/oss/sound 0xa41ead5f sound_unload_timerdev -EXPORT_SYMBOL sound/oss/sound 0xa51c913b sound_unload_mixerdev -EXPORT_SYMBOL sound/oss/sound 0xa6bb414c sound_unload_mididev -EXPORT_SYMBOL sound/oss/sound 0xa948751e sound_unload_audiodev -EXPORT_SYMBOL sound/oss/sound 0xa9838c2b sound_install_audiodrv -EXPORT_SYMBOL sound/oss/sound 0xad45df73 midi_synth_close -EXPORT_SYMBOL sound/oss/sound 0xaef743b2 midi_synth_ioctl -EXPORT_SYMBOL sound/oss/sound 0xb14b22cd midi_synth_hw_control -EXPORT_SYMBOL sound/oss/sound 0xb51587f6 do_midi_msg -EXPORT_SYMBOL sound/oss/sound 0xba413f87 sound_alloc_mididev -EXPORT_SYMBOL sound/oss/sound 0xba7dd041 midi_synth_bender -EXPORT_SYMBOL sound/oss/sound 0xc748d109 sound_alloc_synthdev -EXPORT_SYMBOL sound/oss/sound 0xcc4b8797 sound_open_dma -EXPORT_SYMBOL sound/oss/sound 0xd85be938 midi_synth_set_instr -EXPORT_SYMBOL sound/oss/sound 0xdb400afa midi_synth_panning -EXPORT_SYMBOL sound/oss/sound 0xe056b71c DMAbuf_start_dma -EXPORT_SYMBOL sound/oss/sound 0xe2675a79 sound_timer_interrupt -EXPORT_SYMBOL sound/oss/sound 0xeb315d99 DMAbuf_inputintr -EXPORT_SYMBOL sound/oss/sound 0xf1ea8a20 midi_synth_aftertouch -EXPORT_SYMBOL sound/oss/sound 0xf6b3a2fb midi_synth_open -EXPORT_SYMBOL sound/oss/sound 0xf7426da3 midi_synth_load_patch -EXPORT_SYMBOL sound/oss/sound 0xf78f6363 sequencer_init -EXPORT_SYMBOL sound/oss/sound 0xfa6871be sound_timer_syncinterval -EXPORT_SYMBOL sound/oss/sound 0xfddcbfb3 midi_synth_send_sysex -EXPORT_SYMBOL sound/oss/uart401 0x46248c57 uart401intr -EXPORT_SYMBOL sound/oss/uart401 0x7cee927e probe_uart401 -EXPORT_SYMBOL sound/oss/uart401 0xecfdd9c9 unload_uart401 -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x032ad38e snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x09d770bd snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x43520046 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x487f2c11 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ca4790a snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5eaa68fd snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x69035112 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6d58064f snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7145b590 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa72ab1d1 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa4631ca snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaafb9432 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf14ac4d snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc30345cc snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf521dcb snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe11a5e60 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeef33c55 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ak4531-codec 0x01ca1498 snd_ak4531_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ak4531-codec 0x0543ec1c snd_ak4531_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ak4531-codec 0x7f0b4822 snd_ak4531_mixer -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x00582c82 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0afd6af3 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x15ac0d45 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4e1c4fa2 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x74cd485d snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8a46640a snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x97d799d2 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa4cf2970 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xed3cc2dd snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3ae702d8 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4290eed1 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x637b6dd2 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x14c9df90 snd_trident_synth_copy_from_user -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x41b2b0a2 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x51c45762 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9674b928 snd_trident_synth_alloc -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9d212087 snd_trident_synth_free -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcf0cb84f snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xda29cf68 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe56ef8e5 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/sound_firmware 0x39e3dd23 mod_firmware_load -EXPORT_SYMBOL sound/soundcore 0x42310cbd sound_class -EXPORT_SYMBOL sound/soundcore 0x4695ec4f register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x58c4f032 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x5e19189a register_sound_midi -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x970b44a3 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe66ba6e5 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x36a0057c snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x960fdf3f snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb4e25c8b snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc7a1a923 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe9365a3b snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf206a5a8 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/snd-util-mem 0x16471586 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x17fd8e28 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x19c2aa80 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x4ff75f8a snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x51939f54 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x545c1381 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7230704b snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x82da2ae9 __snd_util_memblk_new -EXPORT_SYMBOL sound/usb/snd-usb-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usb-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usb-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usb-lib 0xf2ba23d5 snd_usb_create_midi_interface -EXPORT_SYMBOL vmlinux 0x000c4717 end_request -EXPORT_SYMBOL vmlinux 0x00112f51 groups_alloc -EXPORT_SYMBOL vmlinux 0x0014bfd1 smp_call_function -EXPORT_SYMBOL vmlinux 0x0050b7fd find_vma -EXPORT_SYMBOL vmlinux 0x006ccd93 vfs_symlink -EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work -EXPORT_SYMBOL vmlinux 0x00bad254 __elv_add_request -EXPORT_SYMBOL vmlinux 0x00bdb7f2 km_policy_notify -EXPORT_SYMBOL vmlinux 0x00e8097b csum_partial_copy_fromiovecend -EXPORT_SYMBOL vmlinux 0x00e97645 input_register_device -EXPORT_SYMBOL vmlinux 0x00ff9bff dev_getbyhwaddr -EXPORT_SYMBOL vmlinux 0x00ffd3c7 init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x01075bf0 panic -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x01305810 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x015f9e98 register_binfmt -EXPORT_SYMBOL vmlinux 0x0167bf3c tcf_hash_insert -EXPORT_SYMBOL vmlinux 0x017b17b3 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap -EXPORT_SYMBOL vmlinux 0x01a4aab6 set_irq_chip_data -EXPORT_SYMBOL vmlinux 0x01b235f1 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x01d19038 acpi_enable_subsystem -EXPORT_SYMBOL vmlinux 0x01e76512 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x01f41cec init_special_inode -EXPORT_SYMBOL vmlinux 0x01f6bf39 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0219657c __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x022e6ae9 acpi_os_sleep -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023eb25e put_unused_fd -EXPORT_SYMBOL vmlinux 0x02462292 _read_lock_bh -EXPORT_SYMBOL vmlinux 0x0250269c tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x025da070 snprintf -EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x027ebe5e pm_register -EXPORT_SYMBOL vmlinux 0x029043ed acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x02992383 udplite_prot -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02aff2f4 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0x02bf8728 dev_open -EXPORT_SYMBOL vmlinux 0x02c80bc0 nobh_write_end -EXPORT_SYMBOL vmlinux 0x02cd3086 __down_failed_trylock -EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x02e61919 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x031431e6 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03960713 ioread16 -EXPORT_SYMBOL vmlinux 0x03a99c3b rb_prev -EXPORT_SYMBOL vmlinux 0x040b95a1 nf_log_register -EXPORT_SYMBOL vmlinux 0x0411674a cfb_imageblit -EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x0427a6b5 module_put -EXPORT_SYMBOL vmlinux 0x044fbf49 mempool_kzalloc -EXPORT_SYMBOL vmlinux 0x04697ce5 bio_copy_user -EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display -EXPORT_SYMBOL vmlinux 0x048a43ee acpi_unlock_battery_dir -EXPORT_SYMBOL vmlinux 0x04960230 pci_proc_detach_bus -EXPORT_SYMBOL vmlinux 0x04a20170 unshare_files -EXPORT_SYMBOL vmlinux 0x04b4cd62 proto_register -EXPORT_SYMBOL vmlinux 0x04bdc66e pci_dev_put -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x050468f7 __rtattr_parse_nested_compat -EXPORT_SYMBOL vmlinux 0x0529fbb1 nf_register_hooks -EXPORT_SYMBOL vmlinux 0x0531a270 key_task_permission -EXPORT_SYMBOL vmlinux 0x0533a6e6 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x0577927e simple_statfs -EXPORT_SYMBOL vmlinux 0x0577e541 put_filp -EXPORT_SYMBOL vmlinux 0x057ce975 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x057e9e30 unload_nls -EXPORT_SYMBOL vmlinux 0x058c75d9 acpi_get_pci_id -EXPORT_SYMBOL vmlinux 0x05a6cc28 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x05a865d7 unbind_con_driver -EXPORT_SYMBOL vmlinux 0x05c87467 neigh_update -EXPORT_SYMBOL vmlinux 0x05e1389a finish_wait -EXPORT_SYMBOL vmlinux 0x060453a8 elv_next_request -EXPORT_SYMBOL vmlinux 0x06127753 ioread16be -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061865ed vfs_readv -EXPORT_SYMBOL vmlinux 0x064b8dd7 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x06750f1c inet_release -EXPORT_SYMBOL vmlinux 0x067a177a cap_netlink_recv -EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx -EXPORT_SYMBOL vmlinux 0x06a40be1 kunmap -EXPORT_SYMBOL vmlinux 0x06de9cef n_tty_ioctl -EXPORT_SYMBOL vmlinux 0x06f2d5c7 mempool_free -EXPORT_SYMBOL vmlinux 0x06f4a69c ilookup -EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn -EXPORT_SYMBOL vmlinux 0x073865da sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x0758adfb ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable -EXPORT_SYMBOL vmlinux 0x079cd7f1 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x079fa66e key_unlink -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07aaa060 single_release -EXPORT_SYMBOL vmlinux 0x07ca3a89 sock_no_bind -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial -EXPORT_SYMBOL vmlinux 0x07e43c47 wait_for_completion -EXPORT_SYMBOL vmlinux 0x07f84dd2 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x0825f300 con_is_bound -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0897ad10 input_grab_device -EXPORT_SYMBOL vmlinux 0x08dbb7d5 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x0900b1c6 may_umount_tree -EXPORT_SYMBOL vmlinux 0x0933aae1 efi_enabled -EXPORT_SYMBOL vmlinux 0x093e947e posix_acl_create_masq -EXPORT_SYMBOL vmlinux 0x093fbfd4 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages -EXPORT_SYMBOL vmlinux 0x094e7e90 sk_stream_rfree -EXPORT_SYMBOL vmlinux 0x09775cdc kref_get -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09925535 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x099e1b3d call_usermodehelper_stdinpipe -EXPORT_SYMBOL vmlinux 0x09a0b562 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x09aeaf8c out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09fe878e deactivate_super -EXPORT_SYMBOL vmlinux 0x0a17e7cc dma_async_memcpy_buf_to_buf -EXPORT_SYMBOL vmlinux 0x0a1c9f3d mod_timer -EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals -EXPORT_SYMBOL vmlinux 0x0a2da04c blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a3418ec __netif_schedule -EXPORT_SYMBOL vmlinux 0x0a6ca694 set_binfmt -EXPORT_SYMBOL vmlinux 0x0a956f95 nf_hooks -EXPORT_SYMBOL vmlinux 0x0acad7fa key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0x0af6b35b pci_get_slot -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1ec847 sock_no_poll -EXPORT_SYMBOL vmlinux 0x0b1f6fa7 free_netdev -EXPORT_SYMBOL vmlinux 0x0b23a5e8 SELECT_DRIVE -EXPORT_SYMBOL vmlinux 0x0b353626 iowrite8_rep -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7ec360 skb_over_panic -EXPORT_SYMBOL vmlinux 0x0ba0235e dma_async_client_register -EXPORT_SYMBOL vmlinux 0x0baf117e kfifo_free -EXPORT_SYMBOL vmlinux 0x0bba1c14 on_each_cpu -EXPORT_SYMBOL vmlinux 0x0bc93ebf tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x0bce3753 ioread32be -EXPORT_SYMBOL vmlinux 0x0be8c234 get_sb_pseudo -EXPORT_SYMBOL vmlinux 0x0bedbdee inet_register_protosw -EXPORT_SYMBOL vmlinux 0x0c074c1d input_register_handler -EXPORT_SYMBOL vmlinux 0x0c3df82f proc_mkdir -EXPORT_SYMBOL vmlinux 0x0c486b72 ide_unregister -EXPORT_SYMBOL vmlinux 0x0c5ef91b per_cpu__vm_event_states -EXPORT_SYMBOL vmlinux 0x0c7f94ec task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x0c90cd05 start_tty -EXPORT_SYMBOL vmlinux 0x0cda10c1 del_timer_sync -EXPORT_SYMBOL vmlinux 0x0cdac007 acpi_get_physical_device -EXPORT_SYMBOL vmlinux 0x0cea1216 eth_header -EXPORT_SYMBOL vmlinux 0x0d06504d pci_remove_bus -EXPORT_SYMBOL vmlinux 0x0d16f266 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user -EXPORT_SYMBOL vmlinux 0x0d728a4a unregister_netdev -EXPORT_SYMBOL vmlinux 0x0d8ab500 param_set_copystring -EXPORT_SYMBOL vmlinux 0x0d8b5234 __free_pages -EXPORT_SYMBOL vmlinux 0x0d967097 tc_classify -EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x0dcf935f get_unmapped_area -EXPORT_SYMBOL vmlinux 0x0ded1ee1 net_statistics -EXPORT_SYMBOL vmlinux 0x0df40f60 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x0e18ae1a _spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0e49edf2 audit_log_format -EXPORT_SYMBOL vmlinux 0x0e764074 skb_split -EXPORT_SYMBOL vmlinux 0x0e7e261a inode_add_bytes -EXPORT_SYMBOL vmlinux 0x0e859d22 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x0e9b0240 per_cpu__kstat -EXPORT_SYMBOL vmlinux 0x0ead5073 vscnprintf -EXPORT_SYMBOL vmlinux 0x0f2c9c8f cpu_possible_map -EXPORT_SYMBOL vmlinux 0x0f5a92de dcache_lock -EXPORT_SYMBOL vmlinux 0x0fa07128 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x10251367 kunmap_high -EXPORT_SYMBOL vmlinux 0x107d6ba3 __get_free_pages -EXPORT_SYMBOL vmlinux 0x10e30db8 arp_find -EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu -EXPORT_SYMBOL vmlinux 0x10f2bf08 match_strcpy -EXPORT_SYMBOL vmlinux 0x112b8185 devm_iounmap -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x1180aadb skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x118f01ea putname -EXPORT_SYMBOL vmlinux 0x120bd2d9 inode_double_lock -EXPORT_SYMBOL vmlinux 0x121783cc skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x1218446c del_gendisk -EXPORT_SYMBOL vmlinux 0x121ca05c qdisc_destroy -EXPORT_SYMBOL vmlinux 0x122b1a5d xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x125cfd59 balance_dirty_pages_ratelimited_nr -EXPORT_SYMBOL vmlinux 0x126970ed param_set_uint -EXPORT_SYMBOL vmlinux 0x12a8ac48 __brelse -EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc -EXPORT_SYMBOL vmlinux 0x12eb9327 simple_getattr -EXPORT_SYMBOL vmlinux 0x13080e6f simple_rename -EXPORT_SYMBOL vmlinux 0x132fa482 change_page_attr -EXPORT_SYMBOL vmlinux 0x13306162 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x139e2540 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x13ab889e key_link -EXPORT_SYMBOL vmlinux 0x13aded29 mem_map -EXPORT_SYMBOL vmlinux 0x13af5f5f check_disk_change -EXPORT_SYMBOL vmlinux 0x13bf7910 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x141dbf9b acpi_bus_receive_event -EXPORT_SYMBOL vmlinux 0x141f4802 idr_replace -EXPORT_SYMBOL vmlinux 0x143472bd ethtool_op_set_sg -EXPORT_SYMBOL vmlinux 0x144cee14 page_readlink -EXPORT_SYMBOL vmlinux 0x1451b899 __invalidate_device -EXPORT_SYMBOL vmlinux 0x1477c728 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x148ea081 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x149efde7 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x14a8f0cf sysctl_jiffies -EXPORT_SYMBOL vmlinux 0x14c0a8cf fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x150ffac2 file_permission -EXPORT_SYMBOL vmlinux 0x152ae7e4 udp_proc_register -EXPORT_SYMBOL vmlinux 0x1544aad4 genl_register_mc_group -EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x15700473 task_no_data_intr -EXPORT_SYMBOL vmlinux 0x1605f98c textsearch_unregister -EXPORT_SYMBOL vmlinux 0x161454d4 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x163ea779 lease_modify -EXPORT_SYMBOL vmlinux 0x164d6f23 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x16665adc blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x167b01dd skb_checksum -EXPORT_SYMBOL vmlinux 0x16a0106f __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x16aa45ea registered_fb -EXPORT_SYMBOL vmlinux 0x16aab593 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x16bbd268 dump_thread -EXPORT_SYMBOL vmlinux 0x16f0e74f default_llseek -EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x172954a3 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x175a298d acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x175a6d8b uart_get_divisor -EXPORT_SYMBOL vmlinux 0x17795865 find_task_by_pid_type_ns -EXPORT_SYMBOL vmlinux 0x1795e255 inet_ioctl -EXPORT_SYMBOL vmlinux 0x179635d3 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x17a76e71 rb_first -EXPORT_SYMBOL vmlinux 0x17d59d01 schedule_timeout -EXPORT_SYMBOL vmlinux 0x17de754d bio_endio -EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn -EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x193659ae sock_i_uid -EXPORT_SYMBOL vmlinux 0x194db62d arp_broken_ops -EXPORT_SYMBOL vmlinux 0x194dc35a inode_setattr -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19d5d20a acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0x19dda1e8 I_BDEV -EXPORT_SYMBOL vmlinux 0x1a41be94 pci_remove_bus_device -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a5b0751 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x1a5f05cc xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x1a6aabe4 flush_old_exec -EXPORT_SYMBOL vmlinux 0x1a73e87a __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0x1ae8d7dc param_set_invbool -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b360f39 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x1b4987da tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6b4be1 d_alloc -EXPORT_SYMBOL vmlinux 0x1b7d4074 printk -EXPORT_SYMBOL vmlinux 0x1b824b07 neigh_table_init_no_netlink -EXPORT_SYMBOL vmlinux 0x1b9981cc set_irq_wake -EXPORT_SYMBOL vmlinux 0x1b9a7cf2 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x1bf665bc dget_locked -EXPORT_SYMBOL vmlinux 0x1c557d71 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x1c58686e blk_start_queueing -EXPORT_SYMBOL vmlinux 0x1cc3e635 vfs_quota_on -EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x1ccc568e simple_rmdir -EXPORT_SYMBOL vmlinux 0x1d022c2b per_cpu__irq_regs -EXPORT_SYMBOL vmlinux 0x1d16fd98 dentry_unhash -EXPORT_SYMBOL vmlinux 0x1d26aa98 sprintf -EXPORT_SYMBOL vmlinux 0x1d76e095 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x1d843f58 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0x1dd11d5c sk_receive_skb -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de314f3 hpet_control -EXPORT_SYMBOL vmlinux 0x1de45d83 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x1dfcb3ee tty_set_operations -EXPORT_SYMBOL vmlinux 0x1e04b2c0 pnp_manual_config_dev -EXPORT_SYMBOL vmlinux 0x1e09dccd gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x1e2b3da5 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x1e3ddd6a generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x1e4182ee generic_file_splice_write_nolock -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7960f0 __kfree_skb -EXPORT_SYMBOL vmlinux 0x1e85c0cc page_address -EXPORT_SYMBOL vmlinux 0x1e98dac7 udp_ioctl -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1eba9e49 iowrite16_rep -EXPORT_SYMBOL vmlinux 0x1ede0b3f vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x1ee63864 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x1ef7293f call_usermodehelper_setcleanup -EXPORT_SYMBOL vmlinux 0x1f3ff369 sock_init_data -EXPORT_SYMBOL vmlinux 0x1f53428d inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x1f85baa6 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x1f9cfe83 iomem_resource -EXPORT_SYMBOL vmlinux 0x1fe5ede6 per_cpu__irq_stat -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x2029ef86 ide_register_hw -EXPORT_SYMBOL vmlinux 0x204d3bc8 stop_tty -EXPORT_SYMBOL vmlinux 0x208129ac invalidate_bdev -EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table -EXPORT_SYMBOL vmlinux 0x20992af5 ip_mc_rejoin_group -EXPORT_SYMBOL vmlinux 0x20996fa8 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x20afc0d2 igrab -EXPORT_SYMBOL vmlinux 0x20b3b02d prepare_binprm -EXPORT_SYMBOL vmlinux 0x20c8fc33 pci_osc_control_set -EXPORT_SYMBOL vmlinux 0x20c92159 __rta_fill -EXPORT_SYMBOL vmlinux 0x20da52f4 generic_ide_ioctl -EXPORT_SYMBOL vmlinux 0x20f5ab6d nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x2165b4f4 tcp_v4_remember_stamp -EXPORT_SYMBOL vmlinux 0x2169e72c dev_mc_add -EXPORT_SYMBOL vmlinux 0x217bbcd0 dquot_commit -EXPORT_SYMBOL vmlinux 0x218a653d pci_set_mwi -EXPORT_SYMBOL vmlinux 0x21dddde0 skb_copy_datagram_iovec -EXPORT_SYMBOL vmlinux 0x21e0ea22 acpi_get_id -EXPORT_SYMBOL vmlinux 0x22164a48 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x2223dc69 d_path -EXPORT_SYMBOL vmlinux 0x2241a928 ioread32 -EXPORT_SYMBOL vmlinux 0x2244321f acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x227abcc0 set_user_nice -EXPORT_SYMBOL vmlinux 0x2288378f system_state -EXPORT_SYMBOL vmlinux 0x2295acba ps2_init -EXPORT_SYMBOL vmlinux 0x22a198eb pcim_enable_device -EXPORT_SYMBOL vmlinux 0x22a73912 __tcp_put_md5sig_pool -EXPORT_SYMBOL vmlinux 0x22b6533b xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x22f550bf filemap_fault -EXPORT_SYMBOL vmlinux 0x2323200f audit_log_end -EXPORT_SYMBOL vmlinux 0x2337754a fd_install -EXPORT_SYMBOL vmlinux 0x2348984e adjust_resource -EXPORT_SYMBOL vmlinux 0x235b3ff6 generic_removexattr -EXPORT_SYMBOL vmlinux 0x2368be6d posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x237cae8d kobject_init -EXPORT_SYMBOL vmlinux 0x239cb108 tty_register_device -EXPORT_SYMBOL vmlinux 0x23a7a3bd maps_protect -EXPORT_SYMBOL vmlinux 0x23aca319 xfrm_replay_advance -EXPORT_SYMBOL vmlinux 0x23ad070a set_current_groups -EXPORT_SYMBOL vmlinux 0x23f2d36f memparse -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x241e074b inet_del_protocol -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24548f88 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x246b08bb pv_mmu_ops -EXPORT_SYMBOL vmlinux 0x24be1c87 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x24c1aa7b tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x24c408ca page_put_link -EXPORT_SYMBOL vmlinux 0x24c85a7c tcp_check_req -EXPORT_SYMBOL vmlinux 0x24da04d2 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x24dd75b2 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0x24e4750e call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function -EXPORT_SYMBOL vmlinux 0x25053c45 audit_get_loginuid -EXPORT_SYMBOL vmlinux 0x2506de29 notify_change -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode -EXPORT_SYMBOL vmlinux 0x25d81960 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x25f677bf eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x26227a85 blk_get_queue -EXPORT_SYMBOL vmlinux 0x262c508f ethtool_op_set_ufo -EXPORT_SYMBOL vmlinux 0x263b54cc acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x2652c8f7 page_symlink -EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close -EXPORT_SYMBOL vmlinux 0x26a469f4 kmem_ptr_validate -EXPORT_SYMBOL vmlinux 0x26e8dde7 alloc_netdev_mq -EXPORT_SYMBOL vmlinux 0x26f10725 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x27221cbb ip_fragment -EXPORT_SYMBOL vmlinux 0x272552e6 add_wait_queue -EXPORT_SYMBOL vmlinux 0x272d394e mtrr_del -EXPORT_SYMBOL vmlinux 0x272e7488 cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x273a1889 register_quota_format -EXPORT_SYMBOL vmlinux 0x274a95c8 generic_listxattr -EXPORT_SYMBOL vmlinux 0x274b9caf simple_empty -EXPORT_SYMBOL vmlinux 0x274c5e59 mpage_readpages -EXPORT_SYMBOL vmlinux 0x2761008c elv_rb_find -EXPORT_SYMBOL vmlinux 0x27a72488 ioread8_rep -EXPORT_SYMBOL vmlinux 0x27a9a7eb ns_to_timespec -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x284dc82e netif_rx -EXPORT_SYMBOL vmlinux 0x28cc02d2 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x28cebd0e pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x28dae902 init_task -EXPORT_SYMBOL vmlinux 0x28dcf25c udplite_hash -EXPORT_SYMBOL vmlinux 0x28f35813 scnprintf -EXPORT_SYMBOL vmlinux 0x29028b4c find_task_by_vpid -EXPORT_SYMBOL vmlinux 0x291f9bed bio_split_pool -EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x29633a45 __break_lease -EXPORT_SYMBOL vmlinux 0x29673470 dma_async_client_unregister -EXPORT_SYMBOL vmlinux 0x296dfab5 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x29b26afe __tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x29cd3d81 init_timer_deferrable -EXPORT_SYMBOL vmlinux 0x29d6ae3d skb_make_writable -EXPORT_SYMBOL vmlinux 0x2a5ab86f pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x2a7708f3 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x2a9a46b6 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa74b1d blk_queue_hardsect_size -EXPORT_SYMBOL vmlinux 0x2ab869ee kill_anon_super -EXPORT_SYMBOL vmlinux 0x2aca4819 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x2af86985 vfs_read -EXPORT_SYMBOL vmlinux 0x2b178902 __lock_page -EXPORT_SYMBOL vmlinux 0x2b285124 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x2b4c39fd nf_register_hook -EXPORT_SYMBOL vmlinux 0x2b50197e d_alloc_root -EXPORT_SYMBOL vmlinux 0x2b67f5af kset_unregister -EXPORT_SYMBOL vmlinux 0x2b6aac8c tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x2b713cad filp_open -EXPORT_SYMBOL vmlinux 0x2b740d51 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x2b8a3014 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x2ba76b3b do_mmap_pgoff -EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x2bbad503 _spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x2bc95bd4 memset -EXPORT_SYMBOL vmlinux 0x2becad38 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x2c2512ea get_zeroed_page -EXPORT_SYMBOL vmlinux 0x2c3eca89 seq_printf -EXPORT_SYMBOL vmlinux 0x2c5749e6 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0x2c648db5 permission -EXPORT_SYMBOL vmlinux 0x2c8f5989 acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x2ca53c5c gen_new_estimator -EXPORT_SYMBOL vmlinux 0x2cbddeb2 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x2cce7b2a ide_dump_status -EXPORT_SYMBOL vmlinux 0x2cd9e459 param_set_short -EXPORT_SYMBOL vmlinux 0x2cf190e3 request_irq -EXPORT_SYMBOL vmlinux 0x2d0790f1 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x2d251704 default_unplug_io_fn -EXPORT_SYMBOL vmlinux 0x2d312260 sock_register -EXPORT_SYMBOL vmlinux 0x2d5c06ec down_write_trylock -EXPORT_SYMBOL vmlinux 0x2d5fe149 pcibios_set_irq_routing -EXPORT_SYMBOL vmlinux 0x2d70135b netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x2d763739 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x2d7f9629 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x2d9da446 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x2d9f0236 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x2db717fe up_write -EXPORT_SYMBOL vmlinux 0x2dbc755e iowrite32_rep -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2de9f66f param_get_long -EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2df4a6eb neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x2dfaa67d request_key_async -EXPORT_SYMBOL vmlinux 0x2dff492d pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x2e05072a nf_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x2e11ec59 skb_seq_read -EXPORT_SYMBOL vmlinux 0x2e4ab7bf km_new_mapping -EXPORT_SYMBOL vmlinux 0x2e60bace memcpy -EXPORT_SYMBOL vmlinux 0x2e6e0f1b ida_init -EXPORT_SYMBOL vmlinux 0x2ea7e6c2 netlink_dump_start -EXPORT_SYMBOL vmlinux 0x2ee467f2 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x2efa6455 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user -EXPORT_SYMBOL vmlinux 0x2f44b506 nf_unregister_hooks -EXPORT_SYMBOL vmlinux 0x2fd1d81c vfree -EXPORT_SYMBOL vmlinux 0x2ff92ca0 find_next_bit -EXPORT_SYMBOL vmlinux 0x30343e46 iowrite16be -EXPORT_SYMBOL vmlinux 0x305c96f1 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x3072dc67 unlock_super -EXPORT_SYMBOL vmlinux 0x30878d91 pci_request_regions -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3121e0c8 xfrm_cfg_mutex -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3147857d default_red -EXPORT_SYMBOL vmlinux 0x3167ea19 global_flush_tlb -EXPORT_SYMBOL vmlinux 0x31b47247 kobject_put -EXPORT_SYMBOL vmlinux 0x31b51f56 dev_close -EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x31ed96a1 pnp_is_active -EXPORT_SYMBOL vmlinux 0x322c6fc2 __check_region -EXPORT_SYMBOL vmlinux 0x3236b868 devm_request_irq -EXPORT_SYMBOL vmlinux 0x325ac84c do_SAK -EXPORT_SYMBOL vmlinux 0x32974da0 bdi_destroy -EXPORT_SYMBOL vmlinux 0x32d01fec acpi_attach_data -EXPORT_SYMBOL vmlinux 0x331fa843 dma_async_memcpy_pg_to_pg -EXPORT_SYMBOL vmlinux 0x33408530 blk_end_sync_rq -EXPORT_SYMBOL vmlinux 0x334180bf idr_get_new_above -EXPORT_SYMBOL vmlinux 0x334b2e68 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x3360a963 param_set_ulong -EXPORT_SYMBOL vmlinux 0x3360bb18 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3385c8cb per_cpu__this_cpu_off -EXPORT_SYMBOL vmlinux 0x33934162 release_firmware -EXPORT_SYMBOL vmlinux 0x33aea481 skb_append -EXPORT_SYMBOL vmlinux 0x33c2322f kasprintf -EXPORT_SYMBOL vmlinux 0x3421272c efi -EXPORT_SYMBOL vmlinux 0x342cc0af skb_copy_expand -EXPORT_SYMBOL vmlinux 0x342f60fe apm_info -EXPORT_SYMBOL vmlinux 0x348e2307 invalidate_inodes -EXPORT_SYMBOL vmlinux 0x34908c14 print_hex_dump_bytes -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34c16141 struct_module -EXPORT_SYMBOL vmlinux 0x34fedf98 unregister_nls -EXPORT_SYMBOL vmlinux 0x35a3594d do_splice_to -EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator -EXPORT_SYMBOL vmlinux 0x35e65626 acpi_pci_irq_enable -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362c333b blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x3690b2c0 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x3698114d neigh_event_ns -EXPORT_SYMBOL vmlinux 0x3698871f clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x36d5355b acpi_register_gsi -EXPORT_SYMBOL vmlinux 0x36ded7b8 find_task_by_pid -EXPORT_SYMBOL vmlinux 0x37158d5a uart_add_one_port -EXPORT_SYMBOL vmlinux 0x371de8b1 write_cache_pages -EXPORT_SYMBOL vmlinux 0x375bf494 iowrite8 -EXPORT_SYMBOL vmlinux 0x3762cb6e ioremap_nocache -EXPORT_SYMBOL vmlinux 0x378e659e pre_task_out_intr -EXPORT_SYMBOL vmlinux 0x379a3f6d sb_has_dirty_inodes -EXPORT_SYMBOL vmlinux 0x37a858fc grab_cache_page_nowait -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c1c043 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 -EXPORT_SYMBOL vmlinux 0x38104297 input_free_device -EXPORT_SYMBOL vmlinux 0x386b1a2b skb_unlink -EXPORT_SYMBOL vmlinux 0x387c0967 vfs_lstat -EXPORT_SYMBOL vmlinux 0x3899ff03 vfs_unlink -EXPORT_SYMBOL vmlinux 0x389e200f ioread8 -EXPORT_SYMBOL vmlinux 0x38a47b9c get_disk -EXPORT_SYMBOL vmlinux 0x38ad6bea __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x38c99093 move_addr_to_user -EXPORT_SYMBOL vmlinux 0x38cb3754 generic_setxattr -EXPORT_SYMBOL vmlinux 0x38d01d66 mapping_tagged -EXPORT_SYMBOL vmlinux 0x38dbb652 console_start -EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0x399465d8 sock_i_ino -EXPORT_SYMBOL vmlinux 0x39d7f91a kobject_del -EXPORT_SYMBOL vmlinux 0x39edb168 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv -EXPORT_SYMBOL vmlinux 0x3a879fb5 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x3a904e3c blk_get_backing_dev_info -EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x3b1dbc07 d_splice_alias -EXPORT_SYMBOL vmlinux 0x3b284088 skb_store_bits -EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3b8d93dc in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x3bc3421b blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x3bd145dc tty_vhangup -EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x3c281659 follow_up -EXPORT_SYMBOL vmlinux 0x3c2eda29 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x3c40f23d kmap_high -EXPORT_SYMBOL vmlinux 0x3c6830a2 register_exec_domain -EXPORT_SYMBOL vmlinux 0x3c692fd5 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x3ca444da kmap_atomic -EXPORT_SYMBOL vmlinux 0x3cb8a495 param_get_string -EXPORT_SYMBOL vmlinux 0x3cc0a3bb xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x3ce040f2 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cfb5125 per_cpu__current_task -EXPORT_SYMBOL vmlinux 0x3d185a41 remote_llseek -EXPORT_SYMBOL vmlinux 0x3d34c568 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x3d711301 pci_choose_state -EXPORT_SYMBOL vmlinux 0x3d8d0a1f inode_set_bytes -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3db95aac pcim_iomap -EXPORT_SYMBOL vmlinux 0x3dc6574e pci_remove_behind_bridge -EXPORT_SYMBOL vmlinux 0x3e0a416d pci_dev_get -EXPORT_SYMBOL vmlinux 0x3e1ef73c cdev_del -EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0x3e89d0c9 find_task_by_pid_ns -EXPORT_SYMBOL vmlinux 0x3e931b60 complete_request_key -EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset -EXPORT_SYMBOL vmlinux 0x3f015640 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x3f072204 complete_all -EXPORT_SYMBOL vmlinux 0x3f1dd694 block_commit_write -EXPORT_SYMBOL vmlinux 0x3f473495 seq_release -EXPORT_SYMBOL vmlinux 0x3fa62fa8 generic_read_dir -EXPORT_SYMBOL vmlinux 0x3fbcddc3 netdev_compute_features -EXPORT_SYMBOL vmlinux 0x3fe56992 sleep_on_timeout -EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable -EXPORT_SYMBOL vmlinux 0x4045a6c4 inet_frags_init -EXPORT_SYMBOL vmlinux 0x404ac111 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x40518b19 __dst_free -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x4059f427 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds -EXPORT_SYMBOL vmlinux 0x405e2763 ide_hwifs -EXPORT_SYMBOL vmlinux 0x408118dd dev_change_flags -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409d65d2 cpufreq_gov_performance -EXPORT_SYMBOL vmlinux 0x41018afe kernel_getsockname -EXPORT_SYMBOL vmlinux 0x4101a975 ide_fixstring -EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode -EXPORT_SYMBOL vmlinux 0x412fe93a bio_init -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4185cf4b radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41dbc94a xfrm_replay_check -EXPORT_SYMBOL vmlinux 0x41e39cca pagevec_lookup -EXPORT_SYMBOL vmlinux 0x42005849 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x42034991 xfrm_bundle_ok -EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x422c05d0 acpi_get_data -EXPORT_SYMBOL vmlinux 0x423a5e7d uart_register_driver -EXPORT_SYMBOL vmlinux 0x424fb82e nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x4292364c schedule -EXPORT_SYMBOL vmlinux 0x42c79ca3 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x42d573e3 ethtool_op_set_tx_ipv6_csum -EXPORT_SYMBOL vmlinux 0x42fbe08f __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x4310b834 blk_start_queue -EXPORT_SYMBOL vmlinux 0x43112dba thaw_bdev -EXPORT_SYMBOL vmlinux 0x43169826 __scm_send -EXPORT_SYMBOL vmlinux 0x43350fd4 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x43385ad9 acpi_pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x434bd8fb skb_copy_and_csum_datagram_iovec -EXPORT_SYMBOL vmlinux 0x434fa55c release_console_sem -EXPORT_SYMBOL vmlinux 0x43515549 inet_select_addr -EXPORT_SYMBOL vmlinux 0x43592419 sleep_on -EXPORT_SYMBOL vmlinux 0x43800f68 acpi_os_signal_semaphore -EXPORT_SYMBOL vmlinux 0x43a49341 call_usermodehelper_pipe -EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43b40de7 kunmap_atomic -EXPORT_SYMBOL vmlinux 0x43c50f81 request_firmware -EXPORT_SYMBOL vmlinux 0x43ed9347 acpi_lock_ac_dir -EXPORT_SYMBOL vmlinux 0x43ef89d7 pskb_copy -EXPORT_SYMBOL vmlinux 0x44161c19 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x44460eb0 dput -EXPORT_SYMBOL vmlinux 0x444779c4 nla_find -EXPORT_SYMBOL vmlinux 0x4458e991 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x446b1a3e complete_and_exit -EXPORT_SYMBOL vmlinux 0x44abfb80 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x44adf1b9 vfs_quota_off -EXPORT_SYMBOL vmlinux 0x44b75ad1 register_netdevice -EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node -EXPORT_SYMBOL vmlinux 0x45061fa4 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x4544d9c9 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x4547bde6 sync_inode -EXPORT_SYMBOL vmlinux 0x454e0e9c blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x455fd57d acpi_set_register -EXPORT_SYMBOL vmlinux 0x457173d6 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x45a2ba81 netlink_change_ngroups -EXPORT_SYMBOL vmlinux 0x45bb0352 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x45f6d339 __scm_destroy -EXPORT_SYMBOL vmlinux 0x46188e95 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x461ea62d reqsk_queue_destroy -EXPORT_SYMBOL vmlinux 0x462420e4 unregister_netdevice -EXPORT_SYMBOL vmlinux 0x4639ec9e mpage_writepages -EXPORT_SYMBOL vmlinux 0x46526027 ide_stall_queue -EXPORT_SYMBOL vmlinux 0x4653a2c9 inet_bind -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466c4926 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x4676ff60 allocate_resource -EXPORT_SYMBOL vmlinux 0x469ebc5f inet_sendmsg -EXPORT_SYMBOL vmlinux 0x46a07d87 acpi_extract_package -EXPORT_SYMBOL vmlinux 0x46ac78cb tty_hangup -EXPORT_SYMBOL vmlinux 0x46ef59a0 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x470d6d35 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x47236789 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x472d2a9a radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x4775eacf iowrite16 -EXPORT_SYMBOL vmlinux 0x4780a8e3 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq -EXPORT_SYMBOL vmlinux 0x47a9ca29 free_task -EXPORT_SYMBOL vmlinux 0x47bf1b5e dquot_transfer -EXPORT_SYMBOL vmlinux 0x47fb87fe pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x4815d5cd find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x4831bf08 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x486049b8 acpi_bus_add -EXPORT_SYMBOL vmlinux 0x486b6407 hweight64 -EXPORT_SYMBOL vmlinux 0x487275b0 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x487a2cdb acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x4888a014 __get_user_2 -EXPORT_SYMBOL vmlinux 0x48b3b867 bio_alloc -EXPORT_SYMBOL vmlinux 0x48bf173c xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x48dfd170 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x48f07026 key_create_or_update -EXPORT_SYMBOL vmlinux 0x48f9ce96 inet_listen_wlock -EXPORT_SYMBOL vmlinux 0x490b9950 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x4912bd5b acpi_unlock_ac_dir -EXPORT_SYMBOL vmlinux 0x49150390 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x4917ac04 give_up_console -EXPORT_SYMBOL vmlinux 0x493b646a pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x493e25e1 udp_hash -EXPORT_SYMBOL vmlinux 0x4957b81d dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x495a9226 input_close_device -EXPORT_SYMBOL vmlinux 0x49e4be50 freeze_bdev -EXPORT_SYMBOL vmlinux 0x49ef7454 is_container_init -EXPORT_SYMBOL vmlinux 0x4a2486a9 vfs_writev -EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x4a4ebbca test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x4a554f2c lease_get_mtime -EXPORT_SYMBOL vmlinux 0x4a623b5c __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x4a969210 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x4a971ec7 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4abe2e0b pci_scan_slot -EXPORT_SYMBOL vmlinux 0x4abfa252 do_generic_mapping_read -EXPORT_SYMBOL vmlinux 0x4b2f14b4 jiffies_to_timespec -EXPORT_SYMBOL vmlinux 0x4b34fbf5 block_all_signals -EXPORT_SYMBOL vmlinux 0x4b8446fa rwsem_wake -EXPORT_SYMBOL vmlinux 0x4baad0c1 fb_find_mode -EXPORT_SYMBOL vmlinux 0x4bbc3e5f pm_flags -EXPORT_SYMBOL vmlinux 0x4bc9be44 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf -EXPORT_SYMBOL vmlinux 0x4c1b82a7 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x4c428406 block_write_full_page -EXPORT_SYMBOL vmlinux 0x4c909235 simple_lookup -EXPORT_SYMBOL vmlinux 0x4c98de0f close_bdev_excl -EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight -EXPORT_SYMBOL vmlinux 0x4cf71cd2 idr_remove_all -EXPORT_SYMBOL vmlinux 0x4d33df45 pv_cpu_ops -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d4500dd call_usermodehelper_setkeys -EXPORT_SYMBOL vmlinux 0x4d4b1ce0 __ht_create_irq -EXPORT_SYMBOL vmlinux 0x4d6a88d5 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x4d906733 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x4d9758bf fb_class -EXPORT_SYMBOL vmlinux 0x4dc8bd9b put_io_context -EXPORT_SYMBOL vmlinux 0x4dd4b6a4 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x4ddc4b9f utf8_mbtowc -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4dfa14b9 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e830a3e strnicmp -EXPORT_SYMBOL vmlinux 0x4e8b894a sock_no_connect -EXPORT_SYMBOL vmlinux 0x4e8eeb1c tcp_connect -EXPORT_SYMBOL vmlinux 0x4e9f3bcf keyring_clear -EXPORT_SYMBOL vmlinux 0x4ebe599f ethtool_op_get_ufo -EXPORT_SYMBOL vmlinux 0x4ec67bbc simple_write_begin -EXPORT_SYMBOL vmlinux 0x4eec43af sock_wmalloc -EXPORT_SYMBOL vmlinux 0x4f20cb5d mark_info_dirty -EXPORT_SYMBOL vmlinux 0x4f25a628 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x4f3157aa blk_queue_max_sectors -EXPORT_SYMBOL vmlinux 0x4f3465e2 is_bad_inode -EXPORT_SYMBOL vmlinux 0x4f59809d skb_copy -EXPORT_SYMBOL vmlinux 0x4f76da0a sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x4f8201e5 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x4faebd07 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool -EXPORT_SYMBOL vmlinux 0x502559a4 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x50268ac0 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x502dcb62 simple_release_fs -EXPORT_SYMBOL vmlinux 0x504dcb4d dma_pool_free -EXPORT_SYMBOL vmlinux 0x50838549 vfs_llseek -EXPORT_SYMBOL vmlinux 0x508ef3dd remove_wait_queue -EXPORT_SYMBOL vmlinux 0x509fc242 set_disk_ro -EXPORT_SYMBOL vmlinux 0x50ef3e1d aio_put_req -EXPORT_SYMBOL vmlinux 0x5114c521 kobject_register -EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0x51195f1b ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x5148ee2a rtc_lock -EXPORT_SYMBOL vmlinux 0x5152e605 memcmp -EXPORT_SYMBOL vmlinux 0x516480ec sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x517f655c blk_sync_queue -EXPORT_SYMBOL vmlinux 0x518eb764 per_cpu__cpu_number -EXPORT_SYMBOL vmlinux 0x51aa46bb proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x51d7a776 acpi_detach_data -EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup -EXPORT_SYMBOL vmlinux 0x51fcabeb pci_enable_bridges -EXPORT_SYMBOL vmlinux 0x520dab7d netif_carrier_on -EXPORT_SYMBOL vmlinux 0x525cd570 per_cpu__cpu_core_map -EXPORT_SYMBOL vmlinux 0x52798d37 __next_cpu -EXPORT_SYMBOL vmlinux 0x527a95cb end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x52939f03 bio_put -EXPORT_SYMBOL vmlinux 0x52953e65 dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x52a58c24 ifla_policy -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x5310fc60 proc_clear_tty -EXPORT_SYMBOL vmlinux 0x532f2924 param_get_byte -EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x53702242 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x5379df89 d_validate -EXPORT_SYMBOL vmlinux 0x5381e8df sock_no_listen -EXPORT_SYMBOL vmlinux 0x53c0767c sk_chk_filter -EXPORT_SYMBOL vmlinux 0x53c4b881 __kfifo_get -EXPORT_SYMBOL vmlinux 0x53d1174b udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x541ca954 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x54290dc9 nla_validate -EXPORT_SYMBOL vmlinux 0x54299ffc netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x542c1269 icmp_send -EXPORT_SYMBOL vmlinux 0x54324f95 ioread16_rep -EXPORT_SYMBOL vmlinux 0x546f0b06 _spin_lock_irq -EXPORT_SYMBOL vmlinux 0x549110a9 proc_symlink -EXPORT_SYMBOL vmlinux 0x54935666 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0x54ae6cda nlmsg_notify -EXPORT_SYMBOL vmlinux 0x54b0e305 proc_bus -EXPORT_SYMBOL vmlinux 0x54b8a3f9 per_cpu__x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x54cc6705 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x54e634e5 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x550be1b2 __seq_open_private -EXPORT_SYMBOL vmlinux 0x550c312a task_session_nr_ns -EXPORT_SYMBOL vmlinux 0x551e8b6e kmalloc_caches -EXPORT_SYMBOL vmlinux 0x551f1984 init_file -EXPORT_SYMBOL vmlinux 0x5527adfa filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x553abf8c xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x5568be43 lock_kernel -EXPORT_SYMBOL vmlinux 0x558fd6b7 tcp_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap -EXPORT_SYMBOL vmlinux 0x5596f19d proc_net_netfilter -EXPORT_SYMBOL vmlinux 0x55dfb81b sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x55fce628 should_remove_suid -EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x5610382c simple_fill_super -EXPORT_SYMBOL vmlinux 0x56179c5f mtrr_add -EXPORT_SYMBOL vmlinux 0x5625aeda d_prune_aliases -EXPORT_SYMBOL vmlinux 0x562ce411 task_pgrp_nr_ns -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x5639c7ab create_proc_entry -EXPORT_SYMBOL vmlinux 0x563aff49 sock_wake_async -EXPORT_SYMBOL vmlinux 0x56454cfb put_tty_driver -EXPORT_SYMBOL vmlinux 0x5677808c xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x56ba6f93 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x56d9b133 __bread -EXPORT_SYMBOL vmlinux 0x56e5e153 cpu_sysdev_class -EXPORT_SYMBOL vmlinux 0x57026749 sock_release -EXPORT_SYMBOL vmlinux 0x5710855f acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x5739acfe uts_sem -EXPORT_SYMBOL vmlinux 0x573d324f i8253_lock -EXPORT_SYMBOL vmlinux 0x5744dc03 ethtool_op_get_flags -EXPORT_SYMBOL vmlinux 0x5774e5b7 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x5795f6f2 elv_rb_add -EXPORT_SYMBOL vmlinux 0x57a58f18 dma_free_coherent -EXPORT_SYMBOL vmlinux 0x581621e8 set_device_ro -EXPORT_SYMBOL vmlinux 0x583328c3 __getblk -EXPORT_SYMBOL vmlinux 0x5833bfd6 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x5886acf3 kernel_bind -EXPORT_SYMBOL vmlinux 0x58d20689 blk_register_region -EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info -EXPORT_SYMBOL vmlinux 0x59070e1e ida_get_new_above -EXPORT_SYMBOL vmlinux 0x5913913a node_states -EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x5951dc5e keyring_search -EXPORT_SYMBOL vmlinux 0x59951dc0 nf_unregister_hook -EXPORT_SYMBOL vmlinux 0x59ab4080 cap_bset -EXPORT_SYMBOL vmlinux 0x59ba22a0 dma_alloc_coherent -EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a5f9770 dev_unicast_add -EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot -EXPORT_SYMBOL vmlinux 0x5abf43d2 dcache_readdir -EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x5aebd81d blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x5b153659 register_acpi_bus_type -EXPORT_SYMBOL vmlinux 0x5b1ceb04 key_negate_and_link -EXPORT_SYMBOL vmlinux 0x5b1fe6c8 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x5b6aea41 pci_get_bus_and_slot -EXPORT_SYMBOL vmlinux 0x5b88956d ip_xfrm_me_harder -EXPORT_SYMBOL vmlinux 0x5b9b3477 free_buffer_head -EXPORT_SYMBOL vmlinux 0x5b9da9f0 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x5ba87005 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x5bdd6edb _spin_trylock -EXPORT_SYMBOL vmlinux 0x5bf9ad7b xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x5c2ff196 __f_setown -EXPORT_SYMBOL vmlinux 0x5c4012f6 ps2_command -EXPORT_SYMBOL vmlinux 0x5c6a428a dmam_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x5c76348a dma_pool_destroy -EXPORT_SYMBOL vmlinux 0x5c8179cf blkdev_put -EXPORT_SYMBOL vmlinux 0x5c85fd9a eth_rebuild_header -EXPORT_SYMBOL vmlinux 0x5c9c7a2d __alloc_skb -EXPORT_SYMBOL vmlinux 0x5cd2178e load_nls -EXPORT_SYMBOL vmlinux 0x5d17518f schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0x5d289fde blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x5d76cc45 pci_map_rom_copy -EXPORT_SYMBOL vmlinux 0x5d7a5027 blk_complete_request -EXPORT_SYMBOL vmlinux 0x5dab0ad2 icmp_statistics -EXPORT_SYMBOL vmlinux 0x5dc351f0 bdget -EXPORT_SYMBOL vmlinux 0x5dc7d8f7 ethtool_op_set_tx_hw_csum -EXPORT_SYMBOL vmlinux 0x5dda246c dev_load -EXPORT_SYMBOL vmlinux 0x5dea1e96 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x5dfa4696 move_addr_to_kernel -EXPORT_SYMBOL vmlinux 0x5dfe8f1a unlock_kernel -EXPORT_SYMBOL vmlinux 0x5e0fbf44 unregister_exec_domain -EXPORT_SYMBOL vmlinux 0x5e479598 module_remove_driver -EXPORT_SYMBOL vmlinux 0x5e5319a1 pci_get_class -EXPORT_SYMBOL vmlinux 0x5e600e42 drop_super -EXPORT_SYMBOL vmlinux 0x5e9cf7c1 seq_path -EXPORT_SYMBOL vmlinux 0x5e9fd22b elv_rb_del -EXPORT_SYMBOL vmlinux 0x5f3a2d00 add_to_page_cache -EXPORT_SYMBOL vmlinux 0x5f4e9280 register_chrdev -EXPORT_SYMBOL vmlinux 0x5f6454c0 downgrade_write -EXPORT_SYMBOL vmlinux 0x5f89f55a genl_unregister_ops -EXPORT_SYMBOL vmlinux 0x5f92e049 subsys_create_file -EXPORT_SYMBOL vmlinux 0x5fa836e7 pci_set_master -EXPORT_SYMBOL vmlinux 0x5fc0eadb pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6015403e tcf_em_register -EXPORT_SYMBOL vmlinux 0x60253ab0 up_read -EXPORT_SYMBOL vmlinux 0x60476c2f alloc_tty_driver -EXPORT_SYMBOL vmlinux 0x606b73c4 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x608861b1 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x6089c3dc br_handle_frame_hook -EXPORT_SYMBOL vmlinux 0x6094de1e inet_put_port -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a4461c __up_wakeup -EXPORT_SYMBOL vmlinux 0x60b63697 ide_lock -EXPORT_SYMBOL vmlinux 0x60bd1694 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x60dee796 elevator_exit -EXPORT_SYMBOL vmlinux 0x60fcfa29 find_get_page -EXPORT_SYMBOL vmlinux 0x60feba6c iget_locked -EXPORT_SYMBOL vmlinux 0x61151700 mutex_trylock -EXPORT_SYMBOL vmlinux 0x61205621 vfs_follow_link -EXPORT_SYMBOL vmlinux 0x6121084f page_follow_link_light -EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap -EXPORT_SYMBOL vmlinux 0x6164aeeb kill_pid -EXPORT_SYMBOL vmlinux 0x61712a0c vfs_rename -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61f531ab sock_create_lite -EXPORT_SYMBOL vmlinux 0x61fe4724 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable -EXPORT_SYMBOL vmlinux 0x6205107b cdev_init -EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x6241fd2c acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x625acc81 __down_failed_interruptible -EXPORT_SYMBOL vmlinux 0x62614223 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x632fccac iunique -EXPORT_SYMBOL vmlinux 0x633d1d34 tcf_hash_check -EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x637d0a59 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x6390357d alloc_disk -EXPORT_SYMBOL vmlinux 0x63a7fa73 have_submounts -EXPORT_SYMBOL vmlinux 0x63d19f95 dquot_free_space -EXPORT_SYMBOL vmlinux 0x63d7f166 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x63dfe1b4 hpet_unregister -EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x6402aaff release_resource -EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x640ac349 arp_tbl -EXPORT_SYMBOL vmlinux 0x64238262 tcf_hash_release -EXPORT_SYMBOL vmlinux 0x643e8862 proc_dointvec -EXPORT_SYMBOL vmlinux 0x6451294b posix_acl_valid -EXPORT_SYMBOL vmlinux 0x6464abe3 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x646e2f26 do_munmap -EXPORT_SYMBOL vmlinux 0x6478134c ec_burst_enable -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64d3b948 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x64f516d2 sget -EXPORT_SYMBOL vmlinux 0x650128e7 br_fdb_get_hook -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name -EXPORT_SYMBOL vmlinux 0x657129fe default_hwif_mmiops -EXPORT_SYMBOL vmlinux 0x65a49e60 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x6623214f down_write -EXPORT_SYMBOL vmlinux 0x662afe6e poll_initwait -EXPORT_SYMBOL vmlinux 0x6677c439 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x667a9891 get_sb_single -EXPORT_SYMBOL vmlinux 0x667c98a4 devm_free_irq -EXPORT_SYMBOL vmlinux 0x667cecc9 acpi_os_printf -EXPORT_SYMBOL vmlinux 0x6687c96e locks_copy_lock -EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x66c3bb2b get_empty_filp -EXPORT_SYMBOL vmlinux 0x66dce5b8 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x67229cad __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x6734c4d1 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x6767af61 blk_queue_bounce -EXPORT_SYMBOL vmlinux 0x677e4969 __serio_register_port -EXPORT_SYMBOL vmlinux 0x679a54f2 init_timer -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67c476c9 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x67f36b7c interruptible_sleep_on_timeout -EXPORT_SYMBOL vmlinux 0x68167a4a blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x68502e1b per_cpu__softnet_data -EXPORT_SYMBOL vmlinux 0x686f1325 hpet_alloc -EXPORT_SYMBOL vmlinux 0x687424a9 ide_end_request -EXPORT_SYMBOL vmlinux 0x6890af15 ide_raw_taskfile -EXPORT_SYMBOL vmlinux 0x69005013 acpi_os_stall -EXPORT_SYMBOL vmlinux 0x6906aba8 input_register_handle -EXPORT_SYMBOL vmlinux 0x693d104e alloc_etherdev_mq -EXPORT_SYMBOL vmlinux 0x6989a769 vsnprintf -EXPORT_SYMBOL vmlinux 0x69927dff try_acquire_console_sem -EXPORT_SYMBOL vmlinux 0x69bdf900 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x69c53d0a cdev_add -EXPORT_SYMBOL vmlinux 0x69c8c1d5 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x69d71c13 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0df58a locks_init_lock -EXPORT_SYMBOL vmlinux 0x6a21695c sock_kmalloc -EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x6a47571d __set_personality -EXPORT_SYMBOL vmlinux 0x6a66a59e vmtruncate -EXPORT_SYMBOL vmlinux 0x6a8d62ea dcache_dir_close -EXPORT_SYMBOL vmlinux 0x6ab31c9b unregister_acpi_bus_type -EXPORT_SYMBOL vmlinux 0x6ab5a1f7 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x6aba1016 netlink_clear_multicast_users -EXPORT_SYMBOL vmlinux 0x6aba9b7f __sk_stream_mem_reclaim -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6b0a8f43 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x6b0bd1cb dentry_open -EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b33530c mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x6b340cf2 sock_map_fd -EXPORT_SYMBOL vmlinux 0x6b63258f netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x6b6fbdd5 tcf_hash_destroy -EXPORT_SYMBOL vmlinux 0x6b95785b __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x6bd0c27e sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x6bf54e8e kthread_create -EXPORT_SYMBOL vmlinux 0x6c18b668 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c229868 skb_clone -EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6cd135cd get_write_access -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cf1fd85 read_dev_sector -EXPORT_SYMBOL vmlinux 0x6d0da34c param_get_short -EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty -EXPORT_SYMBOL vmlinux 0x6d288375 radix_tree_next_hole -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2ebec2 tty_register_driver -EXPORT_SYMBOL vmlinux 0x6d3017ee sysctl_intvec -EXPORT_SYMBOL vmlinux 0x6d33adf8 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d45d4dc sk_common_release -EXPORT_SYMBOL vmlinux 0x6d5ab823 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x6d5ba542 wait_on_sync_kiocb -EXPORT_SYMBOL vmlinux 0x6d86c417 register_con_driver -EXPORT_SYMBOL vmlinux 0x6dcdbc21 inet_getname -EXPORT_SYMBOL vmlinux 0x6ded5c6e xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform -EXPORT_SYMBOL vmlinux 0x6e053533 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6e185827 _spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x6e1a4bbb udp_hash_lock -EXPORT_SYMBOL vmlinux 0x6e2b474e netdev_state_change -EXPORT_SYMBOL vmlinux 0x6e2ece60 cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x6e412f72 sysctl_pathname -EXPORT_SYMBOL vmlinux 0x6e440b58 memcpy_fromiovecend -EXPORT_SYMBOL vmlinux 0x6e4412fd rtnl_create_link -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e836b20 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea6bf97 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x6eda4034 bio_add_page -EXPORT_SYMBOL vmlinux 0x6f0d9575 __devm_release_region -EXPORT_SYMBOL vmlinux 0x6f309286 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x6f419ed4 flock_lock_file_wait -EXPORT_SYMBOL vmlinux 0x6f67d733 dev_get_flags -EXPORT_SYMBOL vmlinux 0x6f80f54c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x6faa475a cond_resched_lock -EXPORT_SYMBOL vmlinux 0x6fb0e549 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x6fc3ab28 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6ffad93d sock_no_accept -EXPORT_SYMBOL vmlinux 0x7001a017 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x700236e7 dump_fpu -EXPORT_SYMBOL vmlinux 0x7008a9b7 timespec_to_jiffies -EXPORT_SYMBOL vmlinux 0x701b9ed4 pci_select_bars -EXPORT_SYMBOL vmlinux 0x703ac75d sk_stream_error -EXPORT_SYMBOL vmlinux 0x704a083e serio_unregister_port -EXPORT_SYMBOL vmlinux 0x704e0549 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x706d19bc dst_destroy -EXPORT_SYMBOL vmlinux 0x707323f4 find_or_create_page -EXPORT_SYMBOL vmlinux 0x70ae706b __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x70b5317d tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x70c66486 ptrace_notify -EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat -EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x71326900 cad_pid -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71891145 kernel_read -EXPORT_SYMBOL vmlinux 0x718f4a02 ethtool_op_set_tso -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71fe0859 tcp_v4_md5_do_del -EXPORT_SYMBOL vmlinux 0x72270e35 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x722a0a0a _read_lock -EXPORT_SYMBOL vmlinux 0x7231400a d_invalidate -EXPORT_SYMBOL vmlinux 0x727d5f1b neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b9cba8 generic_file_aio_write_nolock -EXPORT_SYMBOL vmlinux 0x72d37ef9 vfs_mknod -EXPORT_SYMBOL vmlinux 0x731f312a neigh_lookup -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x73700145 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x73785b22 uart_resume_port -EXPORT_SYMBOL vmlinux 0x738803e6 strnlen -EXPORT_SYMBOL vmlinux 0x7389c9a8 acpi_bus_get_power -EXPORT_SYMBOL vmlinux 0x73da4427 search_binary_handler -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e6c91a dump_trace -EXPORT_SYMBOL vmlinux 0x73fce12f arch_acpi_processor_init_pdc -EXPORT_SYMBOL vmlinux 0x74019134 blk_queue_ordered -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x740c37b7 mempool_create_node -EXPORT_SYMBOL vmlinux 0x741f1f6e hpet_register -EXPORT_SYMBOL vmlinux 0x74355073 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x7440ed50 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x744854e2 try_to_release_page -EXPORT_SYMBOL vmlinux 0x74629c8a dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x7482efdc bmap -EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x74ae7ca0 d_instantiate -EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x74cc238d current_kernel_time -EXPORT_SYMBOL vmlinux 0x74d8ce7f kobject_set_name -EXPORT_SYMBOL vmlinux 0x74ffb986 tcp_poll -EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state -EXPORT_SYMBOL vmlinux 0x758f39d5 __lock_buffer -EXPORT_SYMBOL vmlinux 0x75b62f70 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x75e927ca input_unregister_handle -EXPORT_SYMBOL vmlinux 0x75f1960a end_queued_request -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0x761b236d qdisc_tree_decrease_qlen -EXPORT_SYMBOL vmlinux 0x7627c335 _spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x76430786 _spin_unlock -EXPORT_SYMBOL vmlinux 0x76450171 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x765827cb get_sb_nodev -EXPORT_SYMBOL vmlinux 0x765aae19 get_sb_bdev -EXPORT_SYMBOL vmlinux 0x766a97e5 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x7699ed00 sk_alloc -EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x774e00b1 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x77524a43 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x77b4466f vfs_get_dqblk -EXPORT_SYMBOL vmlinux 0x77c16dd9 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x782b0008 vsprintf -EXPORT_SYMBOL vmlinux 0x787880e5 init_net -EXPORT_SYMBOL vmlinux 0x7878d4b4 acpi_lock_battery_dir -EXPORT_SYMBOL vmlinux 0x78832508 kset_register -EXPORT_SYMBOL vmlinux 0x7883c028 bd_set_size -EXPORT_SYMBOL vmlinux 0x78c5e66d ide_end_drive_cmd -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x7904a9d9 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x794487ee disable_hlt -EXPORT_SYMBOL vmlinux 0x794c1398 dmi_check_system -EXPORT_SYMBOL vmlinux 0x795340bb __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x798debbc register_framebuffer -EXPORT_SYMBOL vmlinux 0x798f1892 __nla_put -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79aa05a8 match_token -EXPORT_SYMBOL vmlinux 0x79b98d2e pci_reenable_device -EXPORT_SYMBOL vmlinux 0x7a0b8560 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x7a0b902e tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x7a0c5973 generic_unplug_device -EXPORT_SYMBOL vmlinux 0x7a25a144 handle_sysrq -EXPORT_SYMBOL vmlinux 0x7a30ca4b ethtool_op_set_tx_csum -EXPORT_SYMBOL vmlinux 0x7a9731c7 pci_iounmap -EXPORT_SYMBOL vmlinux 0x7aad26b5 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x7ab7fab2 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x7ac46eb9 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7af1ea6f neigh_create -EXPORT_SYMBOL vmlinux 0x7afb54e6 flush_signals -EXPORT_SYMBOL vmlinux 0x7b04cc91 mempool_destroy -EXPORT_SYMBOL vmlinux 0x7b2a63ad write_inode_now -EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x7b69467e posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x7b9d76f4 serio_close -EXPORT_SYMBOL vmlinux 0x7ba3c215 vc_resize -EXPORT_SYMBOL vmlinux 0x7baa2f52 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x7bb9342c blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x7c22acce sock_sendmsg -EXPORT_SYMBOL vmlinux 0x7c41ed71 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x7c426c39 netdev_set_master -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c596056 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x7c5c11dc bdput -EXPORT_SYMBOL vmlinux 0x7c60d66e getname -EXPORT_SYMBOL vmlinux 0x7c9049bf prepare_to_wait -EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x7cb23f35 dma_async_client_chan_request -EXPORT_SYMBOL vmlinux 0x7cb3e880 find_lock_page -EXPORT_SYMBOL vmlinux 0x7ccd9946 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x7cce7fe7 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x7ce3484f ht_create_irq -EXPORT_SYMBOL vmlinux 0x7ce73aa4 netif_device_attach -EXPORT_SYMBOL vmlinux 0x7cfdd66c kernel_sendpage -EXPORT_SYMBOL vmlinux 0x7d01e464 misc_deregister -EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies -EXPORT_SYMBOL vmlinux 0x7d278df7 _write_lock_bh -EXPORT_SYMBOL vmlinux 0x7d2ffef1 ip_dev_find -EXPORT_SYMBOL vmlinux 0x7d35207b input_flush_device -EXPORT_SYMBOL vmlinux 0x7d65562a input_open_device -EXPORT_SYMBOL vmlinux 0x7d6bbd70 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x7d850612 utf8_mbstowcs -EXPORT_SYMBOL vmlinux 0x7dacc271 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x7daf26eb tcp_read_sock -EXPORT_SYMBOL vmlinux 0x7dc80051 simple_readpage -EXPORT_SYMBOL vmlinux 0x7dceceac capable -EXPORT_SYMBOL vmlinux 0x7ddb5a2f dmam_release_declared_memory -EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread -EXPORT_SYMBOL vmlinux 0x7ebeca93 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x7ece428c seq_open_private -EXPORT_SYMBOL vmlinux 0x7ef637b9 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x7f1ebc03 take_over_console -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f277268 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x7f7155b9 d_find_alias -EXPORT_SYMBOL vmlinux 0x7f8723bd pcie_mch_quirk -EXPORT_SYMBOL vmlinux 0x7f8d8dd4 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x7fdcc4da sk_run_filter -EXPORT_SYMBOL vmlinux 0x8015b1b7 elv_add_request -EXPORT_SYMBOL vmlinux 0x805a7aa3 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x805d74d7 blk_unplug -EXPORT_SYMBOL vmlinux 0x8063ab9c __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x8063f83d radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x806a3346 uart_match_port -EXPORT_SYMBOL vmlinux 0x8094204a wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x80c81272 set_irq_chip -EXPORT_SYMBOL vmlinux 0x80ca2713 _read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x80d02fff tty_devnum -EXPORT_SYMBOL vmlinux 0x80ff5cdb set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x8133d9ba inode_init_once -EXPORT_SYMBOL vmlinux 0x813d5acd tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x814bbf22 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x8169e70b profile_pc -EXPORT_SYMBOL vmlinux 0x818d990b fb_pan_display -EXPORT_SYMBOL vmlinux 0x819695ae call_usermodehelper_freeinfo -EXPORT_SYMBOL vmlinux 0x81a47b3b task_in_intr -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81fb2c94 tcp_child_process -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82124ead set_bh_page -EXPORT_SYMBOL vmlinux 0x8235805b memmove -EXPORT_SYMBOL vmlinux 0x82384d0b __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x8280df37 tcf_hash_search -EXPORT_SYMBOL vmlinux 0x828e80b0 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x82a12ef9 generic_commit_write -EXPORT_SYMBOL vmlinux 0x82bb8065 nla_reserve -EXPORT_SYMBOL vmlinux 0x82d2cc6a ethtool_op_get_sg -EXPORT_SYMBOL vmlinux 0x82e59756 blk_max_pfn -EXPORT_SYMBOL vmlinux 0x83015749 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x8301ce65 eth_header_parse -EXPORT_SYMBOL vmlinux 0x8350fe95 vfs_quota_on_mount -EXPORT_SYMBOL vmlinux 0x835d8ffd tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x83723427 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x83735679 seq_puts -EXPORT_SYMBOL vmlinux 0x83800bfa kref_init -EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf -EXPORT_SYMBOL vmlinux 0x83abcb7a kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x83ca08ee dma_declare_coherent_memory -EXPORT_SYMBOL vmlinux 0x83cbc699 mutex_lock -EXPORT_SYMBOL vmlinux 0x83cfa3c2 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x83e84bbe __mod_timer -EXPORT_SYMBOL vmlinux 0x8400738b sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x84374146 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x847b9211 __kfifo_put -EXPORT_SYMBOL vmlinux 0x84990d3c pci_get_device_reverse -EXPORT_SYMBOL vmlinux 0x84a714ae bio_clone -EXPORT_SYMBOL vmlinux 0x84b87f11 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x84bb14bd devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x84daabab empty_zero_page -EXPORT_SYMBOL vmlinux 0x852abecf __request_region -EXPORT_SYMBOL vmlinux 0x85402f49 __any_online_cpu -EXPORT_SYMBOL vmlinux 0x856f0957 register_qdisc -EXPORT_SYMBOL vmlinux 0x85832e5c pci_find_present -EXPORT_SYMBOL vmlinux 0x85902f79 rtattr_strlcpy -EXPORT_SYMBOL vmlinux 0x859204af sscanf -EXPORT_SYMBOL vmlinux 0x85a0c5f0 sock_create -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e7deb2 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x860150f2 xfrm_nl -EXPORT_SYMBOL vmlinux 0x86034cf8 dq_data_lock -EXPORT_SYMBOL vmlinux 0x86073620 pci_enable_device -EXPORT_SYMBOL vmlinux 0x863b55e0 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x863cb91a utf8_wcstombs -EXPORT_SYMBOL vmlinux 0x8659f63b mempool_create -EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86add3b1 blk_queue_max_phys_segments -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86ff26c8 __lookup_hash -EXPORT_SYMBOL vmlinux 0x871dd9bc xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x871ddb75 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x871fb721 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x8720d2b5 unregister_con_driver -EXPORT_SYMBOL vmlinux 0x8724c957 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x87422e0c sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x874aea72 acpi_os_signal -EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write -EXPORT_SYMBOL vmlinux 0x8774f443 qdisc_unlock_tree -EXPORT_SYMBOL vmlinux 0x877b591a pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x8785725d param_set_charp -EXPORT_SYMBOL vmlinux 0x879da544 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x879e55f3 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x87b85eef xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate -EXPORT_SYMBOL vmlinux 0x881bb3fd bd_release -EXPORT_SYMBOL vmlinux 0x8825678b elevator_init -EXPORT_SYMBOL vmlinux 0x882a1aa0 ilookup5 -EXPORT_SYMBOL vmlinux 0x88640159 _read_unlock_bh -EXPORT_SYMBOL vmlinux 0x886483c7 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x88dd60e5 d_delete -EXPORT_SYMBOL vmlinux 0x88fcca17 file_update_time -EXPORT_SYMBOL vmlinux 0x88fcf019 secpath_dup -EXPORT_SYMBOL vmlinux 0x893aeeff per_cpu__cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x893fbeba tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x89479bba blk_free_tags -EXPORT_SYMBOL vmlinux 0x897473df mktime -EXPORT_SYMBOL vmlinux 0x899137e1 find_inode_number -EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret -EXPORT_SYMBOL vmlinux 0x89da5629 proc_dostring -EXPORT_SYMBOL vmlinux 0x8a2a4dc6 generic_readlink -EXPORT_SYMBOL vmlinux 0x8a52d0ea pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x8a654820 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x8a6c3f79 inet_listen -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80b4f9 skb_gso_segment -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aad4d3c lock_super -EXPORT_SYMBOL vmlinux 0x8aadd71f page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x8ab38725 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x8ad44112 follow_down -EXPORT_SYMBOL vmlinux 0x8ad63268 put_disk -EXPORT_SYMBOL vmlinux 0x8aef7a67 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x8b1439f5 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll -EXPORT_SYMBOL vmlinux 0x8b603409 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b633492 filp_close -EXPORT_SYMBOL vmlinux 0x8bc534cc pci_disable_device -EXPORT_SYMBOL vmlinux 0x8c1bcfc8 cdev_alloc -EXPORT_SYMBOL vmlinux 0x8c1fc35f bd_claim -EXPORT_SYMBOL vmlinux 0x8c4123d0 bit_waitqueue -EXPORT_SYMBOL vmlinux 0x8c581ab6 generic_osync_inode -EXPORT_SYMBOL vmlinux 0x8c6bd064 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x8c74823c security_inode_init_security -EXPORT_SYMBOL vmlinux 0x8c815a8c create_empty_buffers -EXPORT_SYMBOL vmlinux 0x8c8446e7 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x8ca99a04 audit_log -EXPORT_SYMBOL vmlinux 0x8cb31221 tcp_unhash -EXPORT_SYMBOL vmlinux 0x8cb59aa0 vfs_create -EXPORT_SYMBOL vmlinux 0x8ce6ceb9 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x8d152bfb inode_get_bytes -EXPORT_SYMBOL vmlinux 0x8d3894f2 _ctype -EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 -EXPORT_SYMBOL vmlinux 0x8d753c1b xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x8d7cad37 kmap -EXPORT_SYMBOL vmlinux 0x8d88ab3c unlock_rename -EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x8d954c8c __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x8da05e52 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x8da392e2 sysctl_data -EXPORT_SYMBOL vmlinux 0x8dac785a __xfrm_lookup -EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state -EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x8e0a22fa ide_set_handler -EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x8e2d6512 serio_open -EXPORT_SYMBOL vmlinux 0x8e4df7eb nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x8e725985 nf_log_unregister_pf -EXPORT_SYMBOL vmlinux 0x8e83c88f lookup_one_len -EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc -EXPORT_SYMBOL vmlinux 0x8e9a0c68 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x8eb4fb26 tcp_v4_calc_md5_hash -EXPORT_SYMBOL vmlinux 0x8ec69990 pci_enable_device_bars -EXPORT_SYMBOL vmlinux 0x8ef19d71 ethtool_op_set_flags -EXPORT_SYMBOL vmlinux 0x8f01fc47 sock_create_kern -EXPORT_SYMBOL vmlinux 0x8f6b7950 set_irq_data -EXPORT_SYMBOL vmlinux 0x8f8ca728 qdisc_reset -EXPORT_SYMBOL vmlinux 0x8fa0bd13 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x8fac8341 register_filesystem -EXPORT_SYMBOL vmlinux 0x8fc2d78d inet_shutdown -EXPORT_SYMBOL vmlinux 0x90035333 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x9007f15d init_buffer -EXPORT_SYMBOL vmlinux 0x904e7188 pci_set_dma_mask -EXPORT_SYMBOL vmlinux 0x906c97c2 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x90809e4b send_sig_info -EXPORT_SYMBOL vmlinux 0x908aa9b2 iowrite32 -EXPORT_SYMBOL vmlinux 0x90a943ba nmi_active -EXPORT_SYMBOL vmlinux 0x90bb11c6 ps2_schedule_command -EXPORT_SYMBOL vmlinux 0x90bbceca __page_symlink -EXPORT_SYMBOL vmlinux 0x90db8599 generic_file_open -EXPORT_SYMBOL vmlinux 0x91322be5 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x9135ec6e ether_setup -EXPORT_SYMBOL vmlinux 0x9144a8e2 ec_burst_disable -EXPORT_SYMBOL vmlinux 0x914fcc85 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x9156ad65 may_umount -EXPORT_SYMBOL vmlinux 0x915fd02b tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x91bc546a dev_mc_sync -EXPORT_SYMBOL vmlinux 0x91ca8959 acpi_get_register -EXPORT_SYMBOL vmlinux 0x91d6536d __mutex_init -EXPORT_SYMBOL vmlinux 0x91f85a79 pci_find_capability -EXPORT_SYMBOL vmlinux 0x920c49ab rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x928bef8c block_invalidatepage -EXPORT_SYMBOL vmlinux 0x92aed3f8 generic_writepages -EXPORT_SYMBOL vmlinux 0x92bbf9d7 ipv4_specific -EXPORT_SYMBOL vmlinux 0x92cae40e neigh_for_each -EXPORT_SYMBOL vmlinux 0x92d1a32e sock_no_getname -EXPORT_SYMBOL vmlinux 0x92e6f3bb dma_release_declared_memory -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x932da67e kill_proc -EXPORT_SYMBOL vmlinux 0x934c576c cpu_present_map -EXPORT_SYMBOL vmlinux 0x93590a1d generate_resume_trace -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93c419a2 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x93c69acf param_set_byte -EXPORT_SYMBOL vmlinux 0x947b4c11 console_stop -EXPORT_SYMBOL vmlinux 0x949335b7 interruptible_sleep_on -EXPORT_SYMBOL vmlinux 0x94b6864e user_revoke -EXPORT_SYMBOL vmlinux 0x94c8f6a4 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x9504ec64 idr_get_new -EXPORT_SYMBOL vmlinux 0x95263888 vfs_statfs -EXPORT_SYMBOL vmlinux 0x9542132f netlink_broadcast -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954ce210 set_trace_device -EXPORT_SYMBOL vmlinux 0x958cee7e fb_validate_mode -EXPORT_SYMBOL vmlinux 0x9595af9a pcim_pin_device -EXPORT_SYMBOL vmlinux 0x95a86347 get_fs_type -EXPORT_SYMBOL vmlinux 0x95cc2139 __PAGE_KERNEL -EXPORT_SYMBOL vmlinux 0x95f638d5 posix_acl_chmod_masq -EXPORT_SYMBOL vmlinux 0x95fde4e4 acpi_os_wait_semaphore -EXPORT_SYMBOL vmlinux 0x9603f481 tty_name -EXPORT_SYMBOL vmlinux 0x9633d820 inet_accept -EXPORT_SYMBOL vmlinux 0x96a72068 read_cache_pages -EXPORT_SYMBOL vmlinux 0x96afc22e gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x96b27088 __down_failed -EXPORT_SYMBOL vmlinux 0x96bda9a0 __xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x96d16d58 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x96eec166 module_refcount -EXPORT_SYMBOL vmlinux 0x96f929e9 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x972c9194 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x975f8b3e ida_remove -EXPORT_SYMBOL vmlinux 0x976baf4f nf_log_packet -EXPORT_SYMBOL vmlinux 0x977ada7d kick_iocb -EXPORT_SYMBOL vmlinux 0x97832b0b vfs_permission -EXPORT_SYMBOL vmlinux 0x979611a2 __napi_schedule -EXPORT_SYMBOL vmlinux 0x97a552dd mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x97f36413 qdisc_lock_tree -EXPORT_SYMBOL vmlinux 0x9803a27b d_move -EXPORT_SYMBOL vmlinux 0x981026f6 km_report -EXPORT_SYMBOL vmlinux 0x9810beb0 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x986d0edb pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x988acb0e neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x98adfde2 request_module -EXPORT_SYMBOL vmlinux 0x98b1f5e8 del_timer -EXPORT_SYMBOL vmlinux 0x98b25bd1 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x98b5af00 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x98ccba9b tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x98ed3968 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x99052a84 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x9941ccb8 free_pages -EXPORT_SYMBOL vmlinux 0x998a4145 kobject_unregister -EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x99aadb21 param_get_ulong -EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd -EXPORT_SYMBOL vmlinux 0x99c3c0b0 vfs_fstat -EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x99ea12ce panic_blink -EXPORT_SYMBOL vmlinux 0x9a063ff0 kernel_connect -EXPORT_SYMBOL vmlinux 0x9a1b0ce0 tcf_hash_create -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a62024b inet_frag_evictor -EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock -EXPORT_SYMBOL vmlinux 0x9ab49185 nf_reinject -EXPORT_SYMBOL vmlinux 0x9ad5de6b __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x9ae8ea00 unregister_key_type -EXPORT_SYMBOL vmlinux 0x9b05ea5c scsi_command_size -EXPORT_SYMBOL vmlinux 0x9b460afb skb_dequeue -EXPORT_SYMBOL vmlinux 0x9b49299c vfs_rmdir -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b718427 _write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x9b77e859 no_llseek -EXPORT_SYMBOL vmlinux 0x9b861cbd acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x9b90f59e linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split -EXPORT_SYMBOL vmlinux 0x9bc9ae02 lock_may_write -EXPORT_SYMBOL vmlinux 0x9bd3741b pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x9bda5911 nla_put -EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid -EXPORT_SYMBOL vmlinux 0x9c19312c dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x9c45cddb dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x9c65a307 fasync_helper -EXPORT_SYMBOL vmlinux 0x9c7077bd enable_hlt -EXPORT_SYMBOL vmlinux 0x9c7725b4 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x9c8184b5 pci_save_state -EXPORT_SYMBOL vmlinux 0x9c94e6af sync_page_range -EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0x9cd6c79f pci_find_device -EXPORT_SYMBOL vmlinux 0x9ceb163c memcpy_toiovec -EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable -EXPORT_SYMBOL vmlinux 0x9d43755c request_resource -EXPORT_SYMBOL vmlinux 0x9d806173 make_EII_client -EXPORT_SYMBOL vmlinux 0x9d95898d filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x9da6ea0b proc_root_driver -EXPORT_SYMBOL vmlinux 0x9dddbbe2 xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x9de6947b skb_insert -EXPORT_SYMBOL vmlinux 0x9df0542a idr_remove -EXPORT_SYMBOL vmlinux 0x9df26fdd dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x9df6e76f pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x9e2929ae dev_alloc_name -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9ea86fd9 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x9eac042a __ioremap -EXPORT_SYMBOL vmlinux 0x9ed0095c pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x9ed685ee iov_iter_advance -EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk -EXPORT_SYMBOL vmlinux 0x9ef749e2 unregister_chrdev -EXPORT_SYMBOL vmlinux 0x9f00b126 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x9f100139 jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or -EXPORT_SYMBOL vmlinux 0x9f33d5b7 tcf_register_action -EXPORT_SYMBOL vmlinux 0x9f39b583 dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x9f440d98 drive_is_ready -EXPORT_SYMBOL vmlinux 0x9f583aa0 do_sync_read -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fb3dd30 memcpy_fromiovec -EXPORT_SYMBOL vmlinux 0x9fbebdb9 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x9fc921bb vsscanf -EXPORT_SYMBOL vmlinux 0x9fdf9e5e nf_getsockopt -EXPORT_SYMBOL vmlinux 0x9fe41076 pci_find_bus -EXPORT_SYMBOL vmlinux 0x9fedacc5 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xa01093e6 current_fs_time -EXPORT_SYMBOL vmlinux 0xa01e8ff1 read_cache_page_async -EXPORT_SYMBOL vmlinux 0xa0350991 _write_unlock_irq -EXPORT_SYMBOL vmlinux 0xa03523d5 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xa03d6a57 __get_user_4 -EXPORT_SYMBOL vmlinux 0xa051fa11 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xa0610b66 netif_device_detach -EXPORT_SYMBOL vmlinux 0xa076eafa clear_inode -EXPORT_SYMBOL vmlinux 0xa07bbfd7 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xa081102c pnp_register_driver -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0df529c cfb_fillrect -EXPORT_SYMBOL vmlinux 0xa0e84682 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xa10611e4 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10c47bd blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xa117d06c ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa13798f8 printk_ratelimit -EXPORT_SYMBOL vmlinux 0xa15d2462 d_lookup -EXPORT_SYMBOL vmlinux 0xa18f3af4 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xa1a6414c iowrite32be -EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode -EXPORT_SYMBOL vmlinux 0xa1da1111 generic_file_splice_write -EXPORT_SYMBOL vmlinux 0xa1da39ed __reqsk_queue_destroy -EXPORT_SYMBOL vmlinux 0xa1dc8a62 inet_addr_type -EXPORT_SYMBOL vmlinux 0xa1e67007 input_set_capability -EXPORT_SYMBOL vmlinux 0xa1f4fbc3 d_alloc_name -EXPORT_SYMBOL vmlinux 0xa1fd85b3 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xa20174d8 ip_route_output_key -EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn -EXPORT_SYMBOL vmlinux 0xa20d4e75 dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xa2268b59 mutex_unlock -EXPORT_SYMBOL vmlinux 0xa261528e send_sig -EXPORT_SYMBOL vmlinux 0xa28ee28e d_instantiate_unique -EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret -EXPORT_SYMBOL vmlinux 0xa2c23650 per_cpu__cpu_info -EXPORT_SYMBOL vmlinux 0xa308b67b kmem_cache_create -EXPORT_SYMBOL vmlinux 0xa329f07e register_shrinker -EXPORT_SYMBOL vmlinux 0xa3424439 tty_mutex -EXPORT_SYMBOL vmlinux 0xa34f1ef5 crc32_le -EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config -EXPORT_SYMBOL vmlinux 0xa395a772 kfifo_init -EXPORT_SYMBOL vmlinux 0xa3bbcd80 acpi_set_gpe_type -EXPORT_SYMBOL vmlinux 0xa3fa9b82 ide_do_drive_cmd -EXPORT_SYMBOL vmlinux 0xa41df6a6 load_nls_default -EXPORT_SYMBOL vmlinux 0xa42c8ecb pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xa42cf911 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xa44072fc posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xa46dc984 _spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xa49c1fdf end_page_writeback -EXPORT_SYMBOL vmlinux 0xa4abb83c cpu_callout_map -EXPORT_SYMBOL vmlinux 0xa4e580f2 bio_get_nr_vecs -EXPORT_SYMBOL vmlinux 0xa4f6f749 d_namespace_path -EXPORT_SYMBOL vmlinux 0xa50f8bf0 ide_spin_wait_hwgroup -EXPORT_SYMBOL vmlinux 0xa50f9d46 ide_wait_stat -EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP -EXPORT_SYMBOL vmlinux 0xa51f42f7 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xa5423cc4 param_get_int -EXPORT_SYMBOL vmlinux 0xa5693df7 posix_acl_clone -EXPORT_SYMBOL vmlinux 0xa57f0a13 bioset_free -EXPORT_SYMBOL vmlinux 0xa58b6804 nla_parse -EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes -EXPORT_SYMBOL vmlinux 0xa59c0666 acpi_strict -EXPORT_SYMBOL vmlinux 0xa5cb1e96 generic_file_aio_read -EXPORT_SYMBOL vmlinux 0xa5da0abd acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0xa60d60f5 invalidate_partition -EXPORT_SYMBOL vmlinux 0xa61362ed tc_classify_compat -EXPORT_SYMBOL vmlinux 0xa652be67 register_sysrq_key -EXPORT_SYMBOL vmlinux 0xa68124fa hweight8 -EXPORT_SYMBOL vmlinux 0xa6814433 groups_free -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6da971f release_sock -EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa6f29876 __user_walk -EXPORT_SYMBOL vmlinux 0xa6f5aa98 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa7278834 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xa74dee90 br_fdb_put_hook -EXPORT_SYMBOL vmlinux 0xa7502f48 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0xa7591816 write_one_page -EXPORT_SYMBOL vmlinux 0xa770b803 kblockd_flush_work -EXPORT_SYMBOL vmlinux 0xa78bd44f skb_queue_purge -EXPORT_SYMBOL vmlinux 0xa7b9dc38 dev_mc_delete -EXPORT_SYMBOL vmlinux 0xa7c35c6b getnstimeofday -EXPORT_SYMBOL vmlinux 0xa7cbbe73 boot_tvec_bases -EXPORT_SYMBOL vmlinux 0xa7ce8a90 fget -EXPORT_SYMBOL vmlinux 0xa7e1b46c gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa80ca6a6 task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xa82f35de unlock_new_inode -EXPORT_SYMBOL vmlinux 0xa86df4c9 pnp_init_resource_table -EXPORT_SYMBOL vmlinux 0xa8980774 unregister_console -EXPORT_SYMBOL vmlinux 0xa8a87ba1 put_files_struct -EXPORT_SYMBOL vmlinux 0xa8a8a1cf proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xa8cb599f tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xa8f661fb dev_unicast_delete -EXPORT_SYMBOL vmlinux 0xa8fe62ab ethtool_op_get_tx_csum -EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa925899a param_set_bool -EXPORT_SYMBOL vmlinux 0xa92ca423 register_console -EXPORT_SYMBOL vmlinux 0xa94b8fcd _write_trylock -EXPORT_SYMBOL vmlinux 0xa984725e tcf_hash_lookup -EXPORT_SYMBOL vmlinux 0xa9be76e8 clocksource_register -EXPORT_SYMBOL vmlinux 0xaa0abfc2 skb_find_text -EXPORT_SYMBOL vmlinux 0xaa1a708b blk_run_queue -EXPORT_SYMBOL vmlinux 0xaa3f4b9a simple_sync_file -EXPORT_SYMBOL vmlinux 0xaa5d9c33 audit_log_start -EXPORT_SYMBOL vmlinux 0xaa84a8ae acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0xaade6169 vfs_getattr -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab1d8889 neigh_compat_output -EXPORT_SYMBOL vmlinux 0xab22f249 seq_lseek -EXPORT_SYMBOL vmlinux 0xab471003 param_array_set -EXPORT_SYMBOL vmlinux 0xab4831de rtnl_unicast -EXPORT_SYMBOL vmlinux 0xab5470b7 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xabbb6db8 netpoll_poll -EXPORT_SYMBOL vmlinux 0xabe77484 securebits -EXPORT_SYMBOL vmlinux 0xabe99a1a __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xac18d9cf blk_get_request -EXPORT_SYMBOL vmlinux 0xac3a838d key_validate -EXPORT_SYMBOL vmlinux 0xac3b3cee __bitmap_and -EXPORT_SYMBOL vmlinux 0xac58ea5e acpi_unload_table_id -EXPORT_SYMBOL vmlinux 0xac77f914 f_setown -EXPORT_SYMBOL vmlinux 0xac8bdd35 udp_get_port -EXPORT_SYMBOL vmlinux 0xacbee05f ip_route_input -EXPORT_SYMBOL vmlinux 0xacc0dbfc acpi_get_table -EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton -EXPORT_SYMBOL vmlinux 0xacf3d9f3 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad13c689 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xad153bee netdev_features_change -EXPORT_SYMBOL vmlinux 0xad2f7db5 fsync_bdev -EXPORT_SYMBOL vmlinux 0xad54ccb4 forbid_dac -EXPORT_SYMBOL vmlinux 0xad5f6180 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0xadb7a023 complete -EXPORT_SYMBOL vmlinux 0xadc67c9f path_lookup -EXPORT_SYMBOL vmlinux 0xadf9fd41 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xae18b6e4 bdi_init -EXPORT_SYMBOL vmlinux 0xae196a75 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xae653071 dev_driver_string -EXPORT_SYMBOL vmlinux 0xae776d86 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xae9f2c1c tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xaec43940 pci_remove_rom -EXPORT_SYMBOL vmlinux 0xaec4759f vprintk -EXPORT_SYMBOL vmlinux 0xaf5d1b15 fb_set_var -EXPORT_SYMBOL vmlinux 0xaf7e6801 smp_call_function_single -EXPORT_SYMBOL vmlinux 0xaf977c24 generic_write_end -EXPORT_SYMBOL vmlinux 0xafd09373 get_user_pages -EXPORT_SYMBOL vmlinux 0xaff2bf06 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xafff6103 _write_lock -EXPORT_SYMBOL vmlinux 0xb01063f7 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xb044f6bf tcp_shutdown -EXPORT_SYMBOL vmlinux 0xb0756b2b register_nls -EXPORT_SYMBOL vmlinux 0xb077b0cb kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xb077ef32 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0xb07dfb3d acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0xb0a6d34a iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xb0b7c8a3 vc_cons -EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e3885b lock_rename -EXPORT_SYMBOL vmlinux 0xb0ef0a68 kill_block_super -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb1544237 bdevname -EXPORT_SYMBOL vmlinux 0xb15afeff unregister_filesystem -EXPORT_SYMBOL vmlinux 0xb18f3f06 ide_xfer_verbose -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cb1056 _spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xb1d61860 seq_open -EXPORT_SYMBOL vmlinux 0xb205c7da scm_fp_dup -EXPORT_SYMBOL vmlinux 0xb2156548 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xb21dbc70 brioctl_set -EXPORT_SYMBOL vmlinux 0xb26a4ff0 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xb2780f36 mempool_alloc -EXPORT_SYMBOL vmlinux 0xb27acbf5 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xb28431ad udp_poll -EXPORT_SYMBOL vmlinux 0xb2a9e070 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xb2be638a dma_chan_cleanup -EXPORT_SYMBOL vmlinux 0xb2cd825c dma_mark_declared_memory_occupied -EXPORT_SYMBOL vmlinux 0xb2dc47ca blk_put_queue -EXPORT_SYMBOL vmlinux 0xb2e2c57a udplite_get_port -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb31c9375 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xb32242d3 dma_spin_lock -EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xb33e945b pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xb34d4c2e acpi_terminate -EXPORT_SYMBOL vmlinux 0xb376d79d radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xb39026e4 mempool_resize -EXPORT_SYMBOL vmlinux 0xb39b0bae dcache_dir_open -EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo -EXPORT_SYMBOL vmlinux 0xb3a3a05d put_page -EXPORT_SYMBOL vmlinux 0xb3a81ac8 kernel_listen -EXPORT_SYMBOL vmlinux 0xb3a90ddf end_that_request_chunk -EXPORT_SYMBOL vmlinux 0xb3caf8c7 vfs_get_dqinfo -EXPORT_SYMBOL vmlinux 0xb3ceeb97 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0xb3d724b5 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xb407b205 ioport_resource -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb429410a posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0xb43db29c __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xb45578b8 memscan -EXPORT_SYMBOL vmlinux 0xb4867561 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xb4a6a543 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xb4e198a9 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xb559b4a5 do_sync_write -EXPORT_SYMBOL vmlinux 0xb59bd8e2 tty_check_change -EXPORT_SYMBOL vmlinux 0xb59ddd3a posix_lock_file -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5b9d827 kfifo_alloc -EXPORT_SYMBOL vmlinux 0xb5d52c27 ec_transaction -EXPORT_SYMBOL vmlinux 0xb60e34a8 nla_memcpy -EXPORT_SYMBOL vmlinux 0xb61cae56 request_key -EXPORT_SYMBOL vmlinux 0xb65250b7 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xb66c8259 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67a6e9f tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xb6d28c3b pci_do_scan_bus -EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy -EXPORT_SYMBOL vmlinux 0xb714a981 console_print -EXPORT_SYMBOL vmlinux 0xb735cb12 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xb740b1d9 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xb745b14d block_prepare_write -EXPORT_SYMBOL vmlinux 0xb7555f12 timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event -EXPORT_SYMBOL vmlinux 0xb77385d8 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xb78882d2 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xb7969e10 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xb79b81c6 dquot_initialize -EXPORT_SYMBOL vmlinux 0xb7a8aa6b set_blocksize -EXPORT_SYMBOL vmlinux 0xb7b156a9 netlink_ack -EXPORT_SYMBOL vmlinux 0xb7b189b7 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xb7b61546 crc32_be -EXPORT_SYMBOL vmlinux 0xb7d33ebe __breadahead -EXPORT_SYMBOL vmlinux 0xb7e1170f nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xb7e61423 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xb852314c percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xb85b2bac vm_stat -EXPORT_SYMBOL vmlinux 0xb865009c wake_up_process -EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 -EXPORT_SYMBOL vmlinux 0xb87a13f0 get_super -EXPORT_SYMBOL vmlinux 0xb87ce61d simple_prepare_write -EXPORT_SYMBOL vmlinux 0xb886b164 generic_fillattr -EXPORT_SYMBOL vmlinux 0xb896b2dc sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 -EXPORT_SYMBOL vmlinux 0xb89bed92 vfs_set_dqinfo -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb914f8ed nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xb98330c6 tcf_destroy_chain -EXPORT_SYMBOL vmlinux 0xb9ae268d lock_may_read -EXPORT_SYMBOL vmlinux 0xb9bd701b kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xb9c74bf1 gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xb9db34cd inetdev_by_index -EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba62b81c xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xbaadbd11 __wake_up -EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal -EXPORT_SYMBOL vmlinux 0xbb3d6158 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xbb9bc30f inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xbbb091e7 ide_init_drive_cmd -EXPORT_SYMBOL vmlinux 0xbbbcf727 kobject_add -EXPORT_SYMBOL vmlinux 0xbbc8e804 param_set_ushort -EXPORT_SYMBOL vmlinux 0xbbdf08fe qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xbbf1bc84 skb_truesize_bug -EXPORT_SYMBOL vmlinux 0xbc449819 key_revoke -EXPORT_SYMBOL vmlinux 0xbc85006b redraw_screen -EXPORT_SYMBOL vmlinux 0xbc99f3a5 nonseekable_open -EXPORT_SYMBOL vmlinux 0xbca09dc7 idr_pre_get -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcfcec94 elv_dequeue_request -EXPORT_SYMBOL vmlinux 0xbd004af6 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xbd04a23c reqsk_queue_alloc -EXPORT_SYMBOL vmlinux 0xbd09aff4 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xbd0e741e proc_root -EXPORT_SYMBOL vmlinux 0xbd151500 netlink_unicast -EXPORT_SYMBOL vmlinux 0xbd4aa671 names_cachep -EXPORT_SYMBOL vmlinux 0xbd63ab01 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xbdb973e0 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xbdeaf41a percpu_counter_init -EXPORT_SYMBOL vmlinux 0xbdff17d7 input_inject_event -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe18605c tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0xbe1b56f8 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xbe31b14d eth_type_trans -EXPORT_SYMBOL vmlinux 0xbe5d40a4 sock_rfree -EXPORT_SYMBOL vmlinux 0xbe6a2b99 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xbeb66707 inet_frag_find -EXPORT_SYMBOL vmlinux 0xbedd4ade cpu_online_map -EXPORT_SYMBOL vmlinux 0xbeedc3d4 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf17700c tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xbf2dfc4b sk_stop_timer -EXPORT_SYMBOL vmlinux 0xbf443f84 serio_reconnect -EXPORT_SYMBOL vmlinux 0xbf4f58f5 force_sig -EXPORT_SYMBOL vmlinux 0xbf4fc89d __inode_dir_notify -EXPORT_SYMBOL vmlinux 0xbf75b03c tcp_tso_segment -EXPORT_SYMBOL vmlinux 0xbf878a92 km_state_notify -EXPORT_SYMBOL vmlinux 0xbfc296dc input_unregister_handler -EXPORT_SYMBOL vmlinux 0xbfc3ef06 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user -EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero -EXPORT_SYMBOL vmlinux 0xc02874d3 misc_register -EXPORT_SYMBOL vmlinux 0xc03cf1f6 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xc045ad4e timespec_trunc -EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase -EXPORT_SYMBOL vmlinux 0xc0717d72 pci_get_device -EXPORT_SYMBOL vmlinux 0xc089ddbb simple_link -EXPORT_SYMBOL vmlinux 0xc0bebdfb pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xc0e225d3 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xc0f597b4 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xc0fa04aa _write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xc10369bd eth_header_cache -EXPORT_SYMBOL vmlinux 0xc10790b3 seq_release_private -EXPORT_SYMBOL vmlinux 0xc1094d2e skb_queue_tail -EXPORT_SYMBOL vmlinux 0xc12689ae xfrm_init_pmtu -EXPORT_SYMBOL vmlinux 0xc16d6d9f register_sysctl_table -EXPORT_SYMBOL vmlinux 0xc1a96b8d serial8250_register_port -EXPORT_SYMBOL vmlinux 0xc1a9af8c generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xc1ac852d dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xc1ca14a4 generic_file_aio_write -EXPORT_SYMBOL vmlinux 0xc2054a6a tcf_hash_new_index -EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal -EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll -EXPORT_SYMBOL vmlinux 0xc2ab892a __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc -EXPORT_SYMBOL vmlinux 0xc2dfc49b tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f9c0aa splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xc332b701 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0xc34a1820 blk_queue_max_hw_segments -EXPORT_SYMBOL vmlinux 0xc359ec0d rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0xc36934b0 blk_remove_plug -EXPORT_SYMBOL vmlinux 0xc385b6ca blk_init_tags -EXPORT_SYMBOL vmlinux 0xc3a7f807 bio_free -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p -EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr -EXPORT_SYMBOL vmlinux 0xc420d56a pci_disable_msix -EXPORT_SYMBOL vmlinux 0xc43a8cb4 __nla_reserve -EXPORT_SYMBOL vmlinux 0xc43ddd30 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xc46ce174 key_alloc -EXPORT_SYMBOL vmlinux 0xc46e8de1 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xc46f716a neigh_destroy -EXPORT_SYMBOL vmlinux 0xc48623d8 blk_plug_device -EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup -EXPORT_SYMBOL vmlinux 0xc4b414ff inet_frags_fini -EXPORT_SYMBOL vmlinux 0xc5084866 fb_show_logo -EXPORT_SYMBOL vmlinux 0xc52771d4 netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xc529623a __find_get_block -EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0xc5511bb6 vfs_readdir -EXPORT_SYMBOL vmlinux 0xc553f147 kill_fasync -EXPORT_SYMBOL vmlinux 0xc5c3521e read_cache_page -EXPORT_SYMBOL vmlinux 0xc5d23093 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xc6219248 generic_make_request -EXPORT_SYMBOL vmlinux 0xc63575f3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xc64796bc boot_cpu_data -EXPORT_SYMBOL vmlinux 0xc65055ec get_io_context -EXPORT_SYMBOL vmlinux 0xc65c8a38 neigh_table_init -EXPORT_SYMBOL vmlinux 0xc6624495 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0xc67dc6d3 pci_release_region -EXPORT_SYMBOL vmlinux 0xc68eaff7 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xc69b35b6 generic_write_checks -EXPORT_SYMBOL vmlinux 0xc6a4a7dc pci_get_subsys -EXPORT_SYMBOL vmlinux 0xc6a8a988 destroy_EII_client -EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xc6d4a0fd tty_get_baud_rate -EXPORT_SYMBOL vmlinux 0xc6f87f33 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xc71712f0 __pagevec_release -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc77a81ce pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xc788f012 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xc7920047 pci_match_id -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc83c517a ip_nat_decode_session -EXPORT_SYMBOL vmlinux 0xc83d1635 pci_release_regions -EXPORT_SYMBOL vmlinux 0xc844ae8b truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xc88ef003 d_genocide -EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xc8be7b15 _spin_lock -EXPORT_SYMBOL vmlinux 0xc8ca3e25 acpi_get_child -EXPORT_SYMBOL vmlinux 0xc9132379 subsystem_register -EXPORT_SYMBOL vmlinux 0xc9318626 simple_set_mnt -EXPORT_SYMBOL vmlinux 0xc966d31c div64_64 -EXPORT_SYMBOL vmlinux 0xc97eec87 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xc998d641 icmp_err_convert -EXPORT_SYMBOL vmlinux 0xc9ab2eef acpi_os_wait_events_complete -EXPORT_SYMBOL vmlinux 0xc9b27289 rtc_control -EXPORT_SYMBOL vmlinux 0xc9dbabed add_disk_randomness -EXPORT_SYMBOL vmlinux 0xc9e552b6 sync_blockdev -EXPORT_SYMBOL vmlinux 0xc9fd878f acpi_ut_exception -EXPORT_SYMBOL vmlinux 0xca04843d __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xca12ddc0 idr_init -EXPORT_SYMBOL vmlinux 0xca6004dc pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xca6c95f8 acpi_get_name -EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xcae43922 kmem_cache_name -EXPORT_SYMBOL vmlinux 0xcaf22322 km_state_expired -EXPORT_SYMBOL vmlinux 0xcb091543 devm_ioremap -EXPORT_SYMBOL vmlinux 0xcb0cfe74 blk_put_request -EXPORT_SYMBOL vmlinux 0xcb19f6d6 ip_statistics -EXPORT_SYMBOL vmlinux 0xcb32da10 param_set_int -EXPORT_SYMBOL vmlinux 0xcb32f4b9 simple_unlink -EXPORT_SYMBOL vmlinux 0xcb51d0fd vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0xcb5b4857 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xcb6beb40 hweight32 -EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb83f112 acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xcba57128 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xcbd47198 pci_restore_state -EXPORT_SYMBOL vmlinux 0xcbda5a08 _read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcbfd6ade __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client -EXPORT_SYMBOL vmlinux 0xcc3db194 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0xcc983cae _write_lock_irq -EXPORT_SYMBOL vmlinux 0xcc9a02e3 blk_requeue_request -EXPORT_SYMBOL vmlinux 0xcca4fbb7 kill_litter_super -EXPORT_SYMBOL vmlinux 0xccb3df79 block_sync_page -EXPORT_SYMBOL vmlinux 0xccedabba ethtool_op_get_tso -EXPORT_SYMBOL vmlinux 0xcde3f144 netpoll_setup -EXPORT_SYMBOL vmlinux 0xce045124 km_waitq -EXPORT_SYMBOL vmlinux 0xce06f37a schedule_delayed_work -EXPORT_SYMBOL vmlinux 0xce36ded6 sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xce48e8f7 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce679430 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xce8df9d6 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xceb0881e xrlim_allow -EXPORT_SYMBOL vmlinux 0xcecd1197 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf047c83 acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xcf47e392 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0xcf7ef7ce blk_init_queue -EXPORT_SYMBOL vmlinux 0xcfb53873 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xcfbb36e0 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xcfd7e637 textsearch_register -EXPORT_SYMBOL vmlinux 0xcfefb023 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xd01651a9 mpage_readpage -EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor -EXPORT_SYMBOL vmlinux 0xd02cc869 __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xd04a6514 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xd0531931 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd08197fa acpi_load_tables -EXPORT_SYMBOL vmlinux 0xd09906a8 bio_hw_segments -EXPORT_SYMBOL vmlinux 0xd0a5d350 pci_set_consistent_dma_mask -EXPORT_SYMBOL vmlinux 0xd0d8621b strlen -EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0xd0fb52ef nf_afinfo -EXPORT_SYMBOL vmlinux 0xd11179eb seq_read -EXPORT_SYMBOL vmlinux 0xd13e0465 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0xd1472061 acpi_pci_register_driver -EXPORT_SYMBOL vmlinux 0xd15a631e dma_pool_create -EXPORT_SYMBOL vmlinux 0xd1641b8c pci_find_slot -EXPORT_SYMBOL vmlinux 0xd16ac615 __get_user_1 -EXPORT_SYMBOL vmlinux 0xd18b6eb2 acpi_unmap_lsapic -EXPORT_SYMBOL vmlinux 0xd190f344 kthread_bind -EXPORT_SYMBOL vmlinux 0xd1a5ffa9 avail_to_resrv_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd1b8d8f1 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd1f91bcd dev_base_lock -EXPORT_SYMBOL vmlinux 0xd24c386d idr_for_each -EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xd255f533 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xd2571942 mnt_pin -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd27bdb0f __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop -EXPORT_SYMBOL vmlinux 0xd29e3e46 pci_enable_msix -EXPORT_SYMBOL vmlinux 0xd2cb3aad elv_queue_empty -EXPORT_SYMBOL vmlinux 0xd2f44bc4 ip_cmsg_recv -EXPORT_SYMBOL vmlinux 0xd2f513f5 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xd30f4cf2 tty_insert_flip_string -EXPORT_SYMBOL vmlinux 0xd30f5ab7 sk_dst_check -EXPORT_SYMBOL vmlinux 0xd3277b68 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0xd3278159 proc_root_fs -EXPORT_SYMBOL vmlinux 0xd32a65e8 __init_rwsem -EXPORT_SYMBOL vmlinux 0xd3314d5f proto_unregister -EXPORT_SYMBOL vmlinux 0xd33f330b blkdev_get -EXPORT_SYMBOL vmlinux 0xd3417b4c __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xd36f7bb0 __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0xd372687a path_release -EXPORT_SYMBOL vmlinux 0xd376c8d1 skb_pad -EXPORT_SYMBOL vmlinux 0xd391fdf6 dev_add_pack -EXPORT_SYMBOL vmlinux 0xd3f60824 bioset_create -EXPORT_SYMBOL vmlinux 0xd3fa0b37 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0xd4451b20 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xd44aa3ec dquot_drop -EXPORT_SYMBOL vmlinux 0xd47b5d88 update_region -EXPORT_SYMBOL vmlinux 0xd48febe3 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0xd4991c51 blk_insert_request -EXPORT_SYMBOL vmlinux 0xd4b59ea7 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xd4bbdc24 __read_lock_failed -EXPORT_SYMBOL vmlinux 0xd4e1c73f key_type_keyring -EXPORT_SYMBOL vmlinux 0xd4f1f40a dquot_release -EXPORT_SYMBOL vmlinux 0xd4fbe229 blk_stop_queue -EXPORT_SYMBOL vmlinux 0xd50e7c82 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xd5376c16 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xd542a1ef alloc_pci_dev -EXPORT_SYMBOL vmlinux 0xd54cf745 new_inode -EXPORT_SYMBOL vmlinux 0xd55e37a9 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xd5688a7a radix_tree_insert -EXPORT_SYMBOL vmlinux 0xd5935e22 fput -EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put -EXPORT_SYMBOL vmlinux 0xd5be2235 ll_rw_block -EXPORT_SYMBOL vmlinux 0xd603298b kmem_cache_free -EXPORT_SYMBOL vmlinux 0xd6035d05 do_settimeofday -EXPORT_SYMBOL vmlinux 0xd60f518e qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xd64f977f directly_mappable_cdev_bdi -EXPORT_SYMBOL vmlinux 0xd6766056 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xd6875fa3 _write_unlock_bh -EXPORT_SYMBOL vmlinux 0xd6890e26 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6ca80d0 ida_pre_get -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd72e5a3b sk_free -EXPORT_SYMBOL vmlinux 0xd754ba9a posix_lock_file_wait -EXPORT_SYMBOL vmlinux 0xd7620679 reset_files_struct -EXPORT_SYMBOL vmlinux 0xd772bfe3 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal -EXPORT_SYMBOL vmlinux 0xd7c8d8b1 poll_freewait -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e7ca24 wake_up_bit -EXPORT_SYMBOL vmlinux 0xd81d20ed __generic_unplug_device -EXPORT_SYMBOL vmlinux 0xd825b90e register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xd83541d7 remove_inode_hash -EXPORT_SYMBOL vmlinux 0xd84a4fd4 ida_destroy -EXPORT_SYMBOL vmlinux 0xd85a962b pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd8817e85 arp_send -EXPORT_SYMBOL vmlinux 0xd8980362 fb_blank -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p -EXPORT_SYMBOL vmlinux 0xd8c0158e __bio_clone -EXPORT_SYMBOL vmlinux 0xd8e42f04 pci_scan_bus_parented -EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region -EXPORT_SYMBOL vmlinux 0xd8fc563c d_rehash -EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0xd94c1770 acpi_os_read_pci_configuration -EXPORT_SYMBOL vmlinux 0xd985957b cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd99108c6 __devm_request_region -EXPORT_SYMBOL vmlinux 0xd99a313b filemap_flush -EXPORT_SYMBOL vmlinux 0xd9d58fcf sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xda0a6b0e acpi_map_lsapic -EXPORT_SYMBOL vmlinux 0xda1b3287 pci_request_region -EXPORT_SYMBOL vmlinux 0xda4008e6 cond_resched -EXPORT_SYMBOL vmlinux 0xda6704d3 pnp_resource_change -EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xda862d4f skb_under_panic -EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0xda8d1b8b tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xda928914 nmi_watchdog -EXPORT_SYMBOL vmlinux 0xdab29091 set_anon_super -EXPORT_SYMBOL vmlinux 0xdac675b4 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xdad926c0 vfs_quota_sync -EXPORT_SYMBOL vmlinux 0xdaf398a5 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0xdb0fb3b9 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xdb64c396 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xdb6bf784 kernel_accept -EXPORT_SYMBOL vmlinux 0xdb864d65 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xdbcb53d1 pci_bus_type -EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind -EXPORT_SYMBOL vmlinux 0xdbd1702e bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xdbdb25b8 tcp_v4_md5_do_add -EXPORT_SYMBOL vmlinux 0xdc01a06e find_next_zero_bit -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1fe806 copy_io_context -EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint -EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize -EXPORT_SYMBOL vmlinux 0xdc5107cc pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xdc51d2a4 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0xdc61dba5 sysctl_ms_jiffies -EXPORT_SYMBOL vmlinux 0xdc873a70 screen_info -EXPORT_SYMBOL vmlinux 0xdcdcfa0c swap_io_context -EXPORT_SYMBOL vmlinux 0xdce99fa3 acpi_root_dir -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd5dcc6d bio_pair_release -EXPORT_SYMBOL vmlinux 0xdd68c766 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xdd6bfccd radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xdd6c1d9b ip_getsockopt -EXPORT_SYMBOL vmlinux 0xdd77760c sk_stream_mem_schedule -EXPORT_SYMBOL vmlinux 0xdd7f1da6 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xdd9be1df inode_change_ok -EXPORT_SYMBOL vmlinux 0xdda9923c ida_get_new -EXPORT_SYMBOL vmlinux 0xddd9604f simple_dir_operations -EXPORT_SYMBOL vmlinux 0xdddd17e2 file_fsync -EXPORT_SYMBOL vmlinux 0xddeef053 vfs_stat -EXPORT_SYMBOL vmlinux 0xddfc1dce kfree_skb -EXPORT_SYMBOL vmlinux 0xde1bc336 mntput_no_expire -EXPORT_SYMBOL vmlinux 0xde75b689 set_irq_type -EXPORT_SYMBOL vmlinux 0xde7c500d kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages -EXPORT_SYMBOL vmlinux 0xdebcff8c inode_double_unlock -EXPORT_SYMBOL vmlinux 0xdeee4132 contig_page_data -EXPORT_SYMBOL vmlinux 0xdef5c4a5 idr_destroy -EXPORT_SYMBOL vmlinux 0xdf077edb __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices -EXPORT_SYMBOL vmlinux 0xdf17d74e xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xdf1b15d4 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xdf1e6591 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol -EXPORT_SYMBOL vmlinux 0xdf620804 generic_permission -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdfa2c8d0 input_event -EXPORT_SYMBOL vmlinux 0xdfb62a5b remove_suid -EXPORT_SYMBOL vmlinux 0xdfc6509e register_key_type -EXPORT_SYMBOL vmlinux 0xdff87e56 generic_setlease -EXPORT_SYMBOL vmlinux 0xe089a2d7 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b52380 module_add_driver -EXPORT_SYMBOL vmlinux 0xe104c5b8 security_inode_permission -EXPORT_SYMBOL vmlinux 0xe111dff8 blk_queue_merge_bvec -EXPORT_SYMBOL vmlinux 0xe13bef78 ip_defrag -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14e25d7 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xe168b37b add_disk -EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe1783470 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0xe1a770b8 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xe1df1e5f sysctl_tcp_tso_win_divisor -EXPORT_SYMBOL vmlinux 0xe22c631b bio_split -EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 -EXPORT_SYMBOL vmlinux 0xe2522945 ide_do_reset -EXPORT_SYMBOL vmlinux 0xe26c73b5 seq_escape -EXPORT_SYMBOL vmlinux 0xe27fff2f proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup -EXPORT_SYMBOL vmlinux 0xe31ff0ec kobject_get -EXPORT_SYMBOL vmlinux 0xe348b1a7 arp_create -EXPORT_SYMBOL vmlinux 0xe34bb4af kmem_cache_size -EXPORT_SYMBOL vmlinux 0xe351633f genl_register_family -EXPORT_SYMBOL vmlinux 0xe35dfba4 pci_map_rom -EXPORT_SYMBOL vmlinux 0xe35f36fd tcp_close -EXPORT_SYMBOL vmlinux 0xe386d7a5 genl_register_ops -EXPORT_SYMBOL vmlinux 0xe39ddffb posix_test_lock -EXPORT_SYMBOL vmlinux 0xe3a55ac1 open_by_devnum -EXPORT_SYMBOL vmlinux 0xe3b7aeda __sk_dst_check -EXPORT_SYMBOL vmlinux 0xe3d06d1f sysctl_string -EXPORT_SYMBOL vmlinux 0xe3e2f143 unlock_buffer -EXPORT_SYMBOL vmlinux 0xe3e5303e request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xe3f91a93 datagram_poll -EXPORT_SYMBOL vmlinux 0xe43617f7 acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0xe46cd9cb sk_reset_timer -EXPORT_SYMBOL vmlinux 0xe48f3333 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xe49414e9 rtattr_parse -EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe576bd11 seq_putc -EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe59923c0 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xe59a0d8a tcp_prot -EXPORT_SYMBOL vmlinux 0xe5b84009 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c7eaf0 bio_map_kern -EXPORT_SYMBOL vmlinux 0xe5cc2008 submit_bh -EXPORT_SYMBOL vmlinux 0xe5f39c8b fb_get_mode -EXPORT_SYMBOL vmlinux 0xe5f97af4 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xe61d17ac tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xe62c0a86 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xe64d6463 framebuffer_release -EXPORT_SYMBOL vmlinux 0xe65f99dc __kill_fasync -EXPORT_SYMBOL vmlinux 0xe66ec381 init_mm -EXPORT_SYMBOL vmlinux 0xe6738a8e arp_xmit -EXPORT_SYMBOL vmlinux 0xe6bba243 make_bad_inode -EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock -EXPORT_SYMBOL vmlinux 0xe706ce14 sock_wfree -EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xe727fad5 open_bdev_excl -EXPORT_SYMBOL vmlinux 0xe76f2434 vm_insert_page -EXPORT_SYMBOL vmlinux 0xe7bf80fb subsystem_unregister -EXPORT_SYMBOL vmlinux 0xe7d2aca1 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d97b05 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xe7ead430 vunmap -EXPORT_SYMBOL vmlinux 0xe802d2bc __secpath_destroy -EXPORT_SYMBOL vmlinux 0xe84aad2d redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xe868af29 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xe8795ba2 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xe88002a8 deny_write_access -EXPORT_SYMBOL vmlinux 0xe889c310 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xe8afbdfe acpi_bus_generate_proc_event -EXPORT_SYMBOL vmlinux 0xe8bb24bc compute_creds -EXPORT_SYMBOL vmlinux 0xe8cd902e hweight16 -EXPORT_SYMBOL vmlinux 0xe8d855eb tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xe9147905 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9154bb2 vmap -EXPORT_SYMBOL vmlinux 0xe92a00e0 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xe939bb94 __bforget -EXPORT_SYMBOL vmlinux 0xe9405958 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xe94304f1 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xe9456a5a sysctl_xfrm_aevent_rseqth -EXPORT_SYMBOL vmlinux 0xe9699130 print_mac -EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xea1d0a8f vc_lock_resize -EXPORT_SYMBOL vmlinux 0xea6fcdaa genl_unregister_family -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7e28e7 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0xea858cb5 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xea8cfcdb km_policy_expired -EXPORT_SYMBOL vmlinux 0xeaa08802 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeb00b0ac dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xeb08baa2 input_unregister_device -EXPORT_SYMBOL vmlinux 0xeb2245ac flush_tlb_page -EXPORT_SYMBOL vmlinux 0xeb395084 param_get_invbool -EXPORT_SYMBOL vmlinux 0xeb7db228 rtnl_notify -EXPORT_SYMBOL vmlinux 0xeb8f54b3 strstrip -EXPORT_SYMBOL vmlinux 0xebd4ac07 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0xebd5cb17 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xebf1760f tcp_statistics -EXPORT_SYMBOL vmlinux 0xec1a50bd ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xec4da9fc wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xec5df407 block_read_full_page -EXPORT_SYMBOL vmlinux 0xec61856c block_write_begin -EXPORT_SYMBOL vmlinux 0xec63f696 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xecbcd0f0 udp_disconnect -EXPORT_SYMBOL vmlinux 0xecbf9cad pm_send_all -EXPORT_SYMBOL vmlinux 0xecd24bbd acpi_bus_start -EXPORT_SYMBOL vmlinux 0xecd5ffe4 __inet6_hash -EXPORT_SYMBOL vmlinux 0xecdadbb8 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xecec80e1 kill_pgrp -EXPORT_SYMBOL vmlinux 0xed2a5d40 iget5_locked -EXPORT_SYMBOL vmlinux 0xed633abc pv_irq_ops -EXPORT_SYMBOL vmlinux 0xed9003ef pci_osc_support_set -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc71865 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xedd14538 param_get_uint -EXPORT_SYMBOL vmlinux 0xeddfe49d rtc_unregister -EXPORT_SYMBOL vmlinux 0xee066cd3 single_open -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee5a11eb system_bus_clock -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee8909c5 __alloc_pages -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb1717c param_array_get -EXPORT_SYMBOL vmlinux 0xef34c813 unlock_page -EXPORT_SYMBOL vmlinux 0xef79ac56 __release_region -EXPORT_SYMBOL vmlinux 0xef9598cf down_read_trylock -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xef9af1c5 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xefd22c53 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xefdd3475 touch_atime -EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xefea6ae9 iov_iter_copy_from_user -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0050a60 generic_getxattr -EXPORT_SYMBOL vmlinux 0xf00a0038 nobh_writepage -EXPORT_SYMBOL vmlinux 0xf02c35a2 cont_write_begin -EXPORT_SYMBOL vmlinux 0xf039e147 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xf066600f __write_lock_failed -EXPORT_SYMBOL vmlinux 0xf0b57c68 param_set_long -EXPORT_SYMBOL vmlinux 0xf0bcc0b3 acpi_os_create_semaphore -EXPORT_SYMBOL vmlinux 0xf0c7cc95 down_read -EXPORT_SYMBOL vmlinux 0xf0dccf1c sock_recvmsg -EXPORT_SYMBOL vmlinux 0xf0e5d9da tcp_sendpage -EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf -EXPORT_SYMBOL vmlinux 0xf13fc8d6 _read_lock_irq -EXPORT_SYMBOL vmlinux 0xf152c52f register_netdev -EXPORT_SYMBOL vmlinux 0xf162fe2d sysctl_xfrm_aevent_etime -EXPORT_SYMBOL vmlinux 0xf174ed48 acquire_console_sem -EXPORT_SYMBOL vmlinux 0xf181faa3 set_bdi_congested -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf19c2b5e key_put -EXPORT_SYMBOL vmlinux 0xf1b51ef5 serio_rescan -EXPORT_SYMBOL vmlinux 0xf1c326fb xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1fa6dbe blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0xf202f537 _read_unlock -EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq -EXPORT_SYMBOL vmlinux 0xf265a8c3 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf2743937 skb_queue_head -EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xf2a6d2bf xfrm_policy_count -EXPORT_SYMBOL vmlinux 0xf2afa595 param_get_charp -EXPORT_SYMBOL vmlinux 0xf2e506d8 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0xf2e642c1 end_that_request_last -EXPORT_SYMBOL vmlinux 0xf303243d end_dequeued_request -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf32623ab neigh_parms_release -EXPORT_SYMBOL vmlinux 0xf32d2678 schedule_work -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf35c68c2 __user_walk_fd -EXPORT_SYMBOL vmlinux 0xf388919d blk_recount_segments -EXPORT_SYMBOL vmlinux 0xf397fbcd netif_carrier_off -EXPORT_SYMBOL vmlinux 0xf39bf4d9 put_cmsg -EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement -EXPORT_SYMBOL vmlinux 0xf3e43a5d ps2_drain -EXPORT_SYMBOL vmlinux 0xf3efc501 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0xf3ff7ff4 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0xf47d47e0 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4d11e51 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xf4e26d56 open_exec -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f52f93 dqstats -EXPORT_SYMBOL vmlinux 0xf4f9fbd4 aio_complete -EXPORT_SYMBOL vmlinux 0xf50b2929 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xf51c4741 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xf526d663 tcp_proc_register -EXPORT_SYMBOL vmlinux 0xf58d7c3e mpage_writepage -EXPORT_SYMBOL vmlinux 0xf5c05914 generic_segment_checks -EXPORT_SYMBOL vmlinux 0xf5c712de neigh_connected_output -EXPORT_SYMBOL vmlinux 0xf5ce9811 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0xf6323311 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xf6360ed8 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xf63f0c50 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xf64e1ebb pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xf67fe4a3 noop_qdisc -EXPORT_SYMBOL vmlinux 0xf69e53ae inet_twsk_deschedule -EXPORT_SYMBOL vmlinux 0xf6a1bf51 dma_async_memcpy_buf_to_pg -EXPORT_SYMBOL vmlinux 0xf6b5f154 sync_page_range_nolock -EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table -EXPORT_SYMBOL vmlinux 0xf6e0e400 _read_trylock -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf72ffac5 simple_write_end -EXPORT_SYMBOL vmlinux 0xf7623914 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xf78e4523 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf7a6f773 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xf7aca9cd qdisc_watchdog_schedule -EXPORT_SYMBOL vmlinux 0xf7ace052 block_write_end -EXPORT_SYMBOL vmlinux 0xf7f822bd ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xf8135b58 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf82410d0 udp_prot -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82e3d47 acpi_initialize_objects -EXPORT_SYMBOL vmlinux 0xf82f1109 utf8_wctomb -EXPORT_SYMBOL vmlinux 0xf82f48fc acpi_os_delete_semaphore -EXPORT_SYMBOL vmlinux 0xf84df9f9 vfs_write -EXPORT_SYMBOL vmlinux 0xf870df3f pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xf8814f73 rb_last -EXPORT_SYMBOL vmlinux 0xf890fe7f pm_idle -EXPORT_SYMBOL vmlinux 0xf8a1f156 alloc_file -EXPORT_SYMBOL vmlinux 0xf90cad5d __ip_select_ident -EXPORT_SYMBOL vmlinux 0xf91e88e4 dst_alloc -EXPORT_SYMBOL vmlinux 0xf93e8320 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xf94e423f do_splice_from -EXPORT_SYMBOL vmlinux 0xf96dc504 sk_wait_data -EXPORT_SYMBOL vmlinux 0xf972bebe kmap_atomic_to_page -EXPORT_SYMBOL vmlinux 0xf9a02b7b _write_unlock -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9da71a0 generic_file_buffered_write -EXPORT_SYMBOL vmlinux 0xfa0830f2 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xfa2dbb10 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0xfa5c48ba __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfa8ac481 dquot_acquire -EXPORT_SYMBOL vmlinux 0xfabf545f kthread_stop -EXPORT_SYMBOL vmlinux 0xfacff879 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 -EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent -EXPORT_SYMBOL vmlinux 0xfb0cf2e9 touch_all_softlockup_watchdogs -EXPORT_SYMBOL vmlinux 0xfb12a47d input_allocate_device -EXPORT_SYMBOL vmlinux 0xfb241e4f vfs_link -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfbab1310 mnt_unpin -EXPORT_SYMBOL vmlinux 0xfbf92453 param_get_bool -EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0xfc1340ff vfs_set_dqblk -EXPORT_SYMBOL vmlinux 0xfc143c82 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xfc168245 input_release_device -EXPORT_SYMBOL vmlinux 0xfc20db10 __grab_cache_page -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc868e8f tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xfc902cd3 pci_iomap -EXPORT_SYMBOL vmlinux 0xfc912ec7 end_that_request_first -EXPORT_SYMBOL vmlinux 0xfc91ee64 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xfcb8b131 idr_find -EXPORT_SYMBOL vmlinux 0xfcdd8cf6 param_get_ushort -EXPORT_SYMBOL vmlinux 0xfceb0b4e bdev_read_only -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0xfd03f1cd _read_unlock_irq -EXPORT_SYMBOL vmlinux 0xfd98879a rb_next -EXPORT_SYMBOL vmlinux 0xfda42cf4 vfs_readlink -EXPORT_SYMBOL vmlinux 0xfdab2b9c rtc_register -EXPORT_SYMBOL vmlinux 0xfdbe222d set_page_dirty -EXPORT_SYMBOL vmlinux 0xfdce90c3 ide_execute_command -EXPORT_SYMBOL vmlinux 0xfdfa21a1 submit_bio -EXPORT_SYMBOL vmlinux 0xfe07e343 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xfe1bdde3 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xfe260c0d blk_init_queue_node -EXPORT_SYMBOL vmlinux 0xfe3b3b2f sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0xfe8f8f23 iput -EXPORT_SYMBOL vmlinux 0xfec8689b block_truncate_page -EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled -EXPORT_SYMBOL vmlinux 0xfeff31d2 register_gifconf -EXPORT_SYMBOL vmlinux 0xff0973e7 km_query -EXPORT_SYMBOL vmlinux 0xff0a3722 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2bd835 genl_sock -EXPORT_SYMBOL vmlinux 0xff5f28d5 pci_enable_msi -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0xffae4952 serio_interrupt -EXPORT_SYMBOL vmlinux 0xffc8863c __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function -EXPORT_SYMBOL vmlinux 0xffdc1f0d __first_cpu -EXPORT_SYMBOL vmlinux 0xffe73104 posix_acl_permission -EXPORT_SYMBOL vmlinux 0xffe8359d neigh_changeaddr -EXPORT_SYMBOL_GPL crypto/aead 0x41f5277d crypto_aead_type -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xcbbc6523 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0101a6cb async_tx_run_dependencies -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3101c04b async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6b4a6db2 async_tx_issue_pending_all -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6c9a4689 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbe2f28c5 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xffeb33d5 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x606545fd async_xor_zero_sum -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbf3e73ac async_xor -EXPORT_SYMBOL_GPL crypto/blkcipher 0x5e56c62e blkcipher_walk_done -EXPORT_SYMBOL_GPL crypto/blkcipher 0x6dd19957 blkcipher_walk_virt -EXPORT_SYMBOL_GPL crypto/blkcipher 0x70c01ad9 blkcipher_walk_phys -EXPORT_SYMBOL_GPL crypto/blkcipher 0x96c02787 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL crypto/blkcipher 0xe284e460 crypto_blkcipher_type -EXPORT_SYMBOL_GPL crypto/twofish_common 0x7bd739ab twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/libata 0x0067df75 ata_tf_from_fis -EXPORT_SYMBOL_GPL drivers/ata/libata 0x00ebcb5d ata_id_string -EXPORT_SYMBOL_GPL drivers/ata/libata 0x01826388 ata_cable_80wire -EXPORT_SYMBOL_GPL drivers/ata/libata 0x02b4c059 ata_host_detach -EXPORT_SYMBOL_GPL drivers/ata/libata 0x0531dcb8 ata_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libata 0x0c2cddf2 ata_port_schedule_eh -EXPORT_SYMBOL_GPL drivers/ata/libata 0x0cc347ed ata_port_start -EXPORT_SYMBOL_GPL drivers/ata/libata 0x0d39673b ata_noop_dev_select -EXPORT_SYMBOL_GPL drivers/ata/libata 0x0fa31342 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL drivers/ata/libata 0x0fe0d0e0 ata_do_eh -EXPORT_SYMBOL_GPL drivers/ata/libata 0x104c105e ata_host_intr -EXPORT_SYMBOL_GPL drivers/ata/libata 0x1053d95e ata_dev_try_classify -EXPORT_SYMBOL_GPL drivers/ata/libata 0x12faa192 ata_dummy_port_ops -EXPORT_SYMBOL_GPL drivers/ata/libata 0x13fa8508 ata_busy_sleep -EXPORT_SYMBOL_GPL drivers/ata/libata 0x1b5e46ab ata_qc_issue_prot -EXPORT_SYMBOL_GPL drivers/ata/libata 0x1dd0dcdd ata_pci_device_resume -EXPORT_SYMBOL_GPL drivers/ata/libata 0x2307c7a4 ata_wait_ready -EXPORT_SYMBOL_GPL drivers/ata/libata 0x242b4a18 sata_scr_read -EXPORT_SYMBOL_GPL drivers/ata/libata 0x26f75896 ata_qc_complete -EXPORT_SYMBOL_GPL drivers/ata/libata 0x2cf69094 ata_acpi_gtm -EXPORT_SYMBOL_GPL drivers/ata/libata 0x2e35af9c ata_noop_qc_prep -EXPORT_SYMBOL_GPL drivers/ata/libata 0x31ff81f1 ata_std_qc_defer -EXPORT_SYMBOL_GPL drivers/ata/libata 0x32b38d50 ata_host_suspend -EXPORT_SYMBOL_GPL drivers/ata/libata 0x380422d4 ata_sg_init -EXPORT_SYMBOL_GPL drivers/ata/libata 0x3adfc72a ata_sas_port_stop -EXPORT_SYMBOL_GPL drivers/ata/libata 0x3bb68d49 ata_port_queue_task -EXPORT_SYMBOL_GPL drivers/ata/libata 0x3cbc1cf7 sata_pmp_std_postreset -EXPORT_SYMBOL_GPL drivers/ata/libata 0x3faeb55f ata_cable_unknown -EXPORT_SYMBOL_GPL drivers/ata/libata 0x445b585a ata_eh_freeze_port -EXPORT_SYMBOL_GPL drivers/ata/libata 0x46fb1520 ata_pci_remove_one -EXPORT_SYMBOL_GPL drivers/ata/libata 0x47e6b9ca ata_qc_prep -EXPORT_SYMBOL_GPL drivers/ata/libata 0x47ee38c8 ata_dummy_port_info -EXPORT_SYMBOL_GPL drivers/ata/libata 0x494bbb2b ata_cable_sata -EXPORT_SYMBOL_GPL drivers/ata/libata 0x49a150de ata_id_to_dma_mode -EXPORT_SYMBOL_GPL drivers/ata/libata 0x49c7e2db ata_link_abort -EXPORT_SYMBOL_GPL drivers/ata/libata 0x4c6c17af ata_host_alloc -EXPORT_SYMBOL_GPL drivers/ata/libata 0x4e491bb1 ata_pci_init_sff_host -EXPORT_SYMBOL_GPL drivers/ata/libata 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL drivers/ata/libata 0x511958df sata_pmp_do_eh -EXPORT_SYMBOL_GPL drivers/ata/libata 0x53079216 ata_irq_on -EXPORT_SYMBOL_GPL drivers/ata/libata 0x53a5f61f ata_hsm_move -EXPORT_SYMBOL_GPL drivers/ata/libata 0x54995e79 ata_port_probe -EXPORT_SYMBOL_GPL drivers/ata/libata 0x54e09f38 ata_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libata 0x56059f2b ata_wait_after_reset -EXPORT_SYMBOL_GPL drivers/ata/libata 0x58760e05 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL drivers/ata/libata 0x5a6d286b ata_bmdma_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libata 0x5d0dace4 sata_pmp_std_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libata 0x5dbf271e sata_pmp_std_prereset -EXPORT_SYMBOL_GPL drivers/ata/libata 0x5f8ba673 sata_link_resume -EXPORT_SYMBOL_GPL drivers/ata/libata 0x5fe36af1 ata_dev_pair -EXPORT_SYMBOL_GPL drivers/ata/libata 0x618d149e sata_std_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libata 0x622fda1a ata_pio_need_iordy -EXPORT_SYMBOL_GPL drivers/ata/libata 0x64006c5c ata_pci_prepare_sff_host -EXPORT_SYMBOL_GPL drivers/ata/libata 0x64514d11 ata_pci_clear_simplex -EXPORT_SYMBOL_GPL drivers/ata/libata 0x659de4c4 sata_link_debounce -EXPORT_SYMBOL_GPL drivers/ata/libata 0x688d40f4 ata_bmdma_freeze -EXPORT_SYMBOL_GPL drivers/ata/libata 0x68e246be ata_host_start -EXPORT_SYMBOL_GPL drivers/ata/libata 0x69e9a2cb ata_scsi_slave_config -EXPORT_SYMBOL_GPL drivers/ata/libata 0x6b6e5d15 ata_std_softreset -EXPORT_SYMBOL_GPL drivers/ata/libata 0x6c6d685f ata_pci_device_suspend -EXPORT_SYMBOL_GPL drivers/ata/libata 0x6db97aa4 ata_host_init -EXPORT_SYMBOL_GPL drivers/ata/libata 0x6f69874d sata_set_spd -EXPORT_SYMBOL_GPL drivers/ata/libata 0x708f7bfd ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL drivers/ata/libata 0x70a53df1 ata_sff_port_start -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7192bbf2 ata_bmdma_start -EXPORT_SYMBOL_GPL drivers/ata/libata 0x74e7fbba ata_data_xfer_noirq -EXPORT_SYMBOL_GPL drivers/ata/libata 0x76722a05 ata_sas_port_start -EXPORT_SYMBOL_GPL drivers/ata/libata 0x77df45d9 ata_bmdma_stop -EXPORT_SYMBOL_GPL drivers/ata/libata 0x793cbb09 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7a0bc92b sata_scr_valid -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7a30fb61 ata_pci_init_one -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7c92ac3e ata_port_desc -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7d633b66 ata_bus_reset -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7e731635 class_device_attr_link_power_management_policy -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7eb8b788 sata_print_link_status -EXPORT_SYMBOL_GPL drivers/ata/libata 0x7ff6aca0 ata_bmdma_status -EXPORT_SYMBOL_GPL drivers/ata/libata 0x804e5421 ata_host_resume -EXPORT_SYMBOL_GPL drivers/ata/libata 0x863b8573 ata_acpi_stm -EXPORT_SYMBOL_GPL drivers/ata/libata 0x87d43e5f ata_qc_complete_multiple -EXPORT_SYMBOL_GPL drivers/ata/libata 0x896c52d8 ata_tf_load -EXPORT_SYMBOL_GPL drivers/ata/libata 0x8a2b4a6d ata_pci_default_filter -EXPORT_SYMBOL_GPL drivers/ata/libata 0x8acdc3d8 ata_bmdma_setup -EXPORT_SYMBOL_GPL drivers/ata/libata 0x8b44f652 ata_std_dev_select -EXPORT_SYMBOL_GPL drivers/ata/libata 0x8b752ac1 ata_tf_to_fis -EXPORT_SYMBOL_GPL drivers/ata/libata 0x8d9d050e ata_host_register -EXPORT_SYMBOL_GPL drivers/ata/libata 0x909e4ee3 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL drivers/ata/libata 0x9175564b ata_port_disable -EXPORT_SYMBOL_GPL drivers/ata/libata 0x9247ce7b ata_scsi_simulate -EXPORT_SYMBOL_GPL drivers/ata/libata 0x94a68723 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL drivers/ata/libata 0x94dc62d2 ata_scsi_ioctl -EXPORT_SYMBOL_GPL drivers/ata/libata 0x9549e891 ata_tf_read -EXPORT_SYMBOL_GPL drivers/ata/libata 0x9998b15d ata_data_xfer -EXPORT_SYMBOL_GPL drivers/ata/libata 0x9aa9b229 ata_sas_queuecmd -EXPORT_SYMBOL_GPL drivers/ata/libata 0x9e8419ec sata_async_notification -EXPORT_SYMBOL_GPL drivers/ata/libata 0xa123787b ata_port_freeze -EXPORT_SYMBOL_GPL drivers/ata/libata 0xa13b1066 ata_cable_40wire -EXPORT_SYMBOL_GPL drivers/ata/libata 0xa3b60f53 ata_std_postreset -EXPORT_SYMBOL_GPL drivers/ata/libata 0xa65c6eb2 ata_eh_qc_complete -EXPORT_SYMBOL_GPL drivers/ata/libata 0xa8dc1b95 sata_link_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libata 0xaf02d7a3 ata_bmdma_drive_eh -EXPORT_SYMBOL_GPL drivers/ata/libata 0xb1dd25ef ata_timing_compute -EXPORT_SYMBOL_GPL drivers/ata/libata 0xb2d58951 ata_sg_init_one -EXPORT_SYMBOL_GPL drivers/ata/libata 0xb2d6a791 ata_std_ports -EXPORT_SYMBOL_GPL drivers/ata/libata 0xb325ab88 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL drivers/ata/libata 0xb5acaf8c ata_port_abort -EXPORT_SYMBOL_GPL drivers/ata/libata 0xb6aeb661 ata_id_c_string -EXPORT_SYMBOL_GPL drivers/ata/libata 0xba8e0d45 ata_exec_command -EXPORT_SYMBOL_GPL drivers/ata/libata 0xbac2256a ata_sas_port_destroy -EXPORT_SYMBOL_GPL drivers/ata/libata 0xbc5bfc78 ata_dumb_qc_prep -EXPORT_SYMBOL_GPL drivers/ata/libata 0xc00d8836 ata_port_pbar_desc -EXPORT_SYMBOL_GPL drivers/ata/libata 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL drivers/ata/libata 0xc673e23e ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL drivers/ata/libata 0xc8c9f354 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL drivers/ata/libata 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL drivers/ata/libata 0xd1fa343a ata_check_status -EXPORT_SYMBOL_GPL drivers/ata/libata 0xd411320a ata_eh_qc_retry -EXPORT_SYMBOL_GPL drivers/ata/libata 0xd53b0780 ata_eh_thaw_port -EXPORT_SYMBOL_GPL drivers/ata/libata 0xd6c5d402 sata_scr_write -EXPORT_SYMBOL_GPL drivers/ata/libata 0xd7473e86 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL drivers/ata/libata 0xdb5a31d4 ata_std_prereset -EXPORT_SYMBOL_GPL drivers/ata/libata 0xdceed2c2 ata_sas_port_init -EXPORT_SYMBOL_GPL drivers/ata/libata 0xdf327cd1 ata_interrupt -EXPORT_SYMBOL_GPL drivers/ata/libata 0xe1497711 ata_bmdma_thaw -EXPORT_SYMBOL_GPL drivers/ata/libata 0xe23b900f sata_scr_write_flush -EXPORT_SYMBOL_GPL drivers/ata/libata 0xe2c9eca4 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL drivers/ata/libata 0xe2e7acc3 ata_dev_disable -EXPORT_SYMBOL_GPL drivers/ata/libata 0xe49ff3b0 ata_wait_register -EXPORT_SYMBOL_GPL drivers/ata/libata 0xec47479b ata_altstatus -EXPORT_SYMBOL_GPL drivers/ata/libata 0xed049751 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL drivers/ata/libata 0xeed458d5 ata_pci_init_bmdma -EXPORT_SYMBOL_GPL drivers/ata/libata 0xef6f0d74 ata_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/ata/libata 0xf1cb4564 ata_ehi_push_desc -EXPORT_SYMBOL_GPL drivers/ata/libata 0xf3d5cc13 ata_timing_merge -EXPORT_SYMBOL_GPL drivers/ata/libata 0xf4cdfbd9 pci_test_config_bits -EXPORT_SYMBOL_GPL drivers/ata/libata 0xf59d0a99 ata_link_online -EXPORT_SYMBOL_GPL drivers/ata/libata 0xf7b1715d ata_do_set_mode -EXPORT_SYMBOL_GPL drivers/ata/libata 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL drivers/ata/libata 0xfb099395 ata_sas_port_alloc -EXPORT_SYMBOL_GPL drivers/ata/libata 0xfb4df518 ata_std_bios_param -EXPORT_SYMBOL_GPL drivers/ata/libata 0xfdb96f52 ata_link_offline -EXPORT_SYMBOL_GPL drivers/char/agp/agpgart 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL drivers/char/agp/agpgart 0xd86d98fe agp_remove_bridge -EXPORT_SYMBOL_GPL drivers/char/agp/agpgart 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL drivers/char/agp/agpgart 0xf9aa9c68 agp_add_bridge -EXPORT_SYMBOL_GPL drivers/char/hw_random/rng-core 0x707e31d1 hwrng_register -EXPORT_SYMBOL_GPL drivers/char/hw_random/rng-core 0xd205af0a hwrng_unregister -EXPORT_SYMBOL_GPL drivers/connector/cn 0xb10d55bc cn_netlink_send -EXPORT_SYMBOL_GPL drivers/connector/cn 0xdf3c19ec cn_add_callback -EXPORT_SYMBOL_GPL drivers/connector/cn 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL drivers/dca/dca 0x08364733 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x1314ad3c unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x176f16ac register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x2e471f01 dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x7a81d45f free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x8006c614 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x9ec25759 alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xe4da26af dca_remove_requester -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3b66be57 i2c_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x41f260f4 i2c_new_probed_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4e35fa27 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe389654d i2c_new_device -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x4349e0fe dm_noflush_suspending -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x45856a5f dm_set_device_limits -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x6591188e dm_path_uevent -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x87c8e8c4 dm_create_error_table -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x881d022b dm_send_uevents -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0xd998cee2 dm_device_name -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0xe1865e96 dm_disk -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0xfb1a95e2 dm_put -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x19816ef6 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x3caca6fe dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7501d7ff dm_scsi_err_handler -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x982f809b dm_register_hw_handler -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc416c7ae dm_pg_init_complete -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdf0bcef9 dm_unregister_hw_handler -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x0e0f4ff4 md_new_event -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x12b98f62 md_do_sync -EXPORT_SYMBOL_GPL drivers/md/md-mod 0xbf991955 sync_page_io -EXPORT_SYMBOL_GPL drivers/md/md-mod 0xe72ded5b md_allow_write -EXPORT_SYMBOL_GPL drivers/misc/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04e068bd iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d05c684 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f2ba5d0 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1797a0a5 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17aa3c02 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27d56a53 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c4e4bb9 iscsi_eh_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4186b2ce iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x437f4701 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6add8687 iscsi_prep_unsolicit_data_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bc9317f iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c678208 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cdc0c9c iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85a18df9 class_to_transport_session -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fcbd019 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91225503 iscsi_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8a70f54 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf593432 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaed7be3 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1bcd376 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3e09fe4 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4115388 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc625448d iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb01d416 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5dfd740 iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb4c9333 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf767b152 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x099b11ac sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09e64c6d sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x194d74d4 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f6332b7 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3011a335 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37af715e sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3caf2588 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41da227e sas_eh_bus_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d74bbb2 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52b37ab0 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7735c2f5 sas_slave_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a140362 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb792eaa0 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb83d5fa3 sas_change_queue_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc222c5d5 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd21e26d9 __sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd910dbd2 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde0aac85 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef9ccafd sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4cecdeb sas_domain_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x01fb2690 sdev_evt_send -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x15389219 scsi_target_unblock -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x35d8c94a sdev_evt_alloc -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x38b92827 scsi_internal_device_block -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x3d7bd4ab scsi_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x6b6d9aaf scsi_target_block -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x6b835321 sdev_evt_send_simple -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x7e275ea8 scsi_complete_async_scans -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x99609454 scsi_execute_async -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x9afd8235 scsi_mode_select -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0x9eeac232 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0xb97cead2 __scsi_get_command -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0xd2e68cb4 scsi_schedule_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0xd8363066 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0xdb894b4d scsi_flush_work -EXPORT_SYMBOL_GPL drivers/scsi/scsi_mod 0xe18be9a1 scsi_nl_sock -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03693874 iscsi_conn_error -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e58cb98 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a4965e5 iscsi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fd0fbf0 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55e528fd iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c039385 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b39a240 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7262849e iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d751080 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99239b36 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5ec0e56 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa1bc77f iscsi_if_create_session_done -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd333fa8 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc250f7fb iscsi_if_destroy_session_done -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd73cd10b iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe210048c iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/uio/uio 0x14305b32 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x4de6f5de uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xb60aacdc __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x0827853b usb_interrupt_msg -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x1913e184 usb_match_one_id -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x2a71573c usb_unanchor_urb -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x2fcb05fe usb_root_hub_lost_power -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x3596eec8 usb_driver_set_configuration -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x36f9c3f8 usb_store_new_id -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x3be89d3c usb_register_notify -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x4726131a usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x532c9510 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x598e53ef usb_get_intf -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x59b33367 usb_hc_died -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x70d2acfd usb_anchor_urb -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x83a34ad0 usb_put_intf -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x85e40380 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xace5c0fc usb_bus_list -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xb4ef5bbd usb_register_device_driver -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xb5eaa1ea usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xc38505b2 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xd038291d usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xdaa16aba usb_deregister_device_driver -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xe5c61346 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xe9587909 usb_unregister_notify -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xf223cf7f usb_bus_list_lock -EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0xf552677a usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x3e01f8a5 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0xe6b858e9 fb_sys_read -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x1c51212e register_virtio_driver -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x27a69eca register_virtio_device -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x8c005707 unregister_virtio_driver -EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x9a07d6d0 unregister_virtio_device -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x03c4687d vring_interrupt -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xab76e868 vring_del_virtqueue -EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xb736e46f vring_new_virtqueue -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3f712225 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4e060f5a w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x533f1aaa w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x788567ae w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xab1d2653 w1_reset_select_slave -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x14d97760 dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x511ad1e9 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdf3c14de dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/exportfs/exportfs 0xdeee84e4 exportfs_encode_fh -EXPORT_SYMBOL_GPL fs/exportfs/exportfs 0xf508c271 exportfs_decode_fh -EXPORT_SYMBOL_GPL fs/fat/fat 0x08b18831 fat_date_unix2dos -EXPORT_SYMBOL_GPL fs/fat/fat 0x1101a058 fat_attach -EXPORT_SYMBOL_GPL fs/fat/fat 0x25ae8bc7 fat_dir_empty -EXPORT_SYMBOL_GPL fs/fat/fat 0x285937fb fat_remove_entries -EXPORT_SYMBOL_GPL fs/fat/fat 0x3314e6e1 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL fs/fat/fat 0x333af38c fat_getattr -EXPORT_SYMBOL_GPL fs/fat/fat 0x50903873 fat_fs_panic -EXPORT_SYMBOL_GPL fs/fat/fat 0x6bbddc75 fat_search_long -EXPORT_SYMBOL_GPL fs/fat/fat 0x6c71a1bf fat_build_inode -EXPORT_SYMBOL_GPL fs/fat/fat 0x8a153413 fat_alloc_new_dir -EXPORT_SYMBOL_GPL fs/fat/fat 0x8f5f21c8 fat_sync_inode -EXPORT_SYMBOL_GPL fs/fat/fat 0x9b2aad70 fat_notify_change -EXPORT_SYMBOL_GPL fs/fat/fat 0xa51fa1bd fat_add_entries -EXPORT_SYMBOL_GPL fs/fat/fat 0xb819d998 fat_scan -EXPORT_SYMBOL_GPL fs/fat/fat 0xc2a6204c fat_detach -EXPORT_SYMBOL_GPL fs/fat/fat 0xc4e8d148 fat_fill_super -EXPORT_SYMBOL_GPL fs/fat/fat 0xe79075d7 fat_free_clusters -EXPORT_SYMBOL_GPL fs/fat/fat 0xf4f087de fat_flush_inodes -EXPORT_SYMBOL_GPL fs/gfs2/gfs2 0x4918d30e gfs2_register_lockproto -EXPORT_SYMBOL_GPL fs/gfs2/gfs2 0x766435b3 gfs2_unregister_lockproto -EXPORT_SYMBOL_GPL fs/gfs2/gfs2 0xd514951c gfs2_unmount_lockproto -EXPORT_SYMBOL_GPL fs/gfs2/gfs2 0xe6d642cd gfs2_mount_lockproto -EXPORT_SYMBOL_GPL fs/gfs2/gfs2 0xf0589c2c gfs2_withdraw_lockproto -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0760dc0d o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1f2e5c7a o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3a078ef4 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8c99978c o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9d99f09e o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbb82fc8e o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe525ca6c o2nm_get_hb_ctl_path -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xee21b0c1 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4353551b dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6c92e5a7 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x918d5550 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa1e081b1 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf1807b10 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf393ab48 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x02b0cf39 dccp_rx_hist_find_entry -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x09fa7d34 dccp_rx_hist_purge -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x0a487ea5 tfrc_calc_x -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x17eb40e7 dccp_tx_hist_purge -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x1bf96d7a dccp_rx_hist_delete -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x2c4a49cf dccp_tx_hist_purge_older -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x48fdeba9 dccp_li_hist_purge -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x49616841 dccp_tx_hist_find_entry -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x6c252d29 tfrc_calc_x_reverse_lookup -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x6fb6b2d7 dccp_li_update_li -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0x90aae1a6 dccp_rx_hist_find_data_packet -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0xb5e7ddfd dccp_tx_hist_delete -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0xd7ccb414 dccp_rx_hist_new -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0xe5000b23 dccp_rx_hist_add_packet -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0xe91ae5a2 dccp_tx_hist_new -EXPORT_SYMBOL_GPL net/dccp/ccids/lib/dccp_tfrc_lib 0xffff1ec4 dccp_li_hist_calc_i_mean -EXPORT_SYMBOL_GPL net/dccp/dccp 0x048758d1 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x06f5f36d dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x07c743e3 dccp_hash -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0be6207e dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1358d9f9 ccid_new -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1373faeb dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x13bc9dcb dccp_feat_clone -EXPORT_SYMBOL_GPL net/dccp/dccp 0x153ea1d4 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3806b22b dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b3c0b1b dccp_feat_clean -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f6139f0 ccid_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ffe03bb dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42fef46b dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x496b8fe0 dccp_insert_option_elapsed_time -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec43346 ccid_hc_tx_new -EXPORT_SYMBOL_GPL net/dccp/dccp 0x56ea266a dccp_state_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x570e9ff5 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x605d4998 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6162d60f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x625010a0 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6caee825 ccid_hc_rx_delete -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d6e4359 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e9a028a dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x700fd209 dccp_feat_confirm_recv -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aeac2d1 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c043df4 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x84a32f0c dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x852f300a dccp_sample_rtt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x85a1b409 dccp_feat_change_recv -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86e4534b ccid_hc_tx_delete -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b7d8caf dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x92b7a0c2 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d6a3846 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4194f32 ccid_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe4cf010 dccp_feat_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf6b58ba dccp_feat_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc802c3be dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9d22ebe dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd5557e49 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9e74a53 dccp_unhash -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbf6ddae ccid_hc_rx_new -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc57b8aa dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfb4aad4 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0525ff9 dccp_insert_option_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0984d6b dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe118da8e dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3d1947b dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2427258 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf386b613 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf42cc051 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf46a2801 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf54f1443 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x09acc552 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x17c0c226 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8aa0a175 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9036d97b dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x959596de dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb35e8f00 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x675a58ba nf_nat_proto_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xb251a017 nf_nat_proto_find_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xcd80a64b nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xd8ac0367 nf_nat_packet -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x094bc35b tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3e34f114 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6106f56f tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcea79207 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfa94d05a tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x049c1a63 ipv6_dup_options -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x06ba193e inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x1da1a2f0 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x2e195cee ip6_dst_lookup -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x327acae8 fl6_sock_lookup -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x39dd7586 inet6_csk_xmit -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x5b51f968 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x64d6f1bc ipv6_find_tlv -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0x77106227 ip6_dst_blackhole -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0xac838857 inet6_csk_search_req -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0xbb8be4ae ipv6_opt_accepted -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0xd571830f inet6_destroy_sock -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0xd6fb4525 ip6_sk_dst_lookup -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0xe8ad69ae inet6_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL net/ipv6/ipv6 0xf26ed0e1 ip6_find_1stfragopt -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09938e4d nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b82fd58 nf_ct_helper_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b8ac945 nf_conntrack_l3proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c11608a nf_ct_unlink_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c8f5e31 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11e43104 nf_conntrack_l4proto_udp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x165d030d nf_conntrack_l4proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x191c4377 nf_ct_expect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb8ead3 __nf_conntrack_helper_find_byname -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23d25386 nf_conntrack_l4proto_udp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2478bdf0 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25e649f2 nf_ct_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b9580cb nf_conntrack_flush -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3206ebfe nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x330755a3 nf_ct_iterate_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3437e477 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3609de81 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x460df90b nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dc5e033 nf_ct_l4proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5628e0c9 nf_conntrack_untracked -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x565c8e65 nf_ct_l3proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5701686e nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5872a018 __nf_conntrack_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62ba9464 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x644ffda9 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d5dd030 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76718084 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79fb6251 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c5b3787 print_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8365428f nf_conntrack_l4proto_tcp4 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a47a098 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e44fa29 nf_ct_free_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f2c8098 nf_conntrack_tcp_update -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6f62ec0 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xace98352 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb048036a nf_ct_invert_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb153200d nf_conntrack_l4proto_tcp6 -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2cc355e nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7d5d078 nf_conntrack_l4proto_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb94517ff nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb2a420b nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe3f2939 nf_conntrack_checksum -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc03ffbaa nf_ct_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0b9add1 nf_conntrack_l3proto_generic -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8bf9ffa nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce2b375b nf_ct_get_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcec47de1 __nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb2644cd nf_ct_l3protos -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc39845c __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe10de17b nf_conntrack_l3proto_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe74b454f __nf_conntrack_attach -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7ceacf0 nf_ct_l3proto_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea2f6f6a nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea30d732 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec1103dc nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef375da7 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf115d06d nf_conntrack_hash_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf380ec79 nf_ct_l4proto_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4303b82 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5966a1f nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9ae81a1 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xe9069684 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xa88fc426 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdceb8071 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0a75ad19 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x14baf07b nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4a4af3c9 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x77d0100a nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xacd5565c nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb454175c nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xb266762a nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1b00e4d5 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x74c827dd nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd6797b79 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xeca95329 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xee88a380 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x282d8502 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2acf9077 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b3dbc9b xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44aa2672 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4abebd54 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63f05053 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ab03453 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a7f63f2 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf0057178 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa51f6d6 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfebc858c xt_unregister_table -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043234d8 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a36d48d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19dfb703 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ede41db rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f1a347c svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1feb4a68 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0c1c3f rpcb_getport_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d51891e xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e57e544 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3525e129 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37b20f41 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cda2953 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44210e51 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b41b4aa xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d6f71c2 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64e4e24e svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68fe1fa5 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3b2bf8 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a756f7 xprt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e55703 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94955cd0 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44f58bf rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa50ee399 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76e9a10 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc000852 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc04211b0 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb224cf1 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddef774b xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe57fe66a svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf02b4c80 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdb36c14 rpc_create -EXPORT_SYMBOL_GPL sound/oss/ac97_codec 0x5b3a2b55 ac97_tune_hardware -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09f1a26a snd_soc_info_volsw_2r -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0db8e2fa snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18e7e9ba snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20d3b0a9 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29cfa5bb snd_soc_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cee1f01 snd_soc_info_enum_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d47ccbb snd_soc_dapm_stream_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ea2854f snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x453a3467 snd_soc_dapm_connect_input -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45b4ce4d snd_soc_put_volsw_2r -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53ad5d10 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5782e33a snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58c62fdd snd_soc_dapm_set_endpoint -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b7d8a54 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69af710a snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c2ad21e snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82906c25 snd_soc_get_volsw_2r -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88518a42 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd416dd snd_soc_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f8ed7bb snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2e64df2 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c1a20a snd_soc_free_pcms -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc002352f snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5cd4a29 snd_soc_dapm_sync_endpoints -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd07a2d59 snd_soc_info_volsw_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6960685 snd_soc_new_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0b9b420 snd_soc_new_pcms -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb4e421f snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb9a8c51 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9d6cc65 snd_soc_free_ac97_codec -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe11495f snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x00566d8f inotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x01473cd2 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x022264ce bd_claim_by_disk -EXPORT_SYMBOL_GPL vmlinux 0x02665768 cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0x02ccea56 lock_policy_rwsem_write -EXPORT_SYMBOL_GPL vmlinux 0x03374604 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0371a022 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x03c84f71 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x04508d42 platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x049c506c unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06a5c34c ide_register_region -EXPORT_SYMBOL_GPL vmlinux 0x06dcb745 input_class -EXPORT_SYMBOL_GPL vmlinux 0x07263d25 device_add -EXPORT_SYMBOL_GPL vmlinux 0x0759e55b vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x0760c7db init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x076cd48e devres_alloc -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07f99d3b get_cpu_sysdev -EXPORT_SYMBOL_GPL vmlinux 0x08283793 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x082d8870 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x0873c3be get_device -EXPORT_SYMBOL_GPL vmlinux 0x087b1abf uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x08fc0f6d pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09d7a6c4 crypto_free_tfm -EXPORT_SYMBOL_GPL vmlinux 0x0a85d4b8 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x0b04f699 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x0b5814d5 inotify_rm_watch -EXPORT_SYMBOL_GPL vmlinux 0x0c4bdd08 sysfs_schedule_callback -EXPORT_SYMBOL_GPL vmlinux 0x0d8ecdd4 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL vmlinux 0x0e05a68e inet_csk_search_req -EXPORT_SYMBOL_GPL vmlinux 0x10cdc7af fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x1126f14c platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x114bd8ce pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x11ced708 class_register -EXPORT_SYMBOL_GPL vmlinux 0x11d98ad0 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x12cd9d22 ide_set_pio -EXPORT_SYMBOL_GPL vmlinux 0x130b3c58 device_del -EXPORT_SYMBOL_GPL vmlinux 0x1355e69e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x138f7b69 platform_device_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x14235c9a rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x149db923 selinux_string_to_sid -EXPORT_SYMBOL_GPL vmlinux 0x14c6cab7 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x14d8dab4 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x1526d9ea invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x157590e7 inotify_inode_queue_event -EXPORT_SYMBOL_GPL vmlinux 0x15798e14 __ide_abort -EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x162935a5 flush_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x16836e04 speedstep_detect_processor -EXPORT_SYMBOL_GPL vmlinux 0x172e72d4 vdso_enabled -EXPORT_SYMBOL_GPL vmlinux 0x175e5db8 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x1772427b put_pid -EXPORT_SYMBOL_GPL vmlinux 0x17e05a94 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x18874b58 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x190949c5 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x191ad75e devres_get -EXPORT_SYMBOL_GPL vmlinux 0x191e3670 get_driver -EXPORT_SYMBOL_GPL vmlinux 0x1ac61e0b attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1b499645 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return -EXPORT_SYMBOL_GPL vmlinux 0x1d1e307b xfrm_calg_get_byid -EXPORT_SYMBOL_GPL vmlinux 0x1d1fc7dc crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x1d2843bb driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1e50a66f devres_add -EXPORT_SYMBOL_GPL vmlinux 0x1e5eb43b posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1f589929 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x1f704a0d tcp_reno_min_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x1f8ec1b3 acpi_get_pci_rootbridge_handle -EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick -EXPORT_SYMBOL_GPL vmlinux 0x1ff90533 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x2023542b unregister_timer_hook -EXPORT_SYMBOL_GPL vmlinux 0x203740fb device_rename -EXPORT_SYMBOL_GPL vmlinux 0x208558c6 srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2130d648 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x2135b127 stop_machine_run -EXPORT_SYMBOL_GPL vmlinux 0x21b1657d crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x21d9f9b4 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x22ab6012 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x22dab7fe ide_pio_cycle_time -EXPORT_SYMBOL_GPL vmlinux 0x235f4515 acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x23679939 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x237282e6 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x23841980 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x239cf772 audit_log_d_path -EXPORT_SYMBOL_GPL vmlinux 0x23ad8915 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x23cea294 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x24196ba2 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real -EXPORT_SYMBOL_GPL vmlinux 0x24b0adbe platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2548c9eb crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x259a776f cpufreq_frequency_table_cpuinfo -EXPORT_SYMBOL_GPL vmlinux 0x274245e9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x274e7521 audit_log_vformat -EXPORT_SYMBOL_GPL vmlinux 0x278e2408 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x27cdfe61 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x2885878b tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x28a82da4 snmp_mib_init -EXPORT_SYMBOL_GPL vmlinux 0x28af6052 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL vmlinux 0x294ed9c5 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x2976284f pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2ad0169c nf_register_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x2afd1712 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x2b20cf74 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x2d5d236e bus_register -EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2da25095 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2db09936 __percpu_populate_mask -EXPORT_SYMBOL_GPL vmlinux 0x2e338882 __create_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x2e4ba0f7 tty_prepare_flip_string_flags -EXPORT_SYMBOL_GPL vmlinux 0x2e7abfda percpu_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table -EXPORT_SYMBOL_GPL vmlinux 0x2ffc0ef0 device_move -EXPORT_SYMBOL_GPL vmlinux 0x302314b1 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x3043e658 put_inotify_watch -EXPORT_SYMBOL_GPL vmlinux 0x3078374a transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x30a92aa9 inotify_destroy -EXPORT_SYMBOL_GPL vmlinux 0x30d815b7 class_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x311396bb relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x31edadeb bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x32d4c54f sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x330fab86 inotify_init_watch -EXPORT_SYMBOL_GPL vmlinux 0x334ef9fb xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL vmlinux 0x33f99d1b blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x34199896 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x34c750c4 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x361f1ac9 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x36f76cfd input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x3747fe2f ide_in_drive_list -EXPORT_SYMBOL_GPL vmlinux 0x37b3ae9c inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x386a09a2 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x388f237a pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x38fec00d power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x394283d5 class_device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x39437136 tcp_init_congestion_ops -EXPORT_SYMBOL_GPL vmlinux 0x39525059 queue_work -EXPORT_SYMBOL_GPL vmlinux 0x397eaeb1 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x3a7f8b86 __local_bh_enable -EXPORT_SYMBOL_GPL vmlinux 0x3b161136 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x3be2f0af xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x3be7af02 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x3c596564 firmware_register -EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c9ac7ee tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cf7e221 default_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x3d429228 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3d8aa481 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x3d8cf789 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x3e03661f map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x3e1b5078 crypto_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x3ea7fdea platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3ecb8229 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x3ee4ccc7 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x3f238101 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x3ff1c0de hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x3ffb1ec3 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x412da7a7 sysdev_register -EXPORT_SYMBOL_GPL vmlinux 0x4132f1f3 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x4186676c ide_pio_timings -EXPORT_SYMBOL_GPL vmlinux 0x420bf363 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x4220e93d crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x42e89e91 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x43087b9b __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x4351daea proc_net_remove -EXPORT_SYMBOL_GPL vmlinux 0x436fd4c7 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x44a65d5c lock_policy_rwsem_read -EXPORT_SYMBOL_GPL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL_GPL vmlinux 0x45720244 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45789c0a __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x468372c1 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47684a42 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x476f675e securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x479397e4 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x47c2a440 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x496dd207 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4991fcee user_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x49ea5acf class_device_add -EXPORT_SYMBOL_GPL vmlinux 0x4a21b2b6 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x4a3a1a4b generic_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x4a57ad64 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x4a608804 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x4af7b3a2 tty_ldisc_get -EXPORT_SYMBOL_GPL vmlinux 0x4b88e224 device_power_up -EXPORT_SYMBOL_GPL vmlinux 0x4c4cdc01 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x4c68c206 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x4c995259 system_latency_constraint -EXPORT_SYMBOL_GPL vmlinux 0x4cdb4bd0 speedstep_get_processor_frequency -EXPORT_SYMBOL_GPL vmlinux 0x4cdde02c pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x4d65c6fc skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x4e23b0fa __ide_error -EXPORT_SYMBOL_GPL vmlinux 0x4efcbbc8 devm_kzalloc -EXPORT_SYMBOL_GPL vmlinux 0x4efd7d09 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x4f6862df debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x502c6089 srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x50c57770 inet_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50e618ef platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x51b32319 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x5230da84 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x52f08433 disk_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x5310473e mmput -EXPORT_SYMBOL_GPL vmlinux 0x53487edd crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x53edf16d attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x5492eeb2 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x5494bd81 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x55cd8cb9 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x55d29890 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x563935e7 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563aee7b copy_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56ce7280 unregister_latency_notifier -EXPORT_SYMBOL_GPL vmlinux 0x56e2c6c4 audit_log_untrustedstring -EXPORT_SYMBOL_GPL vmlinux 0x56f50446 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57dae2bc transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x58157640 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x58452885 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x586a6e66 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x58ec0389 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x58f37dca class_device_del -EXPORT_SYMBOL_GPL vmlinux 0x59139ae9 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x59e957b4 class_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ad09828 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b0965f4 __ip_route_output_key -EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5c19052f pci_claim_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ccd298c sysdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cf178ab pci_stop_bus_device -EXPORT_SYMBOL_GPL vmlinux 0x5cfcf0f1 percpu_free -EXPORT_SYMBOL_GPL vmlinux 0x5d2e8984 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x5d3b45ea set_cpus_allowed -EXPORT_SYMBOL_GPL vmlinux 0x5d4c9bda vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5f1cced5 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f9a11da srcu_readers_active -EXPORT_SYMBOL_GPL vmlinux 0x60717301 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60ce47de modify_acceptable_latency -EXPORT_SYMBOL_GPL vmlinux 0x61ffebb5 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x621eeabe class_device_create -EXPORT_SYMBOL_GPL vmlinux 0x623b77c2 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x626cdfb4 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x64003097 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x649953aa class_device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x6592e206 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65f436a3 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6689b8a2 remove_acceptable_latency -EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66d9343d pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x66f1b4e2 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x681f81c8 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x6830ef8e pci_unblock_user_cfg_access -EXPORT_SYMBOL_GPL vmlinux 0x684faa9a rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported -EXPORT_SYMBOL_GPL vmlinux 0x68a95378 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x697409db __crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x69919167 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x6b8a9294 class_device_get -EXPORT_SYMBOL_GPL vmlinux 0x6ba14e59 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ba2c3e6 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6c2bf065 ide_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify -EXPORT_SYMBOL_GPL vmlinux 0x6d14afd9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x6d51f71c fs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x6dcf00dd device_resume -EXPORT_SYMBOL_GPL vmlinux 0x6ed82bfe inotify_dentry_parent_queue_event -EXPORT_SYMBOL_GPL vmlinux 0x6fef6afb xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x726ddffc inotify_remove_watch_locked -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72ad4300 inet_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x72df826c nf_unregister_afinfo -EXPORT_SYMBOL_GPL vmlinux 0x72e10031 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x734cca0e tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x735bc935 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x739dcfea pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b1f76d do_posix_clock_nosettime -EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x75598bf3 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x75c8a11c inet_twdr_twkill_work -EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x766970a5 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x76e7c2ef atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x76ecda72 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x77b743c4 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x784d8841 inotify_inode_is_dead -EXPORT_SYMBOL_GPL vmlinux 0x78d45b30 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x7993d8a1 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x79bc10b0 kernel_subsys -EXPORT_SYMBOL_GPL vmlinux 0x79c8ef26 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x7a3fcf02 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7a4c1438 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x7a68ee86 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7ad459ab file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr -EXPORT_SYMBOL_GPL vmlinux 0x7b2164aa pci_create_bus -EXPORT_SYMBOL_GPL vmlinux 0x7b56d960 d_materialise_unique -EXPORT_SYMBOL_GPL vmlinux 0x7b6ee6a7 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x7b956a75 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x7c04d7fe xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL vmlinux 0x7c524dbd synchronize_acceptable_latency -EXPORT_SYMBOL_GPL vmlinux 0x7c918b53 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7cdccc47 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x7d2f29e1 sysdev_class_register -EXPORT_SYMBOL_GPL vmlinux 0x7d4bf28e register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ea7d551 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x7f19c836 unlock_policy_rwsem_write -EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8073b252 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x810d7e96 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x81a47317 set_acceptable_latency -EXPORT_SYMBOL_GPL vmlinux 0x81b2f684 register_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x81de929a kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x8250af10 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x826360fd do_posix_clock_nonanosleep -EXPORT_SYMBOL_GPL vmlinux 0x82d23e94 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x83553786 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x8487da71 ide_device_add -EXPORT_SYMBOL_GPL vmlinux 0x84cac4ba blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x850a8e21 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x850ab038 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x857ca1c5 inotify_init -EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0x85e5a3db ktime_get_ts -EXPORT_SYMBOL_GPL vmlinux 0x861c02a0 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x86237e73 unregister_jprobe -EXPORT_SYMBOL_GPL vmlinux 0x86833c3f pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869d7f99 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x86dd2602 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x8706fba7 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x87083a93 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x87098a2f hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x874de12a class_device_put -EXPORT_SYMBOL_GPL vmlinux 0x87690e07 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x87d03fc1 pci_block_user_cfg_access -EXPORT_SYMBOL_GPL vmlinux 0x87dc93bf ide_set_dma_mode -EXPORT_SYMBOL_GPL vmlinux 0x882cf8d5 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88d8c843 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0x890ce30e platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8962ef9c skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x89a92393 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x89adad79 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89c1ab39 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x8a6243e6 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x8af83aa6 firmware_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b5c4d86 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x8b6588b4 sysdev_class_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x8bad78c5 __percpu_alloc_mask -EXPORT_SYMBOL_GPL vmlinux 0x8bde0e25 exit_fs -EXPORT_SYMBOL_GPL vmlinux 0x8c04a0b7 sysfs_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x8c178cc3 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x8c3564b0 shrink_submounts -EXPORT_SYMBOL_GPL vmlinux 0x8c689608 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x8c8d9120 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8cca4fd9 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x8d7db96f blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8d8885f7 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x8dfba176 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x8e2ba43f alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x8f2274d7 do_sync_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x8f3305d6 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x8f57d9d1 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x8f60fc1f ide_setting_mtx -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x90cd7c89 class_device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x90ef2546 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x9119a30e inotify_rm_wd -EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0x91b278fb fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x9241c3ee device_power_down -EXPORT_SYMBOL_GPL vmlinux 0x92445aee hrtimer_get_res -EXPORT_SYMBOL_GPL vmlinux 0x9286661f device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x928a6e0e fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x929c6af8 class_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x92bf1550 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x92d6883f add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x92d84259 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x92fb217b dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0x92fea2a8 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x933740ca cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x937e54db ide_init_sg_cmd -EXPORT_SYMBOL_GPL vmlinux 0x939362d5 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free -EXPORT_SYMBOL_GPL vmlinux 0x94385ff2 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x944a40f3 nf_register_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x955ba781 __percpu_depopulate_mask -EXPORT_SYMBOL_GPL vmlinux 0x955de0cc xfrm_calg_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x95c439d8 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x95db3317 pci_restore_bars -EXPORT_SYMBOL_GPL vmlinux 0x961a8cd3 unlock_policy_rwsem_read -EXPORT_SYMBOL_GPL vmlinux 0x97d80781 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x989415d0 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x996954bc relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x9a25016f __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x9a8286fc user_read -EXPORT_SYMBOL_GPL vmlinux 0x9a8f3e2f device_create -EXPORT_SYMBOL_GPL vmlinux 0x9ad9938c namespace_sem -EXPORT_SYMBOL_GPL vmlinux 0x9b110cee transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9b683b45 scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9c118d0a crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x9c11addf srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x9c191f2e transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported -EXPORT_SYMBOL_GPL vmlinux 0x9d133613 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x9d6740df rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d76e555 nf_net_netfilter_sysctl_path -EXPORT_SYMBOL_GPL vmlinux 0x9d8d90ce pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0x9e0ee9ba sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x9e475101 sysdev_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9e490a11 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x9e879d54 crypto_hash_type -EXPORT_SYMBOL_GPL vmlinux 0x9ecfcb06 bd_release_from_disk -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa006e11e crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa16c68de elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2765988 ide_wait_not_busy -EXPORT_SYMBOL_GPL vmlinux 0xa2d85117 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa2e67f08 acpi_bus_generate_proc_event4 -EXPORT_SYMBOL_GPL vmlinux 0xa4295fe6 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa452f1a3 inotify_add_watch -EXPORT_SYMBOL_GPL vmlinux 0xa501a38d inet_csk_clone -EXPORT_SYMBOL_GPL vmlinux 0xa5c36cec inotify_unmount_inodes -EXPORT_SYMBOL_GPL vmlinux 0xa6e977bb get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xa727d561 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa806d415 cpufreq_frequency_table_target -EXPORT_SYMBOL_GPL vmlinux 0xa856a767 pci_assign_resource_fixed -EXPORT_SYMBOL_GPL vmlinux 0xa86db359 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xa883fcc2 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xa8a2fea3 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xa8d06e9c class_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xa8e35d4b get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xa963f49c tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa52bc27 register_latency_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa81e5c1 task_nice -EXPORT_SYMBOL_GPL vmlinux 0xaa8c4696 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0xaa940e40 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xaaa7e3a1 put_device -EXPORT_SYMBOL_GPL vmlinux 0xaac43c82 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xac097156 inet_csk_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xace26b4b inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xaece933d lookup_instantiate_filp -EXPORT_SYMBOL_GPL vmlinux 0xaefdf7e1 ide_init_disk -EXPORT_SYMBOL_GPL vmlinux 0xaf5d533f klist_del -EXPORT_SYMBOL_GPL vmlinux 0xb0bb9ed8 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xb0bfb89e debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb1212c08 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xb140bcda register_timer_hook -EXPORT_SYMBOL_GPL vmlinux 0xb1949e35 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xb1eb1d72 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb2533731 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb27005f5 device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb36c2e5a inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xb3cd6e26 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xb450e367 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xb4c14a4a __cpufreq_driver_getavg -EXPORT_SYMBOL_GPL vmlinux 0xb4d2e874 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait -EXPORT_SYMBOL_GPL vmlinux 0xb5667d18 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xb5f54afa __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xb62a91e6 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xb77c90c7 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xb8392ddd vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xb879ebd5 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xb8a71593 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xb9575da3 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0xba4e1708 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xba76dd74 sk_clone -EXPORT_SYMBOL_GPL vmlinux 0xba813bd6 lock_cpu_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xbaa3b4b4 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xbae39833 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbd18d916 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xbd63ca0d tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xbee5c26b securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xbf555372 get_proc_net -EXPORT_SYMBOL_GPL vmlinux 0xbf719fc6 device_schedule_callback_owner -EXPORT_SYMBOL_GPL vmlinux 0xbfc01518 skb_icv_walk -EXPORT_SYMBOL_GPL vmlinux 0xbfc26cbe ide_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbfd3d62a devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xc046b50e device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xc04a4a38 ide_find_port -EXPORT_SYMBOL_GPL vmlinux 0xc04bbc67 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xc05cc1b7 genhd_media_change_notify -EXPORT_SYMBOL_GPL vmlinux 0xc192b257 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xc2e5e638 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xc329096e call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0xc34bd7e8 ide_undecoded_slave -EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0xc3e155fb get_inotify_watch -EXPORT_SYMBOL_GPL vmlinux 0xc44115a0 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xc4f3030a free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc56adfd8 used_vectors -EXPORT_SYMBOL_GPL vmlinux 0xc57f9d28 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xc5d402b6 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc6144286 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xc6ac8880 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc710342f debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xc821d515 class_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc83d695b macvlan_handle_frame_hook -EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc8b8b7d3 sysdev_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc8f84f48 platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xc94d52d5 pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcafe97fc ide_get_best_pio_mode -EXPORT_SYMBOL_GPL vmlinux 0xcb4b343e input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcb4bf110 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xcb6547b3 blk_verify_command -EXPORT_SYMBOL_GPL vmlinux 0xcbb300de alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xcc131460 nf_unregister_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman -EXPORT_SYMBOL_GPL vmlinux 0xcc37c9f2 do_add_mount -EXPORT_SYMBOL_GPL vmlinux 0xcc3d7869 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xcc5ffb0a sysdev_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd42d680 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xcd480f13 put_driver -EXPORT_SYMBOL_GPL vmlinux 0xcdef819b sysdev_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xce4158e4 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xcf9a532b cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd0109837 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xd01fc97a init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xd0add8f8 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d73663 inotify_find_update_watch -EXPORT_SYMBOL_GPL vmlinux 0xd101d404 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xd19d0640 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xd1ee66dc elv_register -EXPORT_SYMBOL_GPL vmlinux 0xd2162e00 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xd31b510f class_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd3fd3d60 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd45a9cd7 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xd494ee54 speedstep_get_freqs -EXPORT_SYMBOL_GPL vmlinux 0xd5ed12a7 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xd6cc0471 class_device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd6f0ee15 sysdev_class_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd7150e44 k_handler -EXPORT_SYMBOL_GPL vmlinux 0xd74dee18 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd7616905 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd858aa0b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xd88a0f19 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xd8c7f7c3 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xd8d1f6a1 ide_error -EXPORT_SYMBOL_GPL vmlinux 0xd8de0261 percpu_populate -EXPORT_SYMBOL_GPL vmlinux 0xd93122da sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0xd9f9e160 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xda6f2358 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xdab6e01d sysdev_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb97e76f register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdbb4eaf0 device_register -EXPORT_SYMBOL_GPL vmlinux 0xdbb6cbd9 unlock_cpu_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xdcd68eac platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde5c832b kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0xdf297d29 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xdf511edb uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xdf5a9c15 hrtimer_start -EXPORT_SYMBOL_GPL vmlinux 0xdf6f2ddd tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xdf91a7b4 lookup_create -EXPORT_SYMBOL_GPL vmlinux 0xe03b70e4 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xe062bfc9 selinux_relabel_packet_permission -EXPORT_SYMBOL_GPL vmlinux 0xe101bb02 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xe157f623 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xe15d4936 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xe27ed75f dnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xe34c4522 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xe3b74f46 user_update -EXPORT_SYMBOL_GPL vmlinux 0xe3ea78bb simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xe4419d88 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xe44c53dd platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe46f5585 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xe473d6ea crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xe48a35b3 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xe5cc19b8 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition -EXPORT_SYMBOL_GPL vmlinux 0xe66a93ba cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe696bec8 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xe6984bdc find_pid -EXPORT_SYMBOL_GPL vmlinux 0xe6ec1384 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xe756861a inet_csk_reqsk_queue_prune -EXPORT_SYMBOL_GPL vmlinux 0xe7968a29 class_create -EXPORT_SYMBOL_GPL vmlinux 0xe7bc2eb4 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe85df603 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xe8ec5636 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xe8f04c56 per_cpu__gdt_page -EXPORT_SYMBOL_GPL vmlinux 0xe90baa3e generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xe92e680f user_match -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9640aad queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xe9ac4cdb destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea3376b0 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xec7f1697 ideprobe_init -EXPORT_SYMBOL_GPL vmlinux 0xec913911 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xec9eca68 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xecef9fbb acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xedb3adf7 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xedc2ee24 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xedda0854 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xee9be1ba inotify_find_watch -EXPORT_SYMBOL_GPL vmlinux 0xeeb842f9 queue_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xeedd89b4 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xef336e04 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xef483eab register_posix_clock -EXPORT_SYMBOL_GPL vmlinux 0xf0200637 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xf02de5ba srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf04f225f rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xf103205e cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xf15d191e pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xf184ad5c sysfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf20c88e3 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xf3fd51fe __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xf4395ec0 proc_net_fops_create -EXPORT_SYMBOL_GPL vmlinux 0xf4bbaa42 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5bbbc35 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6e03b77 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf72de7b0 kill_pid_info_as_uid -EXPORT_SYMBOL_GPL vmlinux 0xf807fd65 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf8b8c12a xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xf9211edb rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0xf92f05b2 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf95c0a86 nf_unregister_queue_handlers -EXPORT_SYMBOL_GPL vmlinux 0xf98b0275 tty_ldisc_put -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xfa2b5ea7 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xfab9699d acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0xfb2a3293 math_state_restore -EXPORT_SYMBOL_GPL vmlinux 0xfbc8ead5 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xfbec6375 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfc539a39 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfce04d75 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfcfca846 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfd0bdebd skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xfd1abbc3 ide_unregister_region -EXPORT_SYMBOL_GPL vmlinux 0xfd472c1c sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xfda8dc38 ide_end_dequeued_request -EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error -EXPORT_SYMBOL_GPL vmlinux 0xfe003363 nf_net_ipv4_netfilter_sysctl_path -EXPORT_SYMBOL_GPL vmlinux 0xfe17977a __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xfe7234f9 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xfee101fc simple_attr_close -EXPORT_SYMBOL_GPL vmlinux 0xff4e8aad acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xff714d7f class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xff83b2bf atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL_FUTURE drivers/usb/core/usbcore 0x95c1bb51 usb_match_id -EXPORT_SYMBOL_GPL_FUTURE drivers/usb/core/usbcore 0xef218d13 usb_deregister -EXPORT_SYMBOL_GPL_FUTURE drivers/usb/core/usbcore 0xfacf7f7d usb_register_driver -EXPORT_UNUSED_SYMBOL_GPL vmlinux 0x00000000 sys_open -EXPORT_UNUSED_SYMBOL_GPL vmlinux 0x00000000 sys_read reverted: --- linux-2.6.24/debian/abi/2.6.24-19.35/i386/virtual.modules +++ linux-2.6.24.orig/debian/abi/2.6.24-19.35/i386/virtual.modules @@ -1,682 +0,0 @@ -8021q -8139too -8390 -9pnet -9pnet_fd -9pnet_virtio -ac -ac97_bus -ac97_codec -acpi-cpufreq -act_gact -act_ipt -act_mirred -act_nat -act_pedit -ad1848 -aead -aedsp16 -aes_generic -aes-i586 -af_key -af_packet -agpgart -ah4 -ah6 -anubis -appletalk -arc4 -arcfb -arptable_filter -arp_tables -arpt_mangle -async_memcpy -async_tx -async_xor -ata_generic -ata_piix -authenc -auth_rpcgss -autofs -autofs4 -befs -bfs -binfmt_aout -binfmt_misc -bitblit -blkcipher -blowfish -bonding -bridge -bsd_comp -BusLogic -button -cast5 -cast6 -cbc -cdrom -cifs -cirrusfb -cls_basic -cls_fw -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cn -coda -configfs -container -cpufreq_conservative -cpufreq_ondemand -cpufreq_powersave -cpufreq_stats -cpufreq_userspace -cpuid -crc16 -crc32c -crc7 -crc-ccitt -crc-itu-t -cryptoloop -crypto_null -dca -dccp -dccp_ccid2 -dccp_ccid3 -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_tfrc_lib -dcdbas -decnet -deflate -dell_rbu -des_generic -dlm -dm-crypt -dm-emc -dm-hp-sw -dm-mirror -dm-mod -dm-multipath -dm-rdac -dm-round-robin -dm-snapshot -dm-zero -ds1682 -ds2760_battery -dummy -e1000 -e1000e -ebt_802_3 -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_ulog -ebt_vlan -ecb -ecryptfs -eeprom_93cx6 -efs -ehci-hcd -em_cmp -em_meta -em_nbyte -em_text -em_u32 -eql -esp4 -esp6 -evbug -evdev -exportfs -ext2 -ext3 -fan -fat -faulty -fbcon -fb_sys_fops -floppy -font -freevxfs -fuse -gameport -geode-aes -gf128mul -gfs2 -gx-suspmod -hangcheck-timer -hfs -hfsplus -hpfs -i2c-algo-bit -i2c-algo-pca -i2c-algo-pcf -i2c-core -i2c-dev -i2c-piix4 -i2c-taos-evm -icplus -ide-cd -ide-disk -ide-generic -ide_platform -ifb -inet_lro -intel-agp -intel-rng -ioatdma -ip6_tunnel -ipcomp -ipcomp6 -ipddp -ipg -ip_gre -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_watchdog -ip_queue -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -ip_tables -ipt_addrtype -ipt_ah -ipt_ecn -ipt_ECN -ipt_iprange -ipt_LOG -ipt_MASQUERADE -ipt_NETMAP -ipt_owner -ipt_recent -ipt_REDIRECT -ipt_REJECT -ipt_SAME -ipt_tos -ipt_TOS -ipt_ttl -ipt_TTL -ipt_ULOG -ipv6 -ip_vs -ip_vs_dh -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ipx -iscsi_tcp -isofs -isp116x-hcd -it8712f_wdt -iTCO_vendor_support -iTCO_wdt -ixgbe -jbd -jfs -kahlua -khazad -libata -libcrc32c -libiscsi -libphy -libsas -linear -llc -llc2 -lockd -lock_dlm -lock_nolock -longhaul -longrun -loop -lp -lrw -macvlan -mbcache -md4 -mdio-bitbang -md-mod -michael_mic -microcode -mii -mptbase -mptctl -mptfc -mptsas -mptscsih -mptspi -mpu401 -msdos -msnd -msnd_classic -msnd_pinnacle -msr -multipath -nbd -ne2k-pci -netconsole -nf_conntrack -nf_conntrack_amanda -nf_conntrack_ftp -nf_conntrack_ipv4 -nf_conntrack_irc -nf_conntrack_pptp -nf_conntrack_proto_gre -nf_conntrack_proto_udplite -nf_conntrack_tftp -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_irc -nf_nat_pptp -nf_nat_proto_gre -nf_nat_tftp -nfnetlink -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfsd -niu -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp437 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-1 -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -ntfs -nvram -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -opl3 -oprofile -output -p4-clockmod -p8022 -p8023 -padlock-aes -padlock-sha -parport -parport_pc -pas2 -pata_acpi -pata_amd -pata_artop -pata_atiixp -pata_cmd64x -pata_cs5536 -pata_hpt366 -pata_hpt3x3 -pata_platform -pata_via -pcbc -pcnet32 -pcspkr -pda_power -pktcdvd -pktgen -powernow-k6 -powernow-k7 -powernow-k8 -ppdev -ppp_async -ppp_deflate -ppp_generic -ppp_mppe -pppoe -pppol2tp -pppox -ppp_synctty -processor -psmouse -psnap -pss -qla1280 -qnx4 -quota_v1 -quota_v2 -r8a66597-hcd -raid0 -raid1 -raid456 -raid_class -raw -reiserfs -rng-core -rpcsec_gss_krb5 -rpcsec_gss_spkm3 -sb -sb1000 -sbc7240_wdt -sb_lib -sch_cbq -sch_dsmark -sch_gred -sch_hfsc -sch_htb -sch_ingress -sch_netem -sch_prio -sch_red -sch_sfq -sch_tbf -sch_teql -scsi_mod -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_wait_scan -sctp -sd_mod -seed -serio_raw -serpent -serport -sg -sha1_generic -sha256_generic -sha512 -shaper -sit -slhc -slip -smbfs -snd -snd-ac97-codec -snd-ad1889 -snd-ainstr-fm -snd-ainstr-simple -snd-ak4114 -snd-ak4531-codec -snd-ak4xxx-adda -snd-ali5451 -snd-als300 -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-azt3328 -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs5530 -snd-cs5535audio -snd-cs8427 -snd-darla20 -snd-darla24 -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigoio -snd-intel8x0 -snd-intel8x0m -snd-korg1212 -snd-layla20 -snd-layla24 -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-page-alloc -snd-pcm -snd-pcm-oss -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-rtctimer -snd-sb16-dsp -snd-sb-common -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-instr -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-oss -snd-seq-virmidi -snd-serial-u16550 -snd-soc-core -snd-sonicvibes -snd-timer -snd-trident -snd-trident-synth -snd-usb-audio -snd-usb-caiaq -snd-usb-lib -snd-usb-usx2y -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-vx222 -snd-vx-lib -snd-ymfpci -softcursor -softdog -sound -soundcore -sound_firmware -speedstep-centrino -speedstep-ich -sr_mod -ssb -sscape -sunrpc -syscopyarea -sysfillrect -sysimgblt -sysv -tcp_bic -tcp_cubic -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tea -tehuti -tgr192 -thermal -tileblit -tipc -trident -trix -ts_bm -ts_fsm -ts_kmp -tsl2550 -tun -tunnel4 -tunnel6 -twofish -twofish_common -twofish-i586 -uart401 -uart6850 -udf -ufs -uhci-hcd -uio -uio_cif -usbcore -usb-storage -uvesafb -vesafb -veth -vfat -vga16fb -vgastate -virtio -virtio_balloon -virtio_blk -virtio_net -virtio_pci -virtio_ring -v_midi -w1_ds2760 -wire -wp512 -xcbc -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_user -xfs -xor -x_tables -xt_CLASSIFY -xt_comment -xt_connbytes -xt_connlimit -xt_connmark -xt_CONNMARK -xt_CONNSECMARK -xt_conntrack -xt_dccp -xt_dscp -xt_DSCP -xt_esp -xt_hashlimit -xt_helper -xt_length -xt_limit -xt_mac -xt_mark -xt_MARK -xt_multiport -xt_NFLOG -xt_NFQUEUE -xt_NOTRACK -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_realm -xts -xt_sctp -xt_SECMARK -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_TCPMSS -xt_tcpudp -xt_time -xt_TRACE -xt_u32 -zlib_deflate reverted: --- linux-2.6.24/debian/abi/2.6.24-19.35/i386/generic.modules +++ linux-2.6.24.orig/debian/abi/2.6.24-19.35/i386/generic.modules @@ -1,1920 +0,0 @@ -3c359 -3c501 -3c503 -3c505 -3c507 -3c509 -3c515 -3c523 -3c527 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-xxxx -53c700 -6pack -8021q -8139cp -8139too -8250_accent -8250_boca -8250_exar_st16c554 -8250_fourport -8250_hub6 -8250_mca -82596 -8390 -9p -9pnet -9pnet_fd -9pnet_virtio -a100u2w -a3d -aacraid -abituguru -abituguru3 -ablkcipher -abyss -ac -ac3200 -ac97_bus -acecad -acenic -acpi-cpufreq -acpiphp -acpiphp_ibm -acquirewdt -act2000 -act200l-sir -act_gact -act_ipt -actisys-sir -act_mirred -act_nat -act_pedit -act_police -act_simple -ad7418 -adfs -adi -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm8211 -adm9240 -ads7846 -adt7470 -adutux -adv7170 -adv7175 -advansys -advantechwdt -aead -aec62xx -aes_generic -aes-i586 -affs -af_key -af_packet -af-rxrpc -agpgart -ah4 -ah6 -aha152x -aha152x_cs -aha1542 -aha1740 -ahci -aic79xx -aic7xxx -aic94xx -aiptek -aircable -airo -airo_cs -airprime -alauda -ali14xx -ali-agp -ali-ircc -alim1535_wdt -alim15x3 -alim7101_wdt -ambassador -amd64-agp -amd76xrom -amd8111e -amd-k7-agp -amd-rng -analog -anubis -aoe -apm -appledisplay -applesmc -appletalk -appletouch -applicom -arc4 -arcfb -arcmsr -arcnet -arc-rawmode -arc-rimi -ark3116 -arkfb -arlan -arptable_filter -arp_tables -arpt_mangle -asb100 -asix -asus_acpi -asus-laptop -async_memcpy -async_tx -async_xor -at1700 -at25 -ata_generic -ata_piix -aten -ati-agp -atiixp -ati_remote -ati_remote2 -atl1 -atlas_btns -atmel -atmel_cs -atmel_pci -atmtcp -atp -atp870u -atxp1 -aty128fb -atyfb -auerswald -authenc -auth_rpcgss -autofs -autofs4 -avma1_cs -avm_cs -ax25 -axnet_cs -b1 -b1dma -b1isa -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -bas_gigaset -battery -bay -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcm203x -bcm3510 -bcm43xx -befs -belkin_sa -berry_charge -bfs -bfusb -binfmt_aout -binfmt_misc -bitblit -blkcipher -block2mtd -blowfish -bluecard_cs -bluetooth -bnep -bnx2 -bonding -bpa10x -bpck -bpck6 -bpqether -br2684 -bridge -broadcom -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btcx-risc -btsdio -bttv -btuart_cs -budget -budget-av -budget-ci -budget-core -budget-patch -BusLogic -button -bw-qcam -c101 -c4 -cafe_ccic -cafe_nand -camellia -capi -capidrv -capifs -capmode -cassini -cast5 -cast6 -catc -cbc -cciss -cdc-acm -cdc_ether -cdc_subset -cdrom -cfag12864b -cfag12864bfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -chipreg -cicada -cifs -cinergyT2 -cirrusfb -ck804xrom -cls_basic -cls_fw -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm4000_cs -cm4040_cs -cmd64x -cmtp -cn -cobra -coda -com20020 -com20020_cs -com20020-isa -com20020-pci -com90io -com90xx -comm -compat_ioctl32 -configfs -container -cops -coretemp -corgi_bl -cosa -cp2101 -cpcihp_generic -cpcihp_zt5550 -cpia -cpia2 -cpia_pp -cpia_usb -cpqarray -cpqphp -cpu5wdt -cpufreq_conservative -cpufreq-nforce2 -cpufreq_ondemand -cpufreq_powersave -cpufreq_stats -cpufreq_userspace -cpuid -c-qcam -cr_bllcd -crc16 -crc32c -crc7 -crc-ccitt -crc-itu-t -crvml -cryptd -cryptoloop -crypto_null -cs53l32a -cs5530 -cs5535 -cs5535_gpio -cs553x_nand -cs89x0 -ct82c710 -cx22700 -cx22702 -cx2341x -cx23885 -cx24110 -cx24123 -cx25840 -cx8800 -cx8802 -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx88xx -cxacru -cxgb -cxgb3 -cy82c693 -cyber2000fb -cyberjack -cyblafb -cyclades -cyclomx -cycx_drv -cypress_cy7c63 -cypress_m8 -cytherm -dabusb -DAC960 -davicom -db9 -dc395x -dca -dccp -dccp_ccid2 -dccp_ccid3 -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dccp_tfrc_lib -dcdbas -de2104x -de4x5 -de600 -de620 -decnet -deflate -defxx -delkin_cb -dell_rbu -depca -des_generic -dib0070 -dib3000mb -dib3000mc -dib7000m -dib7000p -dibx000_common -digi_acceleport -dilnetpc -diskonchip -display -divacapi -divadidd -diva_idi -diva_mnt -divas -dl2k -dlci -dlm -dm9601 -dm-crypt -dme1737 -dm-emc -dmfe -dm-hp-sw -dm-mirror -dm-mod -dm-multipath -dm-rdac -dm-round-robin -dm-snapshot -dmx3191d -dm-zero -dn_rtmsg -doc2000 -doc2001 -doc2001plus -docecc -dock -docprobe -donauboe -dpt_i2o -drm -ds1337 -ds1374 -ds1621 -ds1682 -ds2482 -ds2490 -ds2760_battery -dsbr100 -dscc4 -dss1_divert -dst -dst_ca -dstr -dtc -dtc2278 -dtl1_cs -dtlk -dummy -dv1394 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-au6610 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-m920x -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -e100 -e1000 -e1000e -e2100 -e752x_edac -e7xxx_edac -eata -ebt_802_3 -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_ulog -ebt_vlan -ecb -econet -ecryptfs -edac_core -eepro -eepro100 -eeprom -eeprom_93cx6 -eexpress -efficeon-agp -efs -ehci-hcd -elo -elsa_cs -em28xx -em_cmp -emi26 -emi62 -em_meta -em_nbyte -empeg -em_text -emu10k1-gp -em_u32 -eni -epat -epca -epia -epic100 -eql -es3210 -esb2rom -esi-sir -esp4 -esp6 -et61x251 -eth1394 -eth16i -eurotechwdt -evbug -evdev -ewrk3 -exportfs -ext2 -ext3 -f71805f -f71882fg -f75375s -fakephp -fan -farsync -fat -faulty -fbcon -fb_ddc -fb_sys_fops -fcrypt -fd_mcs -fdomain -fdomain_cs -fealnx -ff-memless -firestream -fit2 -fit3 -fixed -floppy -fm801-gp -fmvj18x_cs -font -forcedeth -fore_200e -freevxfs -freq_table -friq -frpw -fscher -fschmd -fscpos -ftdi-elan -ftdi_sio -ftl -fujitsu-laptop -fujitsu_ts -funsoft -fuse -g450_pll -gadgetfs -gamecon -gameport -garmin_gps -gdth -generic_serial -gen_probe -geode-aes -geode-rng -g_ether -gf128mul -gf2k -g_file_storage -gfs2 -gigaset -girbil-sir -gl518sm -gl520sm -gl620a -g_NCR5380 -g_NCR5380_mmio -grip -grip_mp -g_serial -gtco -guillemot -gunze -gx1fb -gxfb -gx-suspmod -g_zero -hamachi -hangcheck-timer -hci_uart -hci_usb -hci_vhci -hdaps -hdlc -hdlc_cisco -hdlcdrv -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -he -hecubafb -hermes -hexium_gemini -hexium_orion -hfc4s8s_l1 -hfc_usb -hfs -hfsplus -hgafb -hid -hidp -hisax -hisax_fcpcipnp -hisax_isac -hisax_st5481 -horizon -hostap -hostap_cs -hostap_pci -hostap_plx -hostess_sv11 -hp -hp100 -hp4x -hpfs -hp-plus -hpt34x -hpt366 -hptiop -ht6560b -hwmon-vid -i2c-algo-bit -i2c-algo-pca -i2c-algo-pcf -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-core -i2c-dev -i2c-i801 -i2c-i810 -i2c-matroxfb -i2c-nforce2 -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-isa -i2c-piix4 -i2c-prosavage -i2c-savage4 -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-voodoo3 -i2o_block -i2o_bus -i2o_config -i2o_core -i2o_proc -i2o_scsi -i3000_edac -i5000_edac -i5k_amb -i6300esb -i810 -i810fb -i82092 -i82365 -i82860_edac -i82875p_edac -i82975x_edac -i830 -i8k -i915 -ib700wdt -ib_addr -ib_cm -ib_core -ib_ipoib -ib_iser -ib_mad -ibmasm -ibmasr -ibmcam -ibmlana -ibmmca -ibmpex -ibmphp -ib_mthca -ibmtr -ibmtr_cs -ib_sa -ib_srp -ib_ucm -ib_umad -ib_uverbs -ichxrom -icn -icplus -ide-cd -ide-core -ide-disk -ide-floppy -ide-generic -ide_platform -ide-scsi -ide-tape -idmouse -idt77252 -ieee1394 -ieee80211 -ieee80211_crypt -ieee80211_crypt_ccmp -ieee80211_crypt_tkip -ieee80211_crypt_wep -ieee80211softmac -ifb -iforce -imm -in2000 -inet_lro -inftl -initio -inport -input-polldev -intel-agp -intelfb -intel-rng -intel_vr_nor -interact -ioatdma -ioc4 -io_edgeport -io_ti -iowarrior -ip6_queue -ip6table_filter -ip6table_mangle -ip6table_raw -ip6_tables -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_hl -ip6t_HL -ip6t_ipv6header -ip6t_LOG -ip6t_mh -ip6t_owner -ip6t_REJECT -ip6t_rt -ip6_tunnel -ipaq -ipcomp -ipcomp6 -ipddp -ipg -ip_gre -iphase -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_watchdog -ip_queue -ipr -ips -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -ip_tables -ipt_addrtype -ipt_ah -ipt_CLUSTERIP -ipt_ecn -ipt_ECN -ipt_iprange -ipt_LOG -ipt_MASQUERADE -ipt_NETMAP -ipt_owner -ipt_recent -ipt_REDIRECT -ipt_REJECT -ipt_SAME -ipt_tos -ipt_TOS -ipt_ttl -ipt_TTL -ipt_ULOG -ipv6 -ip_vs -ip_vs_dh -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_nq -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ipw -ipw2100 -ipw2200 -ipx -ircomm -ir-common -ircomm-tty -irda -irda-usb -ir-kbd-i2c -irlan -irnet -irtty-sir -iscsi_tcp -isdn -isdn_bsdcomp -isdnhdlc -isl6421 -isofs -isp116x-hcd -it87 -it8712f_wdt -iTCO_vendor_support -iTCO_wdt -ivtv -ivtvfb -iw_c2 -iw_cm -iw_cxgb3 -ixgb -ixgbe -ixj -ixj_pcmcia -jbd -jedec_probe -jffs2 -jfs -joydev -joydump -jsm -k8temp -kafs -kaweth -kbic -kbtab -kernelcapi -keyspan -keyspan_pda -keyspan_remote -khazad -kingsun-sir -kl5kusb105 -kobil_sct -konicawc -ks0108 -ks0127 -ks959-sir -ksdazzle-sir -ktti -kvm -kvm-amd -kvm-intel -kyrofb -l2cap -l440gx -l64781 -lanai -lance -lanstreamer -lapb -lapbether -lcd -ldusb -lec -led-class -leds-net48xx -leds-wrap -ledtrig-heartbeat -ledtrig-timer -legousbtower -lgdt330x -libata -libcrc32c -libertas -libertas_cs -libertas_sdio -libiscsi -libphy -libsas -libsrp -libusual -lightning -linear -litelink-sir -lkkbd -llc2 -lm63 -lm70 -lm75 -lm77 -lm78 -lm80 -lm83 -lm85 -lm87 -lm90 -lm92 -lm93 -lmc -lnbp21 -lne390 -lockd -lock_dlm -lock_nolock -logibm -longhaul -longrun -loop -lp -lp486e -lpfc -lrw -ltpc -ltv350qv -lxfb -lxt -lzo_compress -lzo_decompress -m25p80 -ma600-sir -mac80211 -machzwd -macmodes -macvlan -madgemc -magellan -map_absent -map_funcs -map_ram -map_rom -marvell -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_DAC1064 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -matroxfb_Ti3026 -matrox_w1 -max1619 -max6650 -max6875 -mbcache -mcp2120-sir -mcs7780 -mcs7830 -mct_u232 -md4 -mdacon -mdc800 -mdio-bitbang -md-mod -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -meye -mga -michael_mic -microcode -microtek -mii -minix -mixcomwd -mk712 -mkiss -mlx4_core -mlx4_ib -mmc_block -mmc_core -mos7720 -mos7840 -mpoa -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -msdos -msi-laptop -msp3400 -msr -mt2060 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mtd -mtd_blkdevs -mtdblock -mtdblock_ro -mtdchar -mtdconcat -mtd_dataflash -mtdoops -mtdram -mtouch -multipath -mwave -mxser_new -myri10ge -n2 -nand -nand_ecc -nand_ids -nandsim -natsemi -navman -nbd -ncpfs -NCR53c406a -NCR_D700 -NCR_Q720_mod -ne -ne2 -ne2k-pci -ne3210 -neofb -net1080 -net2280 -netconsole -netrom -netsc520 -nettel -netwave_cs -netxen_nic -newtonkbd -nf_conntrack -nf_conntrack_amanda -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_ipv4 -nf_conntrack_ipv6 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_proto_gre -nf_conntrack_proto_sctp -nf_conntrack_proto_udplite -nf_conntrack_sip -nf_conntrack_tftp -nf_nat -nf_nat_amanda -nf_nat_ftp -nf_nat_h323 -nf_nat_irc -nf_nat_pptp -nf_nat_proto_gre -nf_nat_sip -nf_nat_snmp_basic -nf_nat_tftp -nfnetlink -nfnetlink_log -nfnetlink_queue -nfs -nfs_acl -nfsd -nftl -n_hdlc -ni52 -ni65 -nicstar -niu -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp437 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-1 -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nmclan_cs -n_r3964 -ns558 -ns83820 -ns87415 -nsc_gpio -nsc-ircc -nsp32 -nsp_cs -ntfs -nvidia-agp -nvidiafb -nvram -nxt200x -nxt6000 -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ohci1394 -ohci-hcd -old_belkin-sir -olympic -omninet -on20 -on26 -onenand -onenand_sim -oprofile -opti621 -option -or51132 -or51211 -orinoco -orinoco_cs -osst -oti6858 -output -ov7670 -ovcamchip -p4-clockmod -p54common -p54pci -p54usb -p8023 -padlock-aes -padlock-sha -paride -parkbd -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pas16 -pata_acpi -pata_amd -pata_artop -pata_atiixp -pata_cmd64x -pata_cs5520 -pata_cs5536 -pata_efar -pata_hpt366 -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_marvell -pata_mpiix -pata_netcell -pata_oldpiix -pata_pcmcia -pata_pdc2027x -pata_platform -pata_qdi -pata_rz1000 -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc110pad -pc300 -pc87360 -pc8736x_gpio -pc87413_wdt -pc87427 -pca9539 -pcbc -pcbit -pcd -pcf8574 -pcf8591 -pci -pci200syn -pciehp -pci_hotplug -pcilynx -pcips2 -pcmcia -pcmcia_core -pcnet32 -pcnet_cs -pcspkr -pcwd -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc202xx_old -pdc_adma -pegasus -penmount -pf -pg -phantom -phidget -phidgetkit -phidgetmotorcontrol -phidgetservo -phonedev -phram -physmap -pktcdvd -pktgen -pl2303 -plat_nand -plat-ram -plip -plusb -pluto2 -pm2fb -pm3fb -pmc551 -pms -pnc2000 -powermate -powernow-k6 -powernow-k7 -powernow-k8 -ppa -ppdev -ppp_async -ppp_deflate -ppp_generic -ppp_mppe -pppoatm -pppoe -pppol2tp -pppox -ppp_synctty -prism54 -processor -progear_bl -proteon -psi240i -psmouse -pt -pvrusb2 -pwc -qd65xx -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlogic_cs -qlogicfas -qlogicfas408 -qnx4 -qsemi -qt1010 -quickcam_messenger -quota_v1 -quota_v2 -r128 -r8169 -r82600_edac -r8a66597-hcd -radeon -radeonfb -radio-aimslab -radio-aztech -radio-cadet -radio-gemtek -radio-gemtek-pci -radio-maestro -radio-maxiradio -radio-rtrack2 -radio-sf16fmi -radio-sf16fmr2 -radio-terratec -radio-trust -radio-typhoon -radio-zoltrix -raid0 -raid1 -raid10 -raid456 -raid_class -raw -raw1394 -ray_cs -rdma_cm -rdma_ucm -redboot -reed_solomon -reiserfs -rfc1051 -rfc1201 -rfcomm -rfd_ftl -rfkill -rfkill-input -ricoh_mmc -rio500 -rivafb -rndis_host -rocket -romfs -rose -rpcsec_gss_krb5 -rpcsec_gss_spkm3 -rrunner -rsrc_nonstatic -rt2400pci -rt2500pci -rt2500usb -rt2x00lib -rt2x00pci -rt2x00usb -rt61pci -rt73usb -rtc-core -rtc-ds1307 -rtc-ds1374 -rtc-ds1553 -rtc-ds1672 -rtc-ds1742 -rtc-isl1208 -rtc-lib -rtc-m41t80 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-pcf8563 -rtc-pcf8583 -rtc-rs5c348 -rtc-rs5c372 -rtc-stk17ta8 -rtc-test -rtc-v3020 -rtc-x1205 -rtl8150 -rtl8187 -rxkad -s1d13xxxfb -s2io -s3fb -s5h1409 -s5h1420 -saa5246a -saa5249 -saa6588 -saa6752hs -saa7110 -saa7111 -saa7114 -saa7115 -saa7127 -saa7134 -saa7134-dvb -saa7134-empress -saa7146 -saa7146_vv -saa7185 -saa7191 -safe_serial -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savage -savagefb -sb1000 -sbc60xxwdt -sbc7240_wdt -sbc8360 -sbc_epx_c3 -sbc_gxx -sbni -sbp2 -sbs -sbshc -sc -sc1200 -sc1200wdt -sc520cdp -sc520_wdt -sc92031 -scb2_flash -scc -sch_atm -sch_cbq -sch_dsmark -sch_gred -sch_hfsc -sch_htb -sch_ingress -sch_netem -sch_prio -sch_red -sch_sfq -sch_tbf -sch_teql -sco -scsi_debug -scsi_mod -scsi_tgt -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -scsi_wait_scan -sctp -scx200_32 -scx200_acb -scx200_docflash -scx200_gpio -scx200_hrt -scx200_i2c -scx200_wdt -sdhci -sdio_uart -sdla -sd_mod -se401 -seagate -sealevel -sedlbauer_cs -seed -seeq8005 -ser_gigaset -serial_cs -serio_raw -sermouse -serpent -serport -sg -sha1_generic -sha256_generic -sha512 -shaper -shpchp -sidewinder -sierra -sim710 -sir-dev -sis -sis190 -sis5595 -sis900 -sis-agp -sisfb -sisusbvga -sit -skfp -skge -skisa -sky2 -sl811_cs -sl811-hcd -slhc -slip -slram -sm501 -sm501fb -smbfs -smc9194 -smc91c92_cs -smc-mca -smctr -smc-ultra -smc-ultra32 -smsc -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc-ircc2 -sn9c102 -softcursor -softdog -sony-laptop -sonypi -soundcore -sp8870 -sp887x -spaceball -spaceorb -specialix -spectrum_cs -speedstep-centrino -speedstep-ich -speedstep-lib -speedstep-smi -speedtch -spi_bitbang -spi_butterfly -spidev -spi_lm70llp -sr_mod -ssb -ssfdc -sstfb -st -starfire -stex -stinger -stir4200 -stowaway -stradis -strip -stv0297 -stv0299 -stv680 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -svgalib -sworks-agp -sx -sx8 -sym53c416 -sym53c500_cs -sym53c8xx -synclink -synclink_cs -synclink_gt -synclinkmp -syncppp -syscopyarea -sysfillrect -sysimgblt -sysv -t128 -t1isa -t1pci -tc86c001 -tcic -tcm825x -tcp_bic -tcp_cubic -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_probe -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tda10021 -tda10023 -tda1004x -tda10086 -tda7432 -tda8083 -tda826x -tda827x -tda8290 -tda9840 -tda9875 -tdfx -tdfxfb -tea -tea5761 -tea5767 -tea6415c -tea6420 -tehuti -tekram-sir -teles_cs -tg3 -tgr192 -thermal -thinkpad_acpi -thmc50 -tifm_7xx1 -tifm_core -tifm_sd -tileblit -tipc -ti_usb_3410_5052 -tlan -tlclk -tle62x0 -tlv320aic23b -tmdc -tms380tr -tmscsim -tmspci -toshiba -toshiba_acpi -touchright -touchwin -tpm -tpm_atmel -tpm_bios -tpm_infineon -tpm_nsc -tpm_tis -trancevibrator -tridentfb -trm290 -ts5500_flash -ts_bm -ts_fsm -ts_kmp -tsl2550 -ttpci-eeprom -ttusb_dec -ttusbdecfe -tua6100 -tulip -tun -tuner -tuner-3036 -tuner-simple -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp5150 -twidjoy -twofish -twofish_common -twofish-i586 -typhoon -u132-hcd -u14-34f -ubi -ucb1400_ts -udf -ueagle-atm -ufs -uhci-hcd -uinput -uio -uio_cif -uli526x -ultracam -ultrastor -umc8672 -umem -upd64031a -upd64083 -uPD98402 -usb8xxx -usbatm -usbcore -usb_debug -usb_gigaset -usbhid -usbkbd -usblcd -usbled -usblp -usbmon -usbmouse -usbnet -usbserial -usb-storage -usbtouchscreen -usbvideo -usbvision -uss720 -uvesafb -v4l1-compat -v4l2-common -v4l2-int-device -ves1820 -ves1x93 -vesafb -veth -vfat -vga16fb -vgastate -via -via686a -via-agp -via-ircc -via-rhine -via-rng -via-velocity -vicam -video -video1394 -videobuf-core -videobuf-dma-sg -videobuf-dvb -videobuf-vmalloc -videocodec -videodev -virtio -virtio_balloon -virtio_blk -virtio_net -virtio_pci -virtio_ring -visor -vitesse -vivi -vlsi_ir -vmlfb -vp27smpx -vpx3220 -vsxxxaa -vt1211 -vt8231 -vt8623fb -w1_ds2433 -w1_ds2760 -w1_smem -w1_therm -w83627ehf -w83627hf -w83627hf_wdt -w83697hf_wdt -w83781d -w83791d -w83792d -w83793 -w83877f_wdt -w83977af_ir -w83977f_wdt -w83l785ts -w9966 -w9968cf -wacom -wafer5823wdt -wanrouter -wanxl -warrior -wavelan -wavelan_cs -wbsd -wd -wd7000 -wdt -wdt_pci -whiteheat -winbond-840 -wire -wistron_btns -wl3501_cs -wm8739 -wm8775 -wp512 -x25 -x25_asy -xcbc -xd -xfrm4_mode_beet -xfrm4_mode_transport -xfrm4_mode_tunnel -xfrm4_tunnel -xfrm6_mode_beet -xfrm6_mode_ro -xfrm6_mode_transport -xfrm6_mode_tunnel -xfrm6_tunnel -xfrm_user -xfs -xirc2ps_cs -xircom_cb -xor -xpad -xprtrdma -x_tables -xt_CLASSIFY -xt_comment -xt_connbytes -xt_connlimit -xt_connmark -xt_CONNMARK -xt_CONNSECMARK -xt_conntrack -xt_dccp -xt_dscp -xt_DSCP -xt_esp -xt_hashlimit -xt_helper -xtkbd -xt_length -xt_limit -xt_mac -xt_mark -xt_MARK -xt_multiport -xt_NFLOG -xt_NFQUEUE -xt_NOTRACK -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_realm -xts -xt_sctp -xt_SECMARK -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_TCPMSS -xt_tcpudp -xt_time -xt_TRACE -xt_u32 -xusbatm -yam -yealink -yellowfin -yenta_socket -z85230 -zatm -zc0301 -zd1201 -zd1211rw -zl10353 -zlib_deflate -znet -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx reverted: --- linux-2.6.24/debian/abi/2.6.24-19.35/i386/generic +++ linux-2.6.24.orig/debian/abi/2.6.24-19.35/i386/generic @@ -1,6900 +0,0 @@ -EXPORT_SYMBOL arch/x86/kernel/scx200_32 0x254e5667 scx200_gpio_base -EXPORT_SYMBOL arch/x86/kernel/scx200_32 0x35a3c008 scx200_gpio_configure -EXPORT_SYMBOL arch/x86/kernel/scx200_32 0x8cfa375c scx200_gpio_shadow -EXPORT_SYMBOL arch/x86/kernel/scx200_32 0x907665bd scx200_cb_base -EXPORT_SYMBOL arch/x86/kvm/kvm 0xa5ae7259 kvm_read_guest_atomic -EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble -EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/processor 0xa4deb63c acpi_processor_notify_smm -EXPORT_SYMBOL drivers/acpi/processor 0xb9299c55 acpi_processor_register_performance -EXPORT_SYMBOL drivers/acpi/processor 0xe8a3605f acpi_processor_set_thermal_limit -EXPORT_SYMBOL drivers/acpi/processor 0xeacddb89 acpi_processor_preregister_performance -EXPORT_SYMBOL drivers/acpi/processor 0xfe459f2a acpi_processor_unregister_performance -EXPORT_SYMBOL drivers/atm/suni 0xbffa0df4 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xb32d4ad6 uPD98402_init -EXPORT_SYMBOL drivers/block/loop 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL drivers/block/loop 0xc8f64fda loop_register_transfer -EXPORT_SYMBOL drivers/block/paride/paride 0x3000a9c3 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x3a88b5bc pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x4454ce55 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x5d256041 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x733d62d7 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x916dfab3 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xc3cf96f8 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xc9dfaf90 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xca0e4c2b pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xcff2f064 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xdce4d74d pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xf2b7c588 pi_release -EXPORT_SYMBOL drivers/cdrom/cdrom 0x04e5f9fd cdrom_number_of_slots -EXPORT_SYMBOL drivers/cdrom/cdrom 0x0b56c424 cdrom_ioctl -EXPORT_SYMBOL drivers/cdrom/cdrom 0x20a87ba5 unregister_cdrom -EXPORT_SYMBOL drivers/cdrom/cdrom 0x2708e111 cdrom_get_last_written -EXPORT_SYMBOL drivers/cdrom/cdrom 0x2b45181f cdrom_media_changed -EXPORT_SYMBOL drivers/cdrom/cdrom 0x3d28986a cdrom_mode_sense -EXPORT_SYMBOL drivers/cdrom/cdrom 0x4f476e96 init_cdrom_command -EXPORT_SYMBOL drivers/cdrom/cdrom 0x573a65d1 cdrom_mode_select -EXPORT_SYMBOL drivers/cdrom/cdrom 0x64ce1042 cdrom_release -EXPORT_SYMBOL drivers/cdrom/cdrom 0x945842bf cdrom_open -EXPORT_SYMBOL drivers/cdrom/cdrom 0xec64b92e register_cdrom -EXPORT_SYMBOL drivers/cdrom/cdrom 0xfc420903 cdrom_get_media_event -EXPORT_SYMBOL drivers/char/agp/agpgart 0x03f2411d agp_alloc_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0x157000b6 agp_generic_free_gatt_table -EXPORT_SYMBOL drivers/char/agp/agpgart 0x158a24fc agp_allocate_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x1accc3a5 agp_copy_info -EXPORT_SYMBOL drivers/char/agp/agpgart 0x1e2f5175 agp_generic_destroy_page -EXPORT_SYMBOL drivers/char/agp/agpgart 0x1e8d4c4d agp_collect_device_status -EXPORT_SYMBOL drivers/char/agp/agpgart 0x24845f10 agp_create_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x2a888223 agp_generic_free_by_type -EXPORT_SYMBOL drivers/char/agp/agpgart 0x429bcf28 agp_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL drivers/char/agp/agpgart 0x4e79cf6f agp_find_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0x531860a8 agp_generic_create_gatt_table -EXPORT_SYMBOL drivers/char/agp/agpgart 0x53b327fe agp_generic_type_to_mask_type -EXPORT_SYMBOL drivers/char/agp/agpgart 0x5b8e8117 agp_alloc_page_array -EXPORT_SYMBOL drivers/char/agp/agpgart 0x614eb6c4 agp_unbind_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x6624982b agp_enable -EXPORT_SYMBOL drivers/char/agp/agpgart 0x673f815e agp_bridges -EXPORT_SYMBOL drivers/char/agp/agpgart 0x6c253c0a agp_free_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x7538b132 agp_off -EXPORT_SYMBOL drivers/char/agp/agpgart 0x8158f674 agp_backend_acquire -EXPORT_SYMBOL drivers/char/agp/agpgart 0x8acfa6be agp_bind_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0x8eff529c get_agp_version -EXPORT_SYMBOL drivers/char/agp/agpgart 0x8f2942fe agp_generic_alloc_user -EXPORT_SYMBOL drivers/char/agp/agpgart 0x9e8f3cb9 agp_generic_enable -EXPORT_SYMBOL drivers/char/agp/agpgart 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL drivers/char/agp/agpgart 0xaac2557b agp_put_bridge -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc45fd3ea agp_backend_release -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL drivers/char/agp/agpgart 0xc65abeb7 agp3_generic_sizes -EXPORT_SYMBOL drivers/char/agp/agpgart 0xcccaedf3 agp3_generic_tlbflush -EXPORT_SYMBOL drivers/char/agp/agpgart 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL drivers/char/agp/agpgart 0xd83e84cf agp_generic_alloc_by_type -EXPORT_SYMBOL drivers/char/agp/agpgart 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL drivers/char/agp/agpgart 0xe5702a51 agp_free_page_array -EXPORT_SYMBOL drivers/char/agp/agpgart 0xe5dd9e2b agp_generic_insert_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0xe6327d9d agp_generic_alloc_page -EXPORT_SYMBOL drivers/char/agp/agpgart 0xe6d5c272 agp_device_command -EXPORT_SYMBOL drivers/char/agp/agpgart 0xf6fc722a agp_generic_remove_memory -EXPORT_SYMBOL drivers/char/agp/agpgart 0xf83f1182 agp_generic_mask_memory -EXPORT_SYMBOL drivers/char/drm/drm 0x072cb140 drm_agp_acquire -EXPORT_SYMBOL drivers/char/drm/drm 0x0836695c drm_sman_takedown -EXPORT_SYMBOL drivers/char/drm/drm 0x181b74c7 drm_get_resource_len -EXPORT_SYMBOL drivers/char/drm/drm 0x1b644152 drm_agp_bind -EXPORT_SYMBOL drivers/char/drm/drm 0x1ef2d889 drm_core_reclaim_buffers -EXPORT_SYMBOL drivers/char/drm/drm 0x2000fab5 drm_init -EXPORT_SYMBOL drivers/char/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/char/drm/drm 0x2130f7f6 drm_pci_alloc -EXPORT_SYMBOL drivers/char/drm/drm 0x21451ac4 drm_sman_owner_cleanup -EXPORT_SYMBOL drivers/char/drm/drm 0x2243982e drm_mmap -EXPORT_SYMBOL drivers/char/drm/drm 0x2916bf63 drm_sman_cleanup -EXPORT_SYMBOL drivers/char/drm/drm 0x2c39accd drm_pci_free -EXPORT_SYMBOL drivers/char/drm/drm 0x2eb2f903 drm_sman_free_key -EXPORT_SYMBOL drivers/char/drm/drm 0x3074f033 drm_order -EXPORT_SYMBOL drivers/char/drm/drm 0x48f61f02 drm_getsarea -EXPORT_SYMBOL drivers/char/drm/drm 0x4face0b6 drm_poll -EXPORT_SYMBOL drivers/char/drm/drm 0x55f060ee drm_sman_set_range -EXPORT_SYMBOL drivers/char/drm/drm 0x64bdc85a drm_addmap -EXPORT_SYMBOL drivers/char/drm/drm 0x665365f2 drm_agp_free -EXPORT_SYMBOL drivers/char/drm/drm 0x6acf2e6a drm_agp_alloc -EXPORT_SYMBOL drivers/char/drm/drm 0x6d0b0509 drm_ati_pcigart_init -EXPORT_SYMBOL drivers/char/drm/drm 0x6eff1fee drm_addbufs_agp -EXPORT_SYMBOL drivers/char/drm/drm 0x79d7f663 drm_open -EXPORT_SYMBOL drivers/char/drm/drm 0x82f2c930 drm_release -EXPORT_SYMBOL drivers/char/drm/drm 0x89621bb9 drm_core_get_reg_ofs -EXPORT_SYMBOL drivers/char/drm/drm 0x8bee96fe drm_i_have_hw_lock -EXPORT_SYMBOL drivers/char/drm/drm 0x8d5f8de9 drm_locked_tasklet -EXPORT_SYMBOL drivers/char/drm/drm 0x95df772c drm_vbl_send_signals -EXPORT_SYMBOL drivers/char/drm/drm 0x991ff83f drm_core_get_map_ofs -EXPORT_SYMBOL drivers/char/drm/drm 0x9aa5e298 drm_sg_alloc -EXPORT_SYMBOL drivers/char/drm/drm 0xa35ea9dd drm_ioctl -EXPORT_SYMBOL drivers/char/drm/drm 0xaa246b80 drm_get_resource_start -EXPORT_SYMBOL drivers/char/drm/drm 0xaf29788e drm_sman_init -EXPORT_SYMBOL drivers/char/drm/drm 0xb9768998 drm_idlelock_take -EXPORT_SYMBOL drivers/char/drm/drm 0xba795eb7 drm_agp_info -EXPORT_SYMBOL drivers/char/drm/drm 0xbf568202 drm_rmmap -EXPORT_SYMBOL drivers/char/drm/drm 0xc2fda83e drm_core_ioremap -EXPORT_SYMBOL drivers/char/drm/drm 0xcc28d7d8 drm_core_ioremapfree -EXPORT_SYMBOL drivers/char/drm/drm 0xcd173a0b drm_agp_unbind -EXPORT_SYMBOL drivers/char/drm/drm 0xce888399 drm_exit -EXPORT_SYMBOL drivers/char/drm/drm 0xceeed9b4 drm_ati_pcigart_cleanup -EXPORT_SYMBOL drivers/char/drm/drm 0xd3028e75 drm_sman_set_manager -EXPORT_SYMBOL drivers/char/drm/drm 0xd44c84cd drm_irq_uninstall -EXPORT_SYMBOL drivers/char/drm/drm 0xd4d3d9df drm_idlelock_release -EXPORT_SYMBOL drivers/char/drm/drm 0xe919dd5c drm_sman_owner_clean -EXPORT_SYMBOL drivers/char/drm/drm 0xea941778 drm_agp_enable -EXPORT_SYMBOL drivers/char/drm/drm 0xf441b341 drm_addbufs_pci -EXPORT_SYMBOL drivers/char/drm/drm 0xf5ba1046 drm_fasync -EXPORT_SYMBOL drivers/char/drm/drm 0xf6aadd7d drm_agp_release -EXPORT_SYMBOL drivers/char/drm/drm 0xfdfbad19 drm_sman_alloc -EXPORT_SYMBOL drivers/char/drm/drm 0xff7508cd drm_get_drawable_info -EXPORT_SYMBOL drivers/char/generic_serial 0x066b0c85 gs_flush_buffer -EXPORT_SYMBOL drivers/char/generic_serial 0x1e7c51dd gs_close -EXPORT_SYMBOL drivers/char/generic_serial 0x2fb882d6 gs_put_char -EXPORT_SYMBOL drivers/char/generic_serial 0x356d1c2d gs_set_termios -EXPORT_SYMBOL drivers/char/generic_serial 0x3c83d7c5 gs_hangup -EXPORT_SYMBOL drivers/char/generic_serial 0x3dde2499 gs_block_til_ready -EXPORT_SYMBOL drivers/char/generic_serial 0x4f8c4829 gs_chars_in_buffer -EXPORT_SYMBOL drivers/char/generic_serial 0x66cb3398 gs_write -EXPORT_SYMBOL drivers/char/generic_serial 0x815276b9 gs_flush_chars -EXPORT_SYMBOL drivers/char/generic_serial 0xbab72747 gs_init_port -EXPORT_SYMBOL drivers/char/generic_serial 0xc394d4b0 gs_start -EXPORT_SYMBOL drivers/char/generic_serial 0xd3c9241a gs_stop -EXPORT_SYMBOL drivers/char/generic_serial 0xd8eb2403 gs_got_break -EXPORT_SYMBOL drivers/char/generic_serial 0xdfea3d37 gs_write_room -EXPORT_SYMBOL drivers/char/generic_serial 0xeccb2987 gs_getserial -EXPORT_SYMBOL drivers/char/generic_serial 0xede07b51 gs_setserial -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x087888c8 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x09c4fecf ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0e585909 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x312e6eef ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4ca5b272 ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x55729624 ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x59b4ddcd ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6527a41b ipmi_user_set_run_to_completion -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x720620b8 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7714fd9f ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x81ae7e30 ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x82fbf2b0 ipmi_smi_add_proc_entry -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x90881d97 ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9acdd5d7 ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xab584fd8 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xad7d8667 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbc1689d1 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc43fe8d1 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd1a3d2cc ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd4085bbb ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd8075bb5 ipmi_register_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xde9810d5 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f7e339 ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf8a6940d ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/nsc_gpio 0x1bad4d49 nsc_gpio_dump -EXPORT_SYMBOL drivers/char/nsc_gpio 0x4cc94130 nsc_gpio_write -EXPORT_SYMBOL drivers/char/nsc_gpio 0x9aa9fea7 nsc_gpio_read -EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte -EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum -EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte -EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte -EXPORT_SYMBOL drivers/char/toshiba 0x9421a6a6 tosh_smm -EXPORT_SYMBOL drivers/cpufreq/cpufreq_conservative 0xad5ef050 cpufreq_gov_conservative -EXPORT_SYMBOL drivers/cpufreq/cpufreq_ondemand 0x872ec76b cpufreq_gov_ondemand -EXPORT_SYMBOL drivers/cpufreq/cpufreq_userspace 0xe469d765 cpufreq_gov_userspace -EXPORT_SYMBOL drivers/edac/edac_core 0x10b5aa4c edac_mc_handle_fbd_ce -EXPORT_SYMBOL drivers/edac/edac_core 0x29875d9d edac_mc_find -EXPORT_SYMBOL drivers/edac/edac_core 0x73242212 edac_mc_handle_fbd_ue -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x13a86036 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8f2b71f5 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8e21399b i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x0e1444f2 i2c_pcf_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x037ab0f9 amd756_smbus -EXPORT_SYMBOL drivers/i2c/i2c-core 0x03dad75c i2c_register_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x07854486 i2c_smbus_write_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x119f501b i2c_clients_command -EXPORT_SYMBOL drivers/i2c/i2c-core 0x1d08cfd3 i2c_del_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x1f65bd00 i2c_master_send -EXPORT_SYMBOL drivers/i2c/i2c-core 0x32230138 i2c_get_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x329719bb i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x343fb5de i2c_release_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x3629f06e i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x38bee282 i2c_smbus_write_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x3c6c4505 i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x3d643b55 i2c_put_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5cb67b5b i2c_del_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x704544fe i2c_smbus_read_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x759ac210 i2c_smbus_read_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x7cfdab95 i2c_smbus_read_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x8098ad1e i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x83dfd67a i2c_probe -EXPORT_SYMBOL drivers/i2c/i2c-core 0x869f0eba i2c_attach_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x8c575630 i2c_detach_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9b98e3e3 i2c_add_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa8e4e718 i2c_smbus_write_quick -EXPORT_SYMBOL drivers/i2c/i2c-core 0xb08364d2 i2c_smbus_read_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xc22c264e i2c_master_recv -EXPORT_SYMBOL drivers/i2c/i2c-core 0xcc87ca2b i2c_smbus_write_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe89ffdbf i2c_use_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0xec075fdd i2c_smbus_write_byte -EXPORT_SYMBOL drivers/ide/ide-core 0x072a818e __ide_dma_bad_drive -EXPORT_SYMBOL drivers/ide/ide-core 0x0a33a04c __ide_dma_end -EXPORT_SYMBOL drivers/ide/ide-core 0x0c486b72 ide_unregister -EXPORT_SYMBOL drivers/ide/ide-core 0x1162d9e6 ide_execute_command -EXPORT_SYMBOL drivers/ide/ide-core 0x12d7809a ide_hwifs -EXPORT_SYMBOL drivers/ide/ide-core 0x18ee57c5 drive_is_ready -EXPORT_SYMBOL drivers/ide/ide-core 0x3a01453f __ide_dma_on -EXPORT_SYMBOL drivers/ide/ide-core 0x4101a975 ide_fixstring -EXPORT_SYMBOL drivers/ide/ide-core 0x41a764e8 ide_dma_off -EXPORT_SYMBOL drivers/ide/ide-core 0x41df83d2 ide_register_hw -EXPORT_SYMBOL drivers/ide/ide-core 0x4e96ccc8 task_in_intr -EXPORT_SYMBOL drivers/ide/ide-core 0x50fed6f7 proc_ide_read_geometry -EXPORT_SYMBOL drivers/ide/ide-core 0x5bc91b11 ide_stall_queue -EXPORT_SYMBOL drivers/ide/ide-core 0x5dc0cddb default_hwif_mmiops -EXPORT_SYMBOL drivers/ide/ide-core 0x60b63697 ide_lock -EXPORT_SYMBOL drivers/ide/ide-core 0x7d97026b ide_set_handler -EXPORT_SYMBOL drivers/ide/ide-core 0x7dfd176b ide_wait_stat -EXPORT_SYMBOL drivers/ide/ide-core 0x82ebc8fb ide_dma_timeout -EXPORT_SYMBOL drivers/ide/ide-core 0x88e890bd ide_proc_unregister_driver -EXPORT_SYMBOL drivers/ide/ide-core 0x95223b74 ide_proc_register_driver -EXPORT_SYMBOL drivers/ide/ide-core 0x9623762f ide_end_request -EXPORT_SYMBOL drivers/ide/ide-core 0x993b09a7 pre_task_out_intr -EXPORT_SYMBOL drivers/ide/ide-core 0x9a2de95d ide_end_drive_cmd -EXPORT_SYMBOL drivers/ide/ide-core 0xb18f3f06 ide_xfer_verbose -EXPORT_SYMBOL drivers/ide/ide-core 0xb85e0f1f ide_dump_status -EXPORT_SYMBOL drivers/ide/ide-core 0xc5901e09 ide_raw_taskfile -EXPORT_SYMBOL drivers/ide/ide-core 0xcd49d953 SELECT_DRIVE -EXPORT_SYMBOL drivers/ide/ide-core 0xcd60d09a ide_init_drive_cmd -EXPORT_SYMBOL drivers/ide/ide-core 0xce139b09 ide_dma_host_on -EXPORT_SYMBOL drivers/ide/ide-core 0xd4638807 ide_dma_off_quietly -EXPORT_SYMBOL drivers/ide/ide-core 0xda13b3bd ide_add_setting -EXPORT_SYMBOL drivers/ide/ide-core 0xde9965df ide_do_drive_cmd -EXPORT_SYMBOL drivers/ide/ide-core 0xe1570c8e task_no_data_intr -EXPORT_SYMBOL drivers/ide/ide-core 0xe323e0d1 ide_spin_wait_hwgroup -EXPORT_SYMBOL drivers/ide/ide-core 0xe6485937 ide_dma_lost_irq -EXPORT_SYMBOL drivers/ide/ide-core 0xe7e763ad ide_dma_host_off -EXPORT_SYMBOL drivers/ide/ide-core 0xed034d33 generic_ide_ioctl -EXPORT_SYMBOL drivers/ide/ide-core 0xee5a11eb system_bus_clock -EXPORT_SYMBOL drivers/ide/ide-core 0xfabd46e0 ide_do_reset -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x011a7c1a hpsb_remove_host -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x06df1f3a hpsb_add_host -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x0c059e1d hpsb_get_hostinfo -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x0c6da941 csr1212_release_keyval -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x0dbff997 hpsb_send_packet -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x0e5a659c csr1212_new_directory -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x13b4a268 csr1212_attach_keyval_to_directory -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x150d11bb hpsb_set_hostinfo_key -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x17da7e74 hpsb_alloc_packet -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x18f44477 hpsb_iso_recv_set_channel_mask -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x219cbabe dma_region_offset_to_bus -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x2752b9a8 csr1212_get_keyval -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x284a577d hpsb_iso_xmit_sync -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x2aeb1322 dma_region_mmap -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x3358948a hpsb_get_tlabel -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x3377d791 hpsb_set_hostinfo -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x34315cff hpsb_make_lock64packet -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x3637fb49 hpsb_iso_packet_received -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x37a736c9 csr1212_read -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x38c89b8a hpsb_make_phypacket -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x3a8a16f5 hpsb_protocol_class -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x48020c66 __hpsb_register_protocol -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x497570bf hpsb_unregister_addrspace -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x4c524f59 hpsb_set_packet_complete_task -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x4fb17fb6 hpsb_read -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x50423177 hpsb_register_highlevel -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x52d02ecc hpsb_packet_sent -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x56c76828 hpsb_update_config_rom_image -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x58882b43 hpsb_update_config_rom -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x652b33f9 hpsb_node_write -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x66e5f697 hpsb_free_packet -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x672ad148 dma_region_sync_for_device -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x6992ac3e hpsb_iso_recv_listen_channel -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x6a1c246d hpsb_bus_reset -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x7046e886 csr1212_parse_keyval -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x76bc1a5c dma_region_free -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x7aad8f5b hpsb_make_lockpacket -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x8260135b hpsb_selfid_received -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x82f6b47c hpsb_read_cycle_timer -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x86ff9703 hpsb_iso_recv_unlisten_channel -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x8879f8f0 dma_region_sync_for_cpu -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x8e399d83 hpsb_iso_xmit_start -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x8ec2b312 dma_region_alloc -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x8fbc69bd hpsb_iso_xmit_queue_packet -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x902a5ea8 hpsb_make_writepacket -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x92657ea6 hpsb_iso_stop -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x9333c5e5 hpsb_iso_recv_start -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x935977fc hpsb_iso_wake -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x979b3052 dma_prog_region_init -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x99ccac94 hpsb_unregister_protocol -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x9c325e82 hpsb_allocate_and_register_addrspace -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0x9f11562b hpsb_make_streampacket -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xa924dac6 dma_prog_region_alloc -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xabfc6564 hpsb_unregister_highlevel -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xb0fe6284 hpsb_iso_packet_sent -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xb1ec0908 hpsb_selfid_complete -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xb4e625f3 hpsb_reset_bus -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xb5a79850 hpsb_create_hostinfo -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xb6b37dd8 hpsb_iso_xmit_init -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xbba70620 dma_prog_region_free -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xc16752ca hpsb_iso_recv_init -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xc28ebc48 hpsb_iso_recv_release_packets -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xc669a4d3 csr1212_detach_keyval_from_directory -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xc860e6d4 hpsb_register_addrspace -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xcd6d8275 hpsb_destroy_hostinfo -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xcdbbc2d0 hpsb_packet_received -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xd2f7b606 hpsb_iso_shutdown -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xd3097a7a hpsb_write -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xd4f81156 hpsb_iso_n_ready -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xd6847ca2 hpsb_free_tlabel -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xdadb6731 hpsb_packet_success -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xdc1cdd61 hpsb_node_fill_packet -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xde4fba2b hpsb_make_readpacket -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xe1f113ce hpsb_alloc_host -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xea4152ff dma_region_init -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xf277a388 hpsb_iso_recv_flush -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xfba57f51 hpsb_speedto_str -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xfe89a438 hpsb_resume_host -EXPORT_SYMBOL drivers/ieee1394/ieee1394 0xfece28be hpsb_get_hostinfo_bykey -EXPORT_SYMBOL drivers/ieee1394/ohci1394 0x6c9a1ae6 ohci1394_stop_context -EXPORT_SYMBOL drivers/ieee1394/ohci1394 0xb37ab086 ohci1394_init_iso_tasklet -EXPORT_SYMBOL drivers/ieee1394/ohci1394 0xb7616fa4 ohci1394_unregister_iso_tasklet -EXPORT_SYMBOL drivers/ieee1394/ohci1394 0xe5864750 ohci1394_register_iso_tasklet -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x0d3cfd51 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x54db9cc9 rdma_copy_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7fe9be7c rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x97a0f6c1 rdma_addr_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9c447fba rdma_addr_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc42508f2 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x01518fb4 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1b82ee09 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x26bcdd56 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3877c0c9 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c1f8842 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a911706 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x761cc682 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c3ce364 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9dcfeee1 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaae4cf3e ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0de93ff ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce243ad6 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9929e16 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdb31414e ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef167c7f ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf18fd936 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0076dcf4 ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x027f9f76 mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x054697f0 ib_query_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x066d05c5 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08199602 ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a770185 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x112233ea ib_destroy_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x148d441f ib_init_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15fc7f6b ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16070249 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x177d6589 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a063af5 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b15c025 ib_dealloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1baf3c59 ib_get_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24cdcf27 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ae9b8d3 ib_find_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31cfdbce ib_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f68433a ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x450035a7 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46558988 ib_alloc_mw -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48da0a64 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a6488ab ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f7f50c8 ib_dereg_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a506bb ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563afc92 ib_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c5e5579 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a0bc13e ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7081b2ab ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72c0323a ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad0e731 ib_destroy_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ce13ce2 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83b19fc6 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8640eaeb ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87b614d8 ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87c415e6 ib_create_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cc9c6cb ib_dealloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e5c1070 ib_query_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x924d8c05 ib_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x949dba20 ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94eca7b5 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98f5a028 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f04ae7 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7b19c19 ib_rereg_phys_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa973b579 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf97754a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafac583a ib_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2a58230 ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d034bb ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb13caad ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3cccc8b ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc449bfe1 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc74bab94 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7cae8ea ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8587e0a ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9cf3cd9 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccca1e7c ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0b68873 ib_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0cdca93 ib_reg_phys_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e777fe ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd17ba9d1 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f5f6ba ib_get_cached_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd426f15f ib_destroy_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5086b0b ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8b82018 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddf864b8 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe54f62ff ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8fdc281 ib_get_dma_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf36498b9 ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd5933cd ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x099ec715 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2dac64e6 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x303cc662 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3ea65731 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4fe4f44e ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5369a3d0 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x547ac91a ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6ef787ed ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb6d1f28b ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb7c0af52 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe36eb0fd ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe9bfb032 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfa4c52f6 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05b24047 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x530bcc5e ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5dc4948c ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x70acb504 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x748849b4 ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9455c103 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb57037c3 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcbdfc891 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf9d6eb71 ib_init_ah_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ccbd9f7 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d409bb2 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64ae12b5 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76018d9f iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76392e18 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83b4c6db iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f58920a iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9a1ad1c2 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x026543e0 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x15ec6be1 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x221c4409 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e1f9af1 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32ecf56f rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55959266 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f285511 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6169cde1 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65901643 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8605a53e rdma_set_ib_paths -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9abe3596 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8fdcf2f rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab71aca3 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1b5e62b rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd267b253 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd30b9d6d rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd83dd411 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0d7d679 rdma_bind_addr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0fb29800 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1fb258ab gameport_rescan -EXPORT_SYMBOL drivers/input/gameport/gameport 0x702cbc50 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x911019db __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9179d759 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa8307c51 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xbff3e618 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcb4b88eb gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf1fac2bd __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9c2ea3e gameport_stop_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x24a8e9ac input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x6cc0f8a7 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x9bc26ae1 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xce3ad3c3 input_unregister_polled_device -EXPORT_SYMBOL drivers/isdn/capi/capifs 0x2c54c957 capifs_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/capifs 0xd0bc06ce capifs_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x06cab1a0 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1ec49366 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1ffd8415 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3400b99e capi20_set_callback -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa0fdd5a4 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xad4e6c57 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb5094791 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc1beab86 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc6fd1ac0 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd7891aef capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf1be06be capi_ctr_reseted -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x084f8bc2 b1_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0fc2c61a b1_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1a62062c b1_loaded -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x348bb010 b1_parse_version -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x41d63fa0 b1_load_config -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5c6e833f b1_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x65905a78 avmcard_dma_alloc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6ac0ebb2 b1_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x96f9d2f4 b1_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa3ca48a1 b1ctl_read_proc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb9666465 b1_getrevision -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbb29d75f b1_free_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd06cf49c b1_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe9e52f7b b1_alloc_card -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xeaabbff3 b1_load_t4file -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf7aace29 avmcard_dma_free -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x00e0e5e0 b1dmactl_read_proc -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2a386384 b1dma_interrupt -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3633e529 b1pciv4_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x52e75607 b1dma_load_firmware -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x874adaf8 t1pci_detect -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9108a730 b1dma_reset_ctr -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa2de5663 b1dma_release_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa368cfe6 b1dma_reset -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xacbd7966 b1dma_register_appl -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbccc59e0 b1dma_send_message -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x16007ea4 proc_net_eicon -EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x40f13393 FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa34c0a74 FsmInitTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe6d9da1c FsmDelTimer -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xeab7840d hisax_init_pcmcia -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew -EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x248b8441 isacsx_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x491a69d7 isac_irq -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x51a30a7f isac_setup -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc189ace2 isac_init -EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd620c7fe isacsx_irq -EXPORT_SYMBOL drivers/isdn/hisax/isdnhdlc 0x1ee629e2 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/hisax/isdnhdlc 0x95aed401 isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/hisax/isdnhdlc 0x9ffc8215 isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/hisax/isdnhdlc 0xf5c8131d isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x039b63b9 isdn_ppp_unregister_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x0dd9aabb isdn_ppp_register_compressor -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa1a59936 register_isdn -EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert -EXPORT_SYMBOL drivers/md/dm-mirror 0x56bb3591 dm_unregister_dirty_log_type -EXPORT_SYMBOL drivers/md/dm-mirror 0x7593707c dm_destroy_dirty_log -EXPORT_SYMBOL drivers/md/dm-mirror 0xf5ac7612 dm_create_dirty_log -EXPORT_SYMBOL drivers/md/dm-mirror 0xfe96708a dm_register_dirty_log_type -EXPORT_SYMBOL drivers/md/dm-mod 0x27fe2888 dm_get_device -EXPORT_SYMBOL drivers/md/dm-mod 0x30754193 dm_table_event -EXPORT_SYMBOL drivers/md/dm-mod 0x32d92b34 kcopyd_client_destroy -EXPORT_SYMBOL drivers/md/dm-mod 0x38db8f0a dm_io_client_destroy -EXPORT_SYMBOL drivers/md/dm-mod 0x3db75a03 dm_table_put -EXPORT_SYMBOL drivers/md/dm-mod 0x3f4599ba dm_put_device -EXPORT_SYMBOL drivers/md/dm-mod 0x520cbbe8 dm_table_get -EXPORT_SYMBOL drivers/md/dm-mod 0x7360749c dm_table_get_md -EXPORT_SYMBOL drivers/md/dm-mod 0x87da051d dm_io -EXPORT_SYMBOL drivers/md/dm-mod 0x969dedc5 dm_table_unplug_all -EXPORT_SYMBOL drivers/md/dm-mod 0xa4dbd646 kcopyd_client_create -EXPORT_SYMBOL drivers/md/dm-mod 0xa6970d85 dm_unregister_target -EXPORT_SYMBOL drivers/md/dm-mod 0xb60e2d50 dm_io_client_resize -EXPORT_SYMBOL drivers/md/dm-mod 0xb8799f6e dm_get_mapinfo -EXPORT_SYMBOL drivers/md/dm-mod 0xc44d072d dm_table_get_size -EXPORT_SYMBOL drivers/md/dm-mod 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL drivers/md/dm-mod 0xc8ef8e0c dm_io_client_create -EXPORT_SYMBOL drivers/md/dm-mod 0xde7b2e2f kcopyd_copy -EXPORT_SYMBOL drivers/md/dm-mod 0xe8880917 dm_table_get_mode -EXPORT_SYMBOL drivers/md/dm-mod 0xea5a2da6 dm_register_target -EXPORT_SYMBOL drivers/md/md-mod 0x09e5562d bitmap_endwrite -EXPORT_SYMBOL drivers/md/md-mod 0x1b4babdb bitmap_close_sync -EXPORT_SYMBOL drivers/md/md-mod 0x2a96ca8f md_error -EXPORT_SYMBOL drivers/md/md-mod 0x30de8b51 bitmap_startwrite -EXPORT_SYMBOL drivers/md/md-mod 0x5296549e md_done_sync -EXPORT_SYMBOL drivers/md/md-mod 0x671df594 md_check_recovery -EXPORT_SYMBOL drivers/md/md-mod 0x9486e025 register_md_personality -EXPORT_SYMBOL drivers/md/md-mod 0xa38f9a5f md_unregister_thread -EXPORT_SYMBOL drivers/md/md-mod 0xb39a2f9c md_wakeup_thread -EXPORT_SYMBOL drivers/md/md-mod 0xba49d826 bitmap_start_sync -EXPORT_SYMBOL drivers/md/md-mod 0xc92fa582 md_write_end -EXPORT_SYMBOL drivers/md/md-mod 0xd6a1aae7 bitmap_unplug -EXPORT_SYMBOL drivers/md/md-mod 0xd8ca11ed md_register_thread -EXPORT_SYMBOL drivers/md/md-mod 0xe40c45d2 md_write_start -EXPORT_SYMBOL drivers/md/md-mod 0xe4fbf915 unregister_md_personality -EXPORT_SYMBOL drivers/md/md-mod 0xe93fa2fb bitmap_end_sync -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x01410414 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x12ade3ae flexcop_reset_block_300 -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x2bced1d7 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x310c1f73 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x3ac84a91 flexcop_dma_config -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x5983e01b flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x5e14badb flexcop_device_exit -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x664a133e flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x77b43aa0 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x81058b61 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x817abcc2 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x819ee470 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x86c5ec5a flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x96429976 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xac12437b flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc4545baa flexcop_i2c_request -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd88eefc9 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xe6fd972b flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xe950fdbb flexcop_dma_free -EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xfe8c31a4 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x10c88642 bt878_start -EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x364d3f54 bt878_stop -EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x3ec42db5 bt878_device_control -EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x57024104 bt878 -EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x188f7074 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x20aea123 rdc_reset_state -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x2f60fa4a dst_pio_disable -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x4b1d0aae dst_error_bailout -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x502380cf read_dst -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x6757f5d1 write_dst -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x75733ad9 dst_error_recovery -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x7c22712d dst_command -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x80edc375 dst_attach -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x8a1b89a5 dst_pio_enable -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x8fe56117 dst_gpio_inb -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe4604d38 dst_comm_init -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe8d2dac1 dst_gpio_outb -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf03da100 rdc_8820_reset -EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0xdc0bb07a dst_ca_attach -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0f2100a4 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x12be1cfc dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x15c1c729 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x176ab9e2 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x1b09e53e dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x1ffe61af dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2412879d dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x25c40609 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x36c8ea1f dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3830431a dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x459c3689 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4bb95659 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4f7c70ca dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5f1e0913 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6538f079 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6cfed801 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x76101064 dvb_ringbuffer_pkt_dispose -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x88ce57e1 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8a11ed31 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8b49a23f timeval_usec_diff -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8f46d6d7 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8fee7a46 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x955e9872 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xab2773e6 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb1a29e67 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb1d0a87d dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb44d6543 dvb_ringbuffer_pkt_write -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb75456ea dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc14a4a26 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc5ed4b1a dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc7549169 dvb_ringbuffer_pkt_read -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd8ce0e57 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd96fb032 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdb2d4512 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe250cc8a dvb_ringbuffer_pkt_next -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe3451f33 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe484f886 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe538908d dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe8823338 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x4fa21708 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x73ee3962 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x7a70a705 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x9694d7e4 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xc4209412 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xdc873ed9 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xf6b0e16e usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x2edc4728 af9005_rc_keys -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd3383957 af9005_rc_keys_size -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xe06fb0ca af9005_rc_decode -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x00702d63 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x0148e739 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x46298cbc dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x46e7c654 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x7a922049 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa1fd49a1 dibusb_rc_query -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa27e872e dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa3fce557 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb1a4f52f dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xd4d3dddc dibusb_rc_keys -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xd583cb8a dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xf1b8b393 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0x8ddd8241 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x3f915b5b cx22700_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x69842e53 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x7b2841e9 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x38909638 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x61fbb1f3 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x778cac17 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xbb4b9294 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x42e37355 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x584e0591 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x8edae05e dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xa33eddf5 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xe175de62 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xeacc7e41 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x51ec4907 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x85958980 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xe61617e2 dib7000m_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x1eb38006 dib7000pc_detection -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7b347deb dib7000p_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x9084aa7f dib7000p_set_wbd_ref -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xb0b5e2f8 dib7000p_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xb0dccc34 dib7000p_set_gpio -EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xd49e6271 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x070ce2e5 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x94547226 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xb7411ace dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0xb0c9b7a5 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0x07b81e18 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0xa0dfae89 l64781_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x7114d172 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x360bd91f lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/mt2060 0x431c2528 mt2060_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/mt2131 0x45d7329a mt2131_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/mt2266 0xddcba706 mt2266_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0x38f3b351 vp310_mt312_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0x417d44db mt352_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0xbd371860 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0xf2433552 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0x14555c55 or51132_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0x3001aa25 or51211_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/qt1010 0x3a475ee6 qt1010_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x5eaf2baa s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x8b8bae87 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0x865a4611 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x0f5a365b sp887x_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0xd1a0f39a stv0297_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0xda054df7 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0x8a6b0ef1 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0x936eed09 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x88159df7 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xf3909c0e tda10046_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0x2099acf3 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0xea2762a6 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0x5c6a1077 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tda827x 0xf99aa8a0 tda827x_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0x20c502d2 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0xfd192802 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0x622f1454 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0xdb50e996 zl10353_attach -EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0x7b66f772 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x04a96f21 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x2f6e6eeb ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xa35332e3 bttv_sub_register -EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbe9c2dc4 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xf6d5bb8a bttv_get_pcidev -EXPORT_SYMBOL drivers/media/video/btcx-risc 0x6200c4c9 btcx_calc_skips -EXPORT_SYMBOL drivers/media/video/btcx-risc 0x76bc9520 btcx_riscmem_free -EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips -EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align -EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips -EXPORT_SYMBOL drivers/media/video/btcx-risc 0xfc570a67 btcx_riscmem_alloc -EXPORT_SYMBOL drivers/media/video/cpia 0x02e8289a cpia_unregister_camera -EXPORT_SYMBOL drivers/media/video/cpia 0xdc6533c5 cpia_register_camera -EXPORT_SYMBOL drivers/media/video/cx2341x 0x3559ba71 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/video/cx2341x 0x38a3c9e2 cx2341x_log_status -EXPORT_SYMBOL drivers/media/video/cx2341x 0x3ab1bc1e cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/video/cx2341x 0x8fdbede1 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/video/cx2341x 0xaeab9aa1 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/video/cx2341x 0xff729bea cx2341x_update -EXPORT_SYMBOL drivers/media/video/cx23885/cx23885 0x3b2529e0 cx23885_call_i2c_clients -EXPORT_SYMBOL drivers/media/video/cx23885/cx23885 0xa36823b9 cx23885_boards -EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x94a0b84e vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0xaafb2ac5 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x1febe00d cx8800_ctrl_query -EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x379b9f1b cx88_set_control -EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x598992e9 cx88_enum_input -EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x8d6e6a5c cx88_video_mux -EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls -EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xd80c777a cx88_set_freq -EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xf2eb71d5 cx88_get_control -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x0535cda0 cx8802_register_driver -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x0d06bf9d cx8802_init_common -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x2bec8e15 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x3cf29dda cx8802_fini_common -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x65137727 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xac693e89 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xc784da77 cx8802_get_device -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xeeb9786a cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xf438bc9c cx8802_get_driver -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x082ffedd cx88_core_irq -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x21f81d7c cx88_risc_buffer -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x2c1982ac cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x354aa5c9 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4d6ee5d2 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4fa09aee cx88_core_get -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x56d36c9c cx88_core_put -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5835c919 cx88_ir_start -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5911346a cx88_set_stereo -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5d125c59 cx88_call_i2c_clients -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x635e6f05 cx88_ir_stop -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6b7c8442 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7d9f51c0 cx88_newstation -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x88eb35c6 cx88_free_buffer -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x9b140fff cx88_sram_channels -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb47f6cda cx88_print_irqbits -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb951347c cx88_wakeup -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xbbf3c1f7 cx88_vdev_init -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xc5215891 cx88_get_stereo -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xcccfb8ca cx88_risc_stopper -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xe0f7fb4b cx88_reset -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xee69f5fe cx88_set_scale -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xf47ec758 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xff6babe5 cx88_shutdown -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x0e2c3b19 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x19c6c90b ivtv_vapi -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x225bfbee ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x50c477e1 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x6abd7652 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x70196ffb ivtv_cards_active -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x828c3a55 ivtv_api -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8f7a887b ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xb3bfb75b ivtv_udma_setup -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xc1ae20e7 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xc508f5ac ivtv_vapi_result -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xcaf6bf71 ivtv_cards_lock -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xd6eb88ff ivtv_cards -EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xebd02a1b ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x28068dbd saa7134_set_gpio -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x2c6f9777 saa_dsp_writel -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x50aa8166 saa7134_common_ioctl -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x6e130460 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x98af79c1 saa7134_boards -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xa18a1930 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xa70a7f4f saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xa8258323 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xa8fa2451 saa7134_i2c_call_clients -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xd44c2d04 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xd7c005f7 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xdce43b49 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xdf467401 saa7134_ts_register -EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xf2e741f2 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/video/tveeprom 0x03e4f655 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/video/tveeprom 0x07c5e499 tveeprom_read -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0x0ff45263 RingQueue_WakeUpInterruptible -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0x1c932f39 RingQueue_Enqueue -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0x22a6d2a9 usbvideo_RegisterVideoDevice -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0x84f16c7c usbvideo_Deregister -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0x8ae216a2 RingQueue_Flush -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0x90e7cff3 RingQueue_Dequeue -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0xa1df3e69 usbvideo_AllocateDevice -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0xccc77ad5 usbvideo_TestPattern -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0xde496442 usbvideo_DeinterlaceFrame -EXPORT_SYMBOL drivers/media/video/usbvideo/usbvideo 0xffb34143 usbvideo_register -EXPORT_SYMBOL drivers/media/video/v4l1-compat 0x440f734c v4l_compat_translate_ioctl -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x03165a85 v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x0dfb5e57 v4l2_prio_max -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x1c427ecb v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x2de2b633 v4l2_prio_check -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x2e9a955d v4l2_prio_close -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x57abfbd8 v4l2_chip_match_host -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x57b02a20 v4l2_type_names -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x5ebefe4b v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x5fef1b4a v4l2_ctrl_query_fill_std -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x7dbd2744 v4l2_chip_match_i2c_client -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x942892ab v4l2_prio_open -EXPORT_SYMBOL drivers/media/video/v4l2-common 0x98049efa v4l2_chip_ident_i2c_client -EXPORT_SYMBOL drivers/media/video/v4l2-common 0xa021ef50 v4l2_field_names -EXPORT_SYMBOL drivers/media/video/v4l2-common 0xb2d1e17e v4l2_prio_change -EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc369097d v4l2_ctrl_check -EXPORT_SYMBOL drivers/media/video/v4l2-common 0xd464e760 v4l2_ctrl_query_menu -EXPORT_SYMBOL drivers/media/video/v4l2-common 0xe1f45082 v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/video/v4l2-common 0xe330bce9 v4l2_prio_init -EXPORT_SYMBOL drivers/media/video/v4l2-common 0xed275428 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x52150182 videobuf_dvb_register -EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xab56607a videobuf_dvb_unregister -EXPORT_SYMBOL drivers/media/video/videocodec 0x007731e8 videocodec_unregister -EXPORT_SYMBOL drivers/media/video/videocodec 0xa877e463 videocodec_detach -EXPORT_SYMBOL drivers/media/video/videocodec 0xb2456ffc videocodec_register -EXPORT_SYMBOL drivers/media/video/videocodec 0xe3a0ebdb videocodec_attach -EXPORT_SYMBOL drivers/media/video/videodev 0x35ee2693 video_exclusive_open -EXPORT_SYMBOL drivers/media/video/videodev 0x42127275 video_device_release -EXPORT_SYMBOL drivers/media/video/videodev 0x557b2e4f video_unregister_device -EXPORT_SYMBOL drivers/media/video/videodev 0x73ff0b7c video_devdata -EXPORT_SYMBOL drivers/media/video/videodev 0x80e2bcee video_ioctl2 -EXPORT_SYMBOL drivers/media/video/videodev 0xb9c54169 video_exclusive_release -EXPORT_SYMBOL drivers/media/video/videodev 0xc0320c3e video_register_device -EXPORT_SYMBOL drivers/media/video/videodev 0xc740832e video_usercopy -EXPORT_SYMBOL drivers/media/video/videodev 0xd2068090 video_device_alloc -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03879321 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0c05b7d6 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12136155 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12ff2129 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14b0d435 mpt_proc_root_dir -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26e3a786 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x375d8126 mpt_add_sge -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37da1bf8 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x44f17e17 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ff09867 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b153376 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d4b05e1 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x77d16b45 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ee8ff75 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a8cd179 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f89db08 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa252bd1c mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa53d249 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad1a45b6 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb14afd8c mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9ada454 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6e21594 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6028dea mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9280046 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff159504 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01ad7f90 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07c1ed14 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1554b0d9 mptscsih_proc_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20c2cfc3 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35837946 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44099aca mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5732a407 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x588de81a mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5983ffca mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b195378 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67b8112a mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a881b49 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70b88ecc mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x764ddf1a mptscsih_timer_expired -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81e6e035 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a95b999 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c5fbf0b mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90dd0348 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95cde6aa mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb14e9909 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1fec118 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddcf8251 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3ef4634 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7826260 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeaad1969 mptscsih_TMHandler -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x04192e01 i2o_parm_table_get -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x0e14bef4 i2o_iop_find_device -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x15aa3e90 i2o_msg_get_wait -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x254bc79c i2o_device_claim_release -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x5033cf20 i2o_driver_notify_device_remove_all -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x63514096 i2o_find_iop -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x6be90981 i2o_event_register -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x771381c1 i2o_driver_register -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9a58d1b5 i2o_driver_notify_controller_remove_all -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9dc6ba87 i2o_device_claim -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa2d8d36c i2o_driver_notify_controller_add_all -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xaa839dd8 i2o_driver_notify_device_add_all -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xba2f96de i2o_status_get -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc8f85eaa i2o_exec_lct_get -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xcd31f728 i2o_msg_post_wait_mem -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xdf75804f i2o_parm_field_get -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xf5833786 i2o_driver_unregister -EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xfa444f3e i2o_parm_issue -EXPORT_SYMBOL drivers/misc/ioc4 0x8ead1ee3 ioc4_unregister_submodule -EXPORT_SYMBOL drivers/misc/ioc4 0xeee0444b ioc4_register_submodule -EXPORT_SYMBOL drivers/misc/sony-laptop 0x5bb1e117 sony_pic_camera_command -EXPORT_SYMBOL drivers/misc/tifm_core 0x03ff5191 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x0a427666 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x1cc6895f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x233ce898 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x2cf84ca6 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x75ec2b98 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x7be4573a tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xbe6a9a1f tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xdbc90140 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe40f2415 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xf80a7ef2 tifm_add_adapter -EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xf4e6b052 mmc_cleanup_queue -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x08764f9a mmc_request_done -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x22dbf2a4 mmc_resume_host -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x275e0d83 mmc_alloc_host -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x3adc27e5 mmc_register_driver -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x53be4a5a mmc_wait_for_app_cmd -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x730a43c7 mmc_unregister_driver -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x78a90214 mmc_suspend_host -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0x99662165 mmc_free_host -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xa0fa6561 mmc_detect_change -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xa4a2beaa mmc_add_host -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xad3e41b8 mmc_set_data_timeout -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xb353d74f mmc_wait_for_req -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xb74617c6 mmc_remove_host -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xe61337e9 __mmc_claim_host -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xe97cacc0 mmc_wait_for_cmd -EXPORT_SYMBOL drivers/mmc/core/mmc_core 0xf9958298 mmc_release_host -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6e839f15 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8fb5c286 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbc73e513 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x51fb04a9 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdf490d7d unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf5f176d9 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xfe8b4121 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xe184799f mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x481e3c57 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x317e0f88 add_mtd_partitions -EXPORT_SYMBOL drivers/mtd/mtd 0x53387f9b del_mtd_partitions -EXPORT_SYMBOL drivers/mtd/mtdconcat 0x14d8522b mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtdconcat 0x8d967b85 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nand 0x2c93399f nand_scan_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand 0x73128124 nand_default_bbt -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x254f230c nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x87406d9d nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids -EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0d1dd2fc onenand_scan_bbt -EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x58f69e58 onenand_default_bbt -EXPORT_SYMBOL drivers/net/8390 0x53d24e16 NS8390_init -EXPORT_SYMBOL drivers/net/8390 0x7083e268 ei_open -EXPORT_SYMBOL drivers/net/8390 0x7d7e0dbc ei_interrupt -EXPORT_SYMBOL drivers/net/8390 0x8c93bce4 ei_poll -EXPORT_SYMBOL drivers/net/8390 0xdea5f2bd __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/8390 0xe79286f0 ei_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4641bd7d arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4a7f560e alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5d6142e6 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x95040d34 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa964a2e4 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbc4c5916 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc17b3ca7 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x92d7f59b com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9b4f4e45 com20020_found -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x255622da cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x3e1e713e t3_l2t_send_event -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x444d4f26 t3_l2e_free -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x48160a21 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x4c51bcfc t3_l2t_get -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x6730d148 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x70fb48b1 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x7684d1f3 cxgb3_register_client -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x9cd61bca cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0x9e6bd562 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0xa3b97c48 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0xb17d17ba t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0xc18004c8 dev2t3cdev -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0xc206da79 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0xc7ac6ac0 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/cxgb3/cxgb3 0xc88f1c40 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x07ae2ec9 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3f1356b6 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5ba2c5a1 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe2b4979f hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeca75d98 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x06cfa953 sirdev_receive -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2533cc8c irda_register_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x27becf41 irda_unregister_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2bc92aa3 sirdev_raw_write -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x311769f6 sirdev_write_complete -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3ea9f792 sirdev_put_instance -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x70db0c98 sirdev_raw_read -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x758afd3e sirdev_set_dtr_rts -EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8f2345d0 sirdev_set_dongle -EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfa586837 sirdev_get_instance -EXPORT_SYMBOL drivers/net/mii 0x27b15842 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x5103d938 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x7c7f32cd mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x864492b4 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xaaf20641 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xb8438f14 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xef8b28b1 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xf718f146 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/phy/fixed 0x6f6bb762 fixed_mdio_get_phydev -EXPORT_SYMBOL drivers/net/phy/fixed 0xf655b4a2 fixed_mdio_set_link_update -EXPORT_SYMBOL drivers/net/phy/libphy 0x095094bb mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x0ab1d736 phy_start_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0x0b4bb13f phy_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/libphy 0x160697be phy_connect -EXPORT_SYMBOL drivers/net/phy/libphy 0x17cc0573 phy_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x1ecfd5c7 phy_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x245e9fd7 phy_sanitize_settings -EXPORT_SYMBOL drivers/net/phy/libphy 0x25bb0bd1 phy_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x28f92338 genphy_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x3e7b2215 genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x56023fec phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x5b8d603a phy_disconnect -EXPORT_SYMBOL drivers/net/phy/libphy 0x5c43f450 genphy_config_advert -EXPORT_SYMBOL drivers/net/phy/libphy 0x72bf6626 phy_start -EXPORT_SYMBOL drivers/net/phy/libphy 0x7a2b3b15 phy_stop_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0x7aa22dd6 phy_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0x86aa7b14 genphy_update_link -EXPORT_SYMBOL drivers/net/phy/libphy 0x8ca5dfe4 mdiobus_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x94923294 phy_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0x97077672 phy_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x995140ee phy_disable_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0x9ab7b29f phy_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0xa0b48e4a phy_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/libphy 0xa15d97e7 phy_stop -EXPORT_SYMBOL drivers/net/phy/libphy 0xc7830291 phy_print_status -EXPORT_SYMBOL drivers/net/phy/libphy 0xd8a441c0 phy_detach -EXPORT_SYMBOL drivers/net/phy/libphy 0xeb55d092 phy_enable_interrupts -EXPORT_SYMBOL drivers/net/phy/libphy 0xf732dce8 mdio_bus_type -EXPORT_SYMBOL drivers/net/ppp_generic 0x0e419c45 ppp_channel_index -EXPORT_SYMBOL drivers/net/ppp_generic 0x4fcffec2 ppp_unregister_channel -EXPORT_SYMBOL drivers/net/ppp_generic 0x5665cad7 ppp_unit_number -EXPORT_SYMBOL drivers/net/ppp_generic 0x857df01e ppp_register_compressor -EXPORT_SYMBOL drivers/net/ppp_generic 0xa1085ae6 ppp_unregister_compressor -EXPORT_SYMBOL drivers/net/ppp_generic 0xb16ee972 ppp_input -EXPORT_SYMBOL drivers/net/ppp_generic 0xbc0f6469 ppp_register_channel -EXPORT_SYMBOL drivers/net/ppp_generic 0xd07d2808 ppp_output_wakeup -EXPORT_SYMBOL drivers/net/ppp_generic 0xd1197fe8 ppp_input_error -EXPORT_SYMBOL drivers/net/pppox 0x1fc52c04 pppox_ioctl -EXPORT_SYMBOL drivers/net/pppox 0x8bd8c277 register_pppox_proto -EXPORT_SYMBOL drivers/net/pppox 0x9949b25f pppox_unbind_sock -EXPORT_SYMBOL drivers/net/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/slhc 0x0ff2b602 slhc_compress -EXPORT_SYMBOL drivers/net/slhc 0x23c8f257 slhc_uncompress -EXPORT_SYMBOL drivers/net/slhc 0xa63d85ab slhc_remember -EXPORT_SYMBOL drivers/net/slhc 0xb5ca1c46 slhc_free -EXPORT_SYMBOL drivers/net/slhc 0xdfc5169b slhc_init -EXPORT_SYMBOL drivers/net/slhc 0xe8794ce1 slhc_toss -EXPORT_SYMBOL drivers/net/sungem_phy 0x924c57ec mii_phy_probe -EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x2e0735b9 tms380tr_close -EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x4cb356f0 tmsdev_init -EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x518fcbfb tms380tr_interrupt -EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xb7cf37c6 tmsdev_term -EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait -EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xe9102d1b tms380tr_open -EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr -EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup -EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down -EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek -EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke -EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec -EXPORT_SYMBOL drivers/net/wan/hdlc 0x455c66e4 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6cda0891 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x73e4d7e9 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa16f964c hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa75ddc26 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb72bfa4e register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc08bc1cd hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xca4a1263 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfdbc0b0d hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/syncppp 0x6d064840 sppp_attach -EXPORT_SYMBOL drivers/net/wan/syncppp 0x86abcc83 sppp_open -EXPORT_SYMBOL drivers/net/wan/syncppp 0x8f4b6488 sppp_do_ioctl -EXPORT_SYMBOL drivers/net/wan/syncppp 0xb9853230 sppp_reopen -EXPORT_SYMBOL drivers/net/wan/syncppp 0xd0bc952e sppp_close -EXPORT_SYMBOL drivers/net/wan/syncppp 0xf67fe1c1 sppp_detach -EXPORT_SYMBOL drivers/net/wan/z85230 0x0006bfb5 z8530_sync_txdma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port -EXPORT_SYMBOL drivers/net/wan/z85230 0x13065692 z8530_channel_load -EXPORT_SYMBOL drivers/net/wan/z85230 0x17da4ad6 z8530_queue_xmit -EXPORT_SYMBOL drivers/net/wan/z85230 0x283e799e z8530_interrupt -EXPORT_SYMBOL drivers/net/wan/z85230 0x45088567 z8530_null_rx -EXPORT_SYMBOL drivers/net/wan/z85230 0x47aa91d4 z8530_sync_dma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x487d132c z8530_dma_sync -EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream -EXPORT_SYMBOL drivers/net/wan/z85230 0x7100c4b2 z8530_sync_txdma_open -EXPORT_SYMBOL drivers/net/wan/z85230 0x84359cf0 z8530_init -EXPORT_SYMBOL drivers/net/wan/z85230 0x9782d8b8 z8530_txdma_sync -EXPORT_SYMBOL drivers/net/wan/z85230 0x9a7afff1 z8530_sync_open -EXPORT_SYMBOL drivers/net/wan/z85230 0xa23ecf52 z8530_sync -EXPORT_SYMBOL drivers/net/wan/z85230 0xa4e1d18d z8530_sync_dma_close -EXPORT_SYMBOL drivers/net/wan/z85230 0xb4179e57 z8530_get_stats -EXPORT_SYMBOL drivers/net/wan/z85230 0xd7982f50 z8530_nop -EXPORT_SYMBOL drivers/net/wan/z85230 0xe25f6d5e z8530_shutdown -EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 -EXPORT_SYMBOL drivers/net/wan/z85230 0xe469dfaa z8530_describe -EXPORT_SYMBOL drivers/net/wan/z85230 0xef38d5a4 z8530_sync_close -EXPORT_SYMBOL drivers/net/wireless/airo 0x005acb25 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0x9f3abd95 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/airo 0xb6632884 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0x1525a7b7 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel 0xa34b9393 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel 0xb75d3874 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/hermes 0x4196c38b hermes_write_ltv -EXPORT_SYMBOL drivers/net/wireless/hermes 0xc60b5e9e hermes_bap_pwrite -EXPORT_SYMBOL drivers/net/wireless/hermes 0xd38d8ae2 hermes_read_ltv -EXPORT_SYMBOL drivers/net/wireless/hermes 0xd3f714e5 hermes_bap_pread -EXPORT_SYMBOL drivers/net/wireless/hermes 0xd5168829 hermes_allocate -EXPORT_SYMBOL drivers/net/wireless/hermes 0xd5336e5d hermes_init -EXPORT_SYMBOL drivers/net/wireless/hermes 0xd54e219d hermes_docmd_wait -EXPORT_SYMBOL drivers/net/wireless/hermes 0xed47b224 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0aadbbc8 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x21e9f6ea hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x22eb3c86 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x27a069d6 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2fc23e27 hostap_80211_header_parse -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x32ef45f3 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33130280 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3abcbf80 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3d771dc2 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3f6806a3 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x443a21c3 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5d7db19a hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5ed9520e hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x648e5586 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x651f6e16 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x672f5de3 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6903f16c hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6ffd8c22 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x83072a42 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x86bc67d5 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8a2cd1a2 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8bda4020 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8c194648 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9046d929 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x927b79c9 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xacac10b3 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb0562fbe hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbe11da5e hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xccb206da hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe4bb5253 hostap_get_stats -EXPORT_SYMBOL drivers/net/wireless/orinoco 0x1a9d334a orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/orinoco 0x712b53c7 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/orinoco 0x93d3ad4d orinoco_reinit_firmware -EXPORT_SYMBOL drivers/net/wireless/orinoco 0x99d19486 __orinoco_down -EXPORT_SYMBOL drivers/net/wireless/orinoco 0xd888f8e2 __orinoco_up -EXPORT_SYMBOL drivers/net/wireless/orinoco 0xf12a005f free_orinocodev -EXPORT_SYMBOL drivers/parport/parport 0x16457680 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x1c2c4253 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x1c626652 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x1dbe8d84 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x24e45c3f parport_release -EXPORT_SYMBOL drivers/parport/parport 0x27528e44 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x30e0f68b parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x3196afa1 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x40467c21 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x4a13bfab parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4e347749 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x5444888e parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x580cbf4f parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x5f02f742 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x645ef014 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x71dabf09 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x8264a238 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x86c78ebf parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x8a284910 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x92100fc9 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x96ec53ea parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x9fa8aedd parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xa1fabcf4 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xa72e77dd parport_write -EXPORT_SYMBOL drivers/parport/parport 0xa90f80f1 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xac1f646b parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xbdad8af2 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xd032b323 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe6f248a2 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xf5ff38bf parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xf6b5973e parport_find_base -EXPORT_SYMBOL drivers/parport/parport_pc 0x4576580f parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xa0d9fa94 parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6686c44f pcmcia_get_status -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x70e60b8a pcmcia_access_configuration_register -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x72f245a6 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7609844e pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7ef29644 pcmcia_get_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x80b8cca0 pcmcia_get_configuration_info -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x92177669 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x92c6ffd3 cs_error -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x937f7d70 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9d5bfd2c pcmcia_get_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb99014b8 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb3c0ae1 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcddfda6c pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xce147961 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd7bc8d49 pcmcia_request_configuration -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdddacd2b pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfd3e0ce0 pcmcia_modify_configuration -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x028f797d pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x085f0d4d pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x112de026 pccard_validate_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x16f56003 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x194f79a4 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1b521f7e destroy_cis_cache -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x224c3e3a pcmcia_eject_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x507ed869 pccard_read_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x541825d5 pcmcia_find_mem_region -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5988fbd5 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5abd267d pccard_get_tuple_data -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5b20d334 pcmcia_read_cis_mem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x693331f9 pcmcia_write_cis_mem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9042d6d5 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9514c25c pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x99f07de7 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa27b5319 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa3e8068a release_cis_mem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xac8e7c5f pcmcia_adjust_resource_info -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb14eca47 pccard_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbd39dbef pcmcia_suspend_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbf032c56 pcmcia_adjust_io_region -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcd2ac1c1 pccard_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xce03a5b2 pcmcia_socket_dev_resume -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xce537568 pccard_get_next_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdd077745 pcmcia_validate_mem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe25ea5f7 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe4572f38 pcmcia_insert_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe4af5848 pcmcia_replace_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xedd91ff2 pcmcia_find_io_region -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8d933a1 pcmcia_socket_dev_suspend -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfa25e355 pccard_get_first_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfe3281bc pcmcia_resume_card -EXPORT_SYMBOL drivers/pcmcia/rsrc_nonstatic 0xf07942d2 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/rtc/rtc-lib 0x4859b8bb rtc_year_days -EXPORT_SYMBOL drivers/rtc/rtc-lib 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL drivers/rtc/rtc-lib 0x6971447a rtc_month_days -EXPORT_SYMBOL drivers/rtc/rtc-lib 0xabd0c91c rtc_time_to_tm -EXPORT_SYMBOL drivers/rtc/rtc-lib 0xb98a0185 rtc_tm_to_time -EXPORT_SYMBOL drivers/scsi/53c700 0x5175c0f0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x66890a8c NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0x7e492b72 NCR_700_release -EXPORT_SYMBOL drivers/scsi/lpfc/lpfc 0x351f5886 lpfc_vport_create -EXPORT_SYMBOL drivers/scsi/lpfc/lpfc 0xf00f72a9 lpfc_vport_delete -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa0e159d8 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x232fbbc2 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x32c44ca6 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x470911ef qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5cd179e6 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb9b1d58c qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcfe38dc3 qlogicfas408_bus_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfec465c9 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/raid_class 0xaa2dff0d raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xd12ad84d raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xe7f8ab40 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0333e722 scsi_is_host_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x04cc9ba3 scsi_cmd_print_sense_hdr -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0c65e73c scsi_normalize_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0c8c9e99 scsi_show_extd_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0d2a8bea scsi_set_medium_removal -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0db20697 scsi_finish_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x0f803eb7 scsi_test_unit_ready -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x11267875 scsi_extd_sense_format -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x116a635c scsi_remove_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x166aa0cf scsi_bios_ptable -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x17323cfb scsi_device_set_state -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x18646a1d scsi_adjust_queue_depth -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1b9e0ff1 scsilun_to_int -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x1d0aaf41 scsi_kmap_atomic_sg -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2575a7e4 scsi_mode_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2665875d scsi_unblock_requests -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x26ddebdc scsi_register_interface -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2753809c scsi_command_normalize_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2b0ba2b0 scsi_sense_desc_find -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x2d89342a scsi_show_sense_hdr -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x3450dd17 scsi_block_requests -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x37349f9d scsi_register -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x3883477b scsi_target_quiesce -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x38c6151f scsi_get_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x39b02357 scsi_scan_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x39f0e950 scsi_reset_provider -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x3a763a80 scsi_device_put -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x3e1f61ca scsi_device_lookup -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x46bf4e17 scsi_is_sdev_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x48307d04 scsi_dma_map -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x4aa4a804 scsi_host_set_state -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x51fa99dc scsi_put_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x520b1ed8 scsi_alloc_sgtable -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x56d2ba3f scsi_register_driver -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x5bce2883 __scsi_iterate_devices -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x620304ee scsi_free_host_dev -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x69d38ed9 __scsi_print_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x6a34ad3c scsi_is_target_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x6a4fecc4 scsi_host_lookup -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x6c18a5cb scsi_ioctl -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x73d1b754 __scsi_device_lookup -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x75107294 scsi_remove_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x796fc5ce scsi_get_sense_info_fld -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x79b5592c scsi_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x874ef9e0 scsi_rescan_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x88592013 scsi_host_alloc -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x8a523bec scsi_block_when_processing_errors -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x8b408c6f scsi_prep_state_check -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x8d4cec99 scsi_print_sense -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x8e6f50e4 scsi_unregister -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x8effe4a5 __scsi_alloc_queue -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x92f6c7b7 scsi_add_host -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x976a9084 scsi_target_resume -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x98eebeef scsi_host_get -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x9a49f979 __starget_for_each_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x9cfd56c5 scsi_print_status -EXPORT_SYMBOL drivers/scsi/scsi_mod 0x9f319ac0 scsi_report_device_reset -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xa1d89d61 scsi_device_lookup_by_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xa5cb6c4a scsi_setup_blk_pc_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xa5f6f569 scsicam_bios_param -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xaaffffc6 scsi_setup_fs_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xab60fb50 scsi_print_result -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb6c5a973 scsi_show_result -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb862f66a scsi_device_get -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb9bc0cc5 scsi_track_queue_full -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xb9d2e088 scsi_device_resume -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xbd93198f starget_for_each_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xbdbda17d scsi_req_abort_cmd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xca5dbc50 scsi_print_sense_hdr -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xcaf14aaf __scsi_device_lookup_by_target -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xd30ed7ed scsi_eh_restore_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xd8937e9d scsi_dma_unmap -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xda585901 scsi_execute_req -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xdbe711fc __scsi_put_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xde730969 scsi_execute -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xdf77cf15 scsi_eh_finish_cmd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe010f3f8 scsi_prep_return -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe2377c3c scsi_report_bus_reset -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe66562fc scsi_print_command -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe6a1c88c scsi_scan_host -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe6eb027c scsi_device_quiesce -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xe7cde5d4 scsi_get_host_dev -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xea10212a int_to_scsilun -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xeb18a266 scsi_free_sgtable -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xec5598ae scsi_nonblockable_ioctl -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xecccc5d4 scsi_calculate_bounce_limit -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf1339f31 scsi_host_put -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf417607e scsi_add_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xf90e2bbb __scsi_add_device -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xfd646c91 scsi_eh_prep_cmnd -EXPORT_SYMBOL drivers/scsi/scsi_mod 0xfef96e23 __scsi_print_command -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d339a03 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1eebc86b fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27dd1e0e fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f043b44 scsi_is_fc_vport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9341d66b fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ed10bdc fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa2ca6114 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa32bcc35 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd007bb99 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd22f681e scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd75b7d4e fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x161219a0 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26508c9d scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32b23164 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x411d92e1 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44dd7107 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4bd5577e sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c8f36ca sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x543bcd2a scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c3014f2 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5cf8e992 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6bb01f8c sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72c7a7ca sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73a4b464 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84c3ccae sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x918b7608 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9285a1d5 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e6ac71f sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa5ab38ec sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6e8496a sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab2da2de sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab730b5f sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7e32cab sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb86cfbc0 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc654937e scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc94f93d sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8b50363 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x15006d31 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4339a9c4 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x48fd21d5 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd81b08d9 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe5e547f4 spi_dv_device -EXPORT_SYMBOL drivers/ssb/ssb 0x2f2c0967 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x3642642f ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x4608bed0 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x616c9980 ssb_bus_pcibus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x74262338 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x79c0e803 ssb_dma_set_mask -EXPORT_SYMBOL drivers/ssb/ssb 0x82729ec0 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x87b1b5a1 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x8c3808bd ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x99938bad ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xb25fd33e ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xbc882f67 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd2917ad8 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xd9862705 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xe730cd6b ssb_dma_translation -EXPORT_SYMBOL drivers/telephony/ixj 0xec483023 ixj_pcmcia_probe -EXPORT_SYMBOL drivers/telephony/phonedev 0x2cde2ac4 phone_unregister_device -EXPORT_SYMBOL drivers/telephony/phonedev 0xed534d02 phone_register_device -EXPORT_SYMBOL drivers/usb/core/usbcore 0x030f284e usb_create_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0x0c452b59 usb_kill_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0x1367deb5 usb_unlink_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0x13e9df88 usb_ifnum_to_if -EXPORT_SYMBOL drivers/usb/core/usbcore 0x197e1d04 usb_buffer_map_sg -EXPORT_SYMBOL drivers/usb/core/usbcore 0x19a304ba usb_disabled -EXPORT_SYMBOL drivers/usb/core/usbcore 0x1e122f97 usb_hcd_pci_resume -EXPORT_SYMBOL drivers/usb/core/usbcore 0x1e8dd9a3 usb_reset_configuration -EXPORT_SYMBOL drivers/usb/core/usbcore 0x25202f8e usb_control_msg -EXPORT_SYMBOL drivers/usb/core/usbcore 0x284f80f0 usb_remove_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0x2a60129b usb_sg_wait -EXPORT_SYMBOL drivers/usb/core/usbcore 0x2c11be2e usb_buffer_alloc -EXPORT_SYMBOL drivers/usb/core/usbcore 0x32cf5d92 usb_hcd_platform_shutdown -EXPORT_SYMBOL drivers/usb/core/usbcore 0x3c0555ba usb_deregister_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0x3c158bf3 usb_submit_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0x477bae7f usb_reset_composite_device -EXPORT_SYMBOL drivers/usb/core/usbcore 0x583d7d3c usb_buffer_free -EXPORT_SYMBOL drivers/usb/core/usbcore 0x5ab622d8 usb_set_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0x5ba376b0 usb_free_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0x6cf4db3b usb_sg_init -EXPORT_SYMBOL drivers/usb/core/usbcore 0x74415446 usb_hcd_pci_suspend -EXPORT_SYMBOL drivers/usb/core/usbcore 0x7b217b61 usb_get_status -EXPORT_SYMBOL drivers/usb/core/usbcore 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL drivers/usb/core/usbcore 0x93b4ebf2 usb_clear_halt -EXPORT_SYMBOL drivers/usb/core/usbcore 0x94b1b742 usb_get_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0x9924c496 __usb_get_extra_descriptor -EXPORT_SYMBOL drivers/usb/core/usbcore 0x9fcc2276 usb_sg_cancel -EXPORT_SYMBOL drivers/usb/core/usbcore 0xa45c1fbf usb_buffer_unmap_sg -EXPORT_SYMBOL drivers/usb/core/usbcore 0xa981574c usb_put_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0xaab602a0 usb_reset_device -EXPORT_SYMBOL drivers/usb/core/usbcore 0xab0d8387 usb_add_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0xad29f005 usb_hcd_pci_shutdown -EXPORT_SYMBOL drivers/usb/core/usbcore 0xad71a59e usb_hcd_giveback_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xb102be2b usb_hub_tt_clear_buffer -EXPORT_SYMBOL drivers/usb/core/usbcore 0xb28ff678 usb_get_current_frame_number -EXPORT_SYMBOL drivers/usb/core/usbcore 0xb56877e4 usb_altnum_to_altsetting -EXPORT_SYMBOL drivers/usb/core/usbcore 0xb74d274c usb_put_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0xba7e06c4 usb_driver_claim_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0xbeed9c75 usb_hcd_pci_remove -EXPORT_SYMBOL drivers/usb/core/usbcore 0xc038aae3 usb_init_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xc038d110 usb_bulk_msg -EXPORT_SYMBOL drivers/usb/core/usbcore 0xc6ec61eb usb_hcd_pci_probe -EXPORT_SYMBOL drivers/usb/core/usbcore 0xcd302b3f usb_find_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0xcf756e11 usb_alloc_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xd661ce02 usb_driver_release_interface -EXPORT_SYMBOL drivers/usb/core/usbcore 0xeb3998ea usb_get_urb -EXPORT_SYMBOL drivers/usb/core/usbcore 0xef90819b usb_lock_device_for_reset -EXPORT_SYMBOL drivers/usb/core/usbcore 0xf0ff7b44 usb_get_hcd -EXPORT_SYMBOL drivers/usb/core/usbcore 0xf31dbbcc usb_register_dev -EXPORT_SYMBOL drivers/usb/core/usbcore 0xf7236d0d usb_string -EXPORT_SYMBOL drivers/usb/core/usbcore 0xfaf7a971 usb_get_descriptor -EXPORT_SYMBOL drivers/usb/gadget/net2280 0x17fa7d58 usb_gadget_unregister_driver -EXPORT_SYMBOL drivers/usb/gadget/net2280 0x986be8ae net2280_set_fifo_mode -EXPORT_SYMBOL drivers/usb/gadget/net2280 0xcdc25d19 usb_gadget_register_driver -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xf1f3dfaa sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x24b80174 ezusb_writememory -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x48f9d6b6 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7ea77595 ezusb_set_reset -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa18e824d usb_serial_resume -EXPORT_SYMBOL drivers/video/backlight/corgi_bl 0xc86baa7c corgibl_limit_intensity -EXPORT_SYMBOL drivers/video/backlight/lcd 0x07c77a71 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x31a6381c lcd_device_unregister -EXPORT_SYMBOL drivers/video/console/bitblit 0xded955a8 fbcon_set_bitops -EXPORT_SYMBOL drivers/video/console/font 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL drivers/video/console/font 0xbb99125c get_default_font -EXPORT_SYMBOL drivers/video/console/font 0xf7584a9c find_font -EXPORT_SYMBOL drivers/video/console/softcursor 0x20d8617a soft_cursor -EXPORT_SYMBOL drivers/video/console/tileblit 0x311b0635 fbcon_set_tileops -EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/cyber2000fb 0x296d1b7c cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/cyber2000fb 0x2c05c4b4 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/cyber2000fb 0x92c783c5 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/cyber2000fb 0xff5c1e4f cyber2000fb_get_fb_var -EXPORT_SYMBOL drivers/video/display/display 0x4a53fb86 display_device_register -EXPORT_SYMBOL drivers/video/display/display 0xcbc41fe2 display_device_unregister -EXPORT_SYMBOL drivers/video/macmodes 0x08ed0b62 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/macmodes 0xd58fc7b3 mac_find_mode -EXPORT_SYMBOL drivers/video/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x1192a4d3 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x4a9e3a27 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x71ed8ed7 g450_mnp2f -EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x50c01c7d DAC1064_global_restore -EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x9bae6cb9 matrox_mystique -EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xddd8eec6 matrox_G100 -EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xf6bb7c6f DAC1064_global_init -EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0x22df8d6d matrox_millennium -EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0x6f776964 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x185d92d2 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x7c684429 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x9fd8e0e5 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xe5a3d9b1 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0x54f2b699 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xc5f6e43f matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x0f599aed matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x2df9a51f matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x4ab3ba01 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x4e672215 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my -EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xb1f74520 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/output 0x91d0bdcd video_output_unregister -EXPORT_SYMBOL drivers/video/output 0xdb3825b2 video_output_register -EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free -EXPORT_SYMBOL drivers/video/svgalib 0x00d1fce9 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/svgalib 0x07b3da30 svga_wseq_multi -EXPORT_SYMBOL drivers/video/svgalib 0x1a334259 svga_get_caps -EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings -EXPORT_SYMBOL drivers/video/svgalib 0x337364b1 svga_tilecursor -EXPORT_SYMBOL drivers/video/svgalib 0x63e898d1 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/svgalib 0x7a3ae959 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/svgalib 0x80408443 svga_set_timings -EXPORT_SYMBOL drivers/video/svgalib 0x8fa8438b svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/svgalib 0x99c5b4d8 svga_tilefill -EXPORT_SYMBOL drivers/video/svgalib 0x9e695344 svga_tilecopy -EXPORT_SYMBOL drivers/video/svgalib 0xab3b22ad svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/svgalib 0xaf8067af svga_get_tilemax -EXPORT_SYMBOL drivers/video/svgalib 0xc9ad51da svga_settile -EXPORT_SYMBOL drivers/video/svgalib 0xcd200509 svga_tileblit -EXPORT_SYMBOL drivers/video/svgalib 0xdad682b1 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format -EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll -EXPORT_SYMBOL drivers/video/syscopyarea 0xab0dcbe6 sys_copyarea -EXPORT_SYMBOL drivers/video/sysfillrect 0x667594a1 sys_fillrect -EXPORT_SYMBOL drivers/video/sysimgblt 0x609426d9 sys_imageblit -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x061e934b w1_ds2760_write -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1b05e7b2 w1_ds2760_read -EXPORT_SYMBOL drivers/w1/wire 0x5c3fc75e w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x8cf61660 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xaa3a21e1 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xcda061c0 w1_remove_master_device -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x672c9d44 iTCO_vendor_pre_keepalive -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa8d6daac iTCO_vendor_pre_start -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xd0efe320 iTCO_vendor_pre_stop -EXPORT_SYMBOL fs/configfs/configfs 0x04b87f74 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x19dfc1fb config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x2a1c3d25 config_item_init -EXPORT_SYMBOL fs/configfs/configfs 0x2aa6ee4f config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x3bc606db config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x58e7a6bf configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x9cbeb796 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0xa960ebf0 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0xac31093a configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xb4bdab62 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0xd489cac9 configfs_unregister_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0xeda7d337 config_item_put -EXPORT_SYMBOL fs/jbd/jbd 0x0a9a268b journal_set_features -EXPORT_SYMBOL fs/jbd/jbd 0x15fd27d9 journal_update_superblock -EXPORT_SYMBOL fs/jbd/jbd 0x18e6f15d journal_get_undo_access -EXPORT_SYMBOL fs/jbd/jbd 0x1b3c331c journal_dirty_data -EXPORT_SYMBOL fs/jbd/jbd 0x1c6e7fc6 journal_abort -EXPORT_SYMBOL fs/jbd/jbd 0x2e38e784 journal_revoke -EXPORT_SYMBOL fs/jbd/jbd 0x5730b3f0 journal_restart -EXPORT_SYMBOL fs/jbd/jbd 0x5e1c5c2f journal_check_used_features -EXPORT_SYMBOL fs/jbd/jbd 0x61f387f8 journal_force_commit -EXPORT_SYMBOL fs/jbd/jbd 0x7a16cfd5 journal_check_available_features -EXPORT_SYMBOL fs/jbd/jbd 0x7a9599b3 journal_stop -EXPORT_SYMBOL fs/jbd/jbd 0x7b568f48 journal_force_commit_nested -EXPORT_SYMBOL fs/jbd/jbd 0x82340f2b journal_load -EXPORT_SYMBOL fs/jbd/jbd 0x843ab6a8 journal_try_to_free_buffers -EXPORT_SYMBOL fs/jbd/jbd 0x91da2f5c journal_invalidatepage -EXPORT_SYMBOL fs/jbd/jbd 0x94c97a4f journal_lock_updates -EXPORT_SYMBOL fs/jbd/jbd 0x9765a067 journal_init_dev -EXPORT_SYMBOL fs/jbd/jbd 0x9abc8245 journal_init_inode -EXPORT_SYMBOL fs/jbd/jbd 0x9de486ee journal_get_create_access -EXPORT_SYMBOL fs/jbd/jbd 0x9ecd3a0c journal_dirty_metadata -EXPORT_SYMBOL fs/jbd/jbd 0xa4c7cca9 journal_flush -EXPORT_SYMBOL fs/jbd/jbd 0xa851fac8 journal_start_commit -EXPORT_SYMBOL fs/jbd/jbd 0xa93adfdb journal_update_format -EXPORT_SYMBOL fs/jbd/jbd 0xaa8b6ac1 journal_release_buffer -EXPORT_SYMBOL fs/jbd/jbd 0xaf3f989d journal_wipe -EXPORT_SYMBOL fs/jbd/jbd 0xaf86e5d1 journal_errno -EXPORT_SYMBOL fs/jbd/jbd 0xb44f8e65 journal_clear_err -EXPORT_SYMBOL fs/jbd/jbd 0xb6f28493 journal_extend -EXPORT_SYMBOL fs/jbd/jbd 0xbb2d3545 journal_get_write_access -EXPORT_SYMBOL fs/jbd/jbd 0xd0d8e53b journal_create -EXPORT_SYMBOL fs/jbd/jbd 0xd68737bf journal_start -EXPORT_SYMBOL fs/jbd/jbd 0xd9fb017f log_wait_commit -EXPORT_SYMBOL fs/jbd/jbd 0xe7502722 journal_ack_err -EXPORT_SYMBOL fs/jbd/jbd 0xeda8fd84 journal_forget -EXPORT_SYMBOL fs/jbd/jbd 0xf04d667b journal_blocks_per_page -EXPORT_SYMBOL fs/jbd/jbd 0xf5aa906e journal_unlock_updates -EXPORT_SYMBOL fs/jbd/jbd 0xfa87a0cb journal_destroy -EXPORT_SYMBOL fs/lockd/lockd 0x0639f73a nlmsvc_ops -EXPORT_SYMBOL fs/lockd/lockd 0x489432b9 nlmclnt_proc -EXPORT_SYMBOL fs/lockd/lockd 0x976e539e lockd_up -EXPORT_SYMBOL fs/lockd/lockd 0xa7b91a7b lockd_down -EXPORT_SYMBOL fs/lockd/lockd 0xad09c2db get_nfs_grace_period -EXPORT_SYMBOL fs/mbcache 0x05edb5a1 mb_cache_entry_get -EXPORT_SYMBOL fs/mbcache 0x1f683c91 mb_cache_entry_alloc -EXPORT_SYMBOL fs/mbcache 0x2c03fbcc mb_cache_entry_release -EXPORT_SYMBOL fs/mbcache 0x2c525ffd mb_cache_shrink -EXPORT_SYMBOL fs/mbcache 0x347ac516 mb_cache_entry_insert -EXPORT_SYMBOL fs/mbcache 0x8a8f2362 mb_cache_create -EXPORT_SYMBOL fs/mbcache 0xb02d1491 mb_cache_entry_free -EXPORT_SYMBOL fs/mbcache 0xc6c12fd4 mb_cache_entry_find_next -EXPORT_SYMBOL fs/mbcache 0xd33fc472 mb_cache_entry_find_first -EXPORT_SYMBOL fs/mbcache 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL fs/nfs_common/nfs_acl 0x267ee4ef nfsacl_decode -EXPORT_SYMBOL fs/nfs_common/nfs_acl 0x4c943550 nfsacl_encode -EXPORT_SYMBOL fs/nfsd/nfsd 0x0f3e6e01 nfs4_acl_nfsv4_to_posix -EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new -EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who -EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype -EXPORT_SYMBOL fs/nfsd/nfsd 0x7ee78c79 nfs4_acl_posix_to_nfsv4 -EXPORT_SYMBOL fs/xfs/xfs 0x0dd316b7 xfs_qmcore_xfs -EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt -EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table -EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t -EXPORT_SYMBOL lib/crc16 0x02a6ce5a crc16_table -EXPORT_SYMBOL lib/crc16 0x8ffdb3b8 crc16 -EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 -EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table -EXPORT_SYMBOL lib/libcrc32c 0x2329b292 crc32c_be -EXPORT_SYMBOL lib/libcrc32c 0x37d0b921 crc32c_le -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf0caf44b zlib_deflate_workspacesize -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd -EXPORT_SYMBOL net/802/p8023 0x2f6c777f destroy_8023_client -EXPORT_SYMBOL net/802/p8023 0xa1738c66 make_8023_client -EXPORT_SYMBOL net/9p/9pnet 0x00a6e1a5 p9_create_tclunk -EXPORT_SYMBOL net/9p/9pnet 0x00e7e586 p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x0106a185 p9_create_tstat -EXPORT_SYMBOL net/9p/9pnet 0x09511eb8 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x0f3569f7 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x15779868 p9_set_tag -EXPORT_SYMBOL net/9p/9pnet 0x15bac5b8 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x1df84cae p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0x1ff9c757 v9fs_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x21523da9 p9_create_tattach -EXPORT_SYMBOL net/9p/9pnet 0x309767d8 p9_deserialize_stat -EXPORT_SYMBOL net/9p/9pnet 0x3b481fbb v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x465c4e6f p9_printfcall -EXPORT_SYMBOL net/9p/9pnet 0x4cadfc44 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x507c9d70 p9_create_tauth -EXPORT_SYMBOL net/9p/9pnet 0x5c002155 v9fs_match_trans -EXPORT_SYMBOL net/9p/9pnet 0x6461b8de p9_create_twrite -EXPORT_SYMBOL net/9p/9pnet 0x677be60e p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0x6f11c5c3 p9_create_twrite_u -EXPORT_SYMBOL net/9p/9pnet 0x6f2bca59 p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0x702335b8 p9_conn_rpc -EXPORT_SYMBOL net/9p/9pnet 0x7079eba1 p9_conn_cancel -EXPORT_SYMBOL net/9p/9pnet 0x71c7537d p9_create_tcreate -EXPORT_SYMBOL net/9p/9pnet 0x72180f92 p9_client_readn -EXPORT_SYMBOL net/9p/9pnet 0x80b7d718 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x81247f39 p9_create_tread -EXPORT_SYMBOL net/9p/9pnet 0x8432c83f p9_deserialize_fcall -EXPORT_SYMBOL net/9p/9pnet 0x8dfa3b54 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x950e6b03 p9_create_twstat -EXPORT_SYMBOL net/9p/9pnet 0x965d3a56 p9_client_uwrite -EXPORT_SYMBOL net/9p/9pnet 0xa3f4196e p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0xa9536064 p9_create_tversion -EXPORT_SYMBOL net/9p/9pnet 0xaae597d2 p9_conn_destroy -EXPORT_SYMBOL net/9p/9pnet 0xac0aec6a p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xadfd597a p9_create_tremove -EXPORT_SYMBOL net/9p/9pnet 0xb2e108d7 p9_client_auth -EXPORT_SYMBOL net/9p/9pnet 0xbbcad1f6 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xdc894ac7 p9_create_twalk -EXPORT_SYMBOL net/9p/9pnet 0xdf52ae2b p9_client_dirread -EXPORT_SYMBOL net/9p/9pnet 0xdf6ff9e3 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xe2ea3039 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe7d5ae69 p9_conn_create -EXPORT_SYMBOL net/9p/9pnet 0xee337cfa p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xf09b3efa p9_create_topen -EXPORT_SYMBOL net/9p/9pnet 0xf129cb12 p9_client_uread -EXPORT_SYMBOL net/9p/9pnet 0xf3f95cd3 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xfa7e1822 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xfff27930 p9_create_tflush -EXPORT_SYMBOL net/appletalk/appletalk 0x00c0ece2 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x3446e5ce atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x3dbc4b9d atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xa26dc72b aarp_send_ddp -EXPORT_SYMBOL net/ax25/ax25 0x0bd9d1ad ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3c4724ae ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x463ebb24 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x571d8b82 ax25_hard_header -EXPORT_SYMBOL net/ax25/ax25 0x60c1a6d5 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x6d9b9252 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x6ec4d865 ax25_rebuild_header -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd63fbcd7 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0xe25e7015 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xee1f4733 ax25_listen_release -EXPORT_SYMBOL net/bluetooth/bluetooth 0x008cea40 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d929923 hci_conn_encrypt -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0eac5719 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x12d9aa64 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13195cf3 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x22f257a2 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x359e41ce bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36619e02 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c2febe1 hci_send_sco -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ca63261 hci_connect -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b5621a6 hci_send_acl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b2a42b8 hci_conn_change_link_key -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7094f8ae bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x76010bfd bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8962d107 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bc55c92 hci_recv_fragment -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa25f87e1 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9f7b0a2 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc11a061b hci_register_proto -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3db8aa4 hci_conn_auth -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6828212 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0xce0b1241 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7d6dc5e hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0e8bfa7 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe95aa80a hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1ff4063 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2dde489 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf767bbae hci_unregister_proto -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9359962 hci_register_cb -EXPORT_SYMBOL net/bluetooth/l2cap 0xfc31fe88 l2cap_load -EXPORT_SYMBOL net/bridge/bridge 0xfff199cd br_should_route_hook -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3b4e38fd ebt_register_watcher -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3cab6969 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x47d778cf ebt_register_match -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5bce99a5 ebt_unregister_watcher -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9997da44 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xab905060 ebt_unregister_target -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb03f8959 ebt_unregister_match -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb69d2ce6 ebt_register_target -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc16fd388 ebt_register_table -EXPORT_SYMBOL net/ieee80211/ieee80211 0x027ca54e ieee80211_get_channel_flags -EXPORT_SYMBOL net/ieee80211/ieee80211 0x104d8b5a ieee80211_rx -EXPORT_SYMBOL net/ieee80211/ieee80211 0x13af2148 ieee80211_is_valid_channel -EXPORT_SYMBOL net/ieee80211/ieee80211 0x210e2adf ieee80211_get_geo -EXPORT_SYMBOL net/ieee80211/ieee80211 0x21608371 free_ieee80211 -EXPORT_SYMBOL net/ieee80211/ieee80211 0x395d50f4 ieee80211_tx_frame -EXPORT_SYMBOL net/ieee80211/ieee80211 0x3f5581f7 ieee80211_channel_to_index -EXPORT_SYMBOL net/ieee80211/ieee80211 0x55579baf ieee80211_freq_to_channel -EXPORT_SYMBOL net/ieee80211/ieee80211 0x82dcb2e9 ieee80211_txb_free -EXPORT_SYMBOL net/ieee80211/ieee80211 0x837401b4 ieee80211_get_channel -EXPORT_SYMBOL net/ieee80211/ieee80211 0x9114a1f9 ieee80211_wx_set_encode -EXPORT_SYMBOL net/ieee80211/ieee80211 0x94e5154e alloc_ieee80211 -EXPORT_SYMBOL net/ieee80211/ieee80211 0x95ddf78d ieee80211_wx_get_scan -EXPORT_SYMBOL net/ieee80211/ieee80211 0x9ad1eb9e ieee80211_rx_mgt -EXPORT_SYMBOL net/ieee80211/ieee80211 0x9c3c4717 ieee80211_wx_set_encodeext -EXPORT_SYMBOL net/ieee80211/ieee80211 0xa9fb135f escape_essid -EXPORT_SYMBOL net/ieee80211/ieee80211 0xbabf9bfc ieee80211_channel_to_freq -EXPORT_SYMBOL net/ieee80211/ieee80211 0xd5b30bd3 ieee80211_set_geo -EXPORT_SYMBOL net/ieee80211/ieee80211 0xe2d174bb ieee80211_wx_get_encode -EXPORT_SYMBOL net/ieee80211/ieee80211 0xf86319af ieee80211_wx_get_encodeext -EXPORT_SYMBOL net/ieee80211/ieee80211_crypt 0x279e265f ieee80211_crypt_deinit_handler -EXPORT_SYMBOL net/ieee80211/ieee80211_crypt 0x2d748725 ieee80211_crypt_delayed_deinit -EXPORT_SYMBOL net/ieee80211/ieee80211_crypt 0x96ff025b ieee80211_unregister_crypto_ops -EXPORT_SYMBOL net/ieee80211/ieee80211_crypt 0xcfba3c5e ieee80211_crypt_quiescing -EXPORT_SYMBOL net/ieee80211/ieee80211_crypt 0xd2a604ee ieee80211_register_crypto_ops -EXPORT_SYMBOL net/ieee80211/ieee80211_crypt 0xe93e4c60 ieee80211_get_crypto_ops -EXPORT_SYMBOL net/ieee80211/ieee80211_crypt 0xf4e524e8 ieee80211_crypt_deinit_entries -EXPORT_SYMBOL net/ipv4/inet_lro 0x37a45953 lro_flush_pkt -EXPORT_SYMBOL net/ipv4/inet_lro 0x5f18d1c2 lro_vlan_hwaccel_receive_frags -EXPORT_SYMBOL net/ipv4/inet_lro 0xae764d42 lro_vlan_hwaccel_receive_skb -EXPORT_SYMBOL net/ipv4/inet_lro 0xd9251a35 lro_receive_frags -EXPORT_SYMBOL net/ipv4/inet_lro 0xe6278152 lro_flush_all -EXPORT_SYMBOL net/ipv4/inet_lro 0xf83bbfb8 lro_receive_skb -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0x2acdff04 ip_vs_conn_put -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0x6d2f86aa ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0x944feb12 unregister_ip_vs_app -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xa32cd3ae register_ip_vs_scheduler -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xa56e6aa4 ip_vs_conn_in_get -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xb1724524 register_ip_vs_app_inc -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xcc196ee8 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xf0c4ca85 ip_vs_conn_out_get -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xf123322e ip_vs_skb_replace -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xf62d895f ip_vs_conn_new -EXPORT_SYMBOL net/ipv4/ipvs/ip_vs 0xfd512ca6 register_ip_vs_app -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8608899a arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x873d1831 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf5e9c6fa arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0d9cd9ec ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x34b2cc3d ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5058c08c ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x26975f5b nf_nat_seq_adjust -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x368585a6 nf_nat_protocol_register -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x7f03019b nf_nat_setup_info -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xa18c8bcb nf_nat_used_tuple -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xc10699ff nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xeee96913 nf_nat_protocol_unregister -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xf1351a77 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xf4213771 nf_nat_follow_master -EXPORT_SYMBOL net/ipv4/tunnel4 0xc316968a xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xdac84ea2 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv6/ipv6 0x02d2d741 ipv6_push_nfrag_opts -EXPORT_SYMBOL net/ipv6/ipv6 0x06abfdc0 inet6_del_protocol -EXPORT_SYMBOL net/ipv6/ipv6 0x0c391ba6 xfrm6_rcv_spi -EXPORT_SYMBOL net/ipv6/ipv6 0x0dcbbb39 xfrm6_rcv -EXPORT_SYMBOL net/ipv6/ipv6 0x0ffe0b2f inet6_getname -EXPORT_SYMBOL net/ipv6/ipv6 0x120b88dc inet6_register_protosw -EXPORT_SYMBOL net/ipv6/ipv6 0x13d2fdba ipv6_chk_addr -EXPORT_SYMBOL net/ipv6/ipv6 0x19e48e98 rt6_lookup -EXPORT_SYMBOL net/ipv6/ipv6 0x29f9d281 ip6_frag_init -EXPORT_SYMBOL net/ipv6/ipv6 0x2be8d0ae ipv6_getsockopt -EXPORT_SYMBOL net/ipv6/ipv6 0x30123eb5 icmpv6_statistics -EXPORT_SYMBOL net/ipv6/ipv6 0x3bfaf9b3 in6_dev_finish_destroy -EXPORT_SYMBOL net/ipv6/ipv6 0x3c6b2304 inet6_release -EXPORT_SYMBOL net/ipv6/ipv6 0x4f849233 inet6_add_protocol -EXPORT_SYMBOL net/ipv6/ipv6 0x538383c0 unregister_inet6addr_notifier -EXPORT_SYMBOL net/ipv6/ipv6 0x5fa42892 icmpv6_send -EXPORT_SYMBOL net/ipv6/ipv6 0x73a361f8 ipv6_setsockopt -EXPORT_SYMBOL net/ipv6/ipv6 0x8823e4b8 nf_ip6_checksum -EXPORT_SYMBOL net/ipv6/ipv6 0x8d1ddc49 ip6_frag_match -EXPORT_SYMBOL net/ipv6/ipv6 0x8e11be79 inet6_ioctl -EXPORT_SYMBOL net/ipv6/ipv6 0xad90fb7d inet6_unregister_protosw -EXPORT_SYMBOL net/ipv6/ipv6 0xb905ad82 icmpv6_err_convert -EXPORT_SYMBOL net/ipv6/ipv6 0xc4b32ed1 xfrm6_input_addr -EXPORT_SYMBOL net/ipv6/ipv6 0xc5391496 ip6_route_me_harder -EXPORT_SYMBOL net/ipv6/ipv6 0xce19bac5 register_inet6addr_notifier -EXPORT_SYMBOL net/ipv6/ipv6 0xcf15a091 ip6_xmit -EXPORT_SYMBOL net/ipv6/ipv6 0xd5ccb040 ndisc_mc_map -EXPORT_SYMBOL net/ipv6/ipv6 0xe1a81c3a icmpv6msg_statistics -EXPORT_SYMBOL net/ipv6/ipv6 0xe34040c2 inet6_bind -EXPORT_SYMBOL net/ipv6/ipv6 0xee7369ba ip6_route_output -EXPORT_SYMBOL net/ipv6/ipv6 0xeed39396 xfrm6_find_1stfragopt -EXPORT_SYMBOL net/ipv6/ipv6 0xf44bdc6a ipv6_get_saddr -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1573ef0a ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9c07dac1 ipv6_find_hdr -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe4b27274 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfbfaee2d ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x2281dba9 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xa3a503e7 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9cd013f2 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xab14e193 xfrm6_tunnel_free_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdb1b42d1 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2022fd4e ircomm_connect_response -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3954fb20 ircomm_open -EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9d724f6a ircomm_close -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd6d7bb11 ircomm_connect_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd6dc0873 ircomm_flow_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe3b81db3 ircomm_data_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf5e484eb ircomm_control_request -EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf8b748b3 ircomm_disconnect_request -EXPORT_SYMBOL net/irda/irda 0x04ac6305 iriap_open -EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value -EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service -EXPORT_SYMBOL net/irda/irda 0x096d4e99 irttp_udata_request -EXPORT_SYMBOL net/irda/irda 0x0989bb03 irttp_flow_request -EXPORT_SYMBOL net/irda/irda 0x0af6596b hashbin_remove_this -EXPORT_SYMBOL net/irda/irda 0x0bc39aae hashbin_delete -EXPORT_SYMBOL net/irda/irda 0x15c91d61 async_unwrap_char -EXPORT_SYMBOL net/irda/irda 0x19e35818 irda_task_execute -EXPORT_SYMBOL net/irda/irda 0x1c3c9068 irlmp_open_lsap -EXPORT_SYMBOL net/irda/irda 0x1f07d2f0 irttp_connect_request -EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert -EXPORT_SYMBOL net/irda/irda 0x29063048 iriap_getvaluebyclass_request -EXPORT_SYMBOL net/irda/irda 0x2e7b3a86 irias_new_object -EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug -EXPORT_SYMBOL net/irda/irda 0x394c7a42 irlmp_data_request -EXPORT_SYMBOL net/irda/irda 0x3c7a991d irda_device_set_media_busy -EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value -EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service -EXPORT_SYMBOL net/irda/irda 0x48efc9c0 irda_notify_init -EXPORT_SYMBOL net/irda/irda 0x4b59aced irda_device_unregister_dongle -EXPORT_SYMBOL net/irda/irda 0x4f50ee2f iriap_close -EXPORT_SYMBOL net/irda/irda 0x5122e9af irias_delete_object -EXPORT_SYMBOL net/irda/irda 0x54d35077 irttp_dup -EXPORT_SYMBOL net/irda/irda 0x6199ec9d irlap_close -EXPORT_SYMBOL net/irda/irda 0x69c7294c hashbin_new -EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies -EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client -EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client -EXPORT_SYMBOL net/irda/irda 0x76f5669a irias_add_octseq_attrib -EXPORT_SYMBOL net/irda/irda 0x78547276 async_wrap_skb -EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client -EXPORT_SYMBOL net/irda/irda 0x848f3bce irlmp_connect_response -EXPORT_SYMBOL net/irda/irda 0x855a5d1b irias_insert_object -EXPORT_SYMBOL net/irda/irda 0x872e9436 alloc_irdadev -EXPORT_SYMBOL net/irda/irda 0x891adbf4 irias_add_integer_attrib -EXPORT_SYMBOL net/irda/irda 0x8fab6b26 irttp_data_request -EXPORT_SYMBOL net/irda/irda 0x90e249c7 irlap_open -EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack -EXPORT_SYMBOL net/irda/irda 0x932d7e49 irlmp_connect_request -EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all -EXPORT_SYMBOL net/irda/irda 0x9db1e731 irlmp_close_lsap -EXPORT_SYMBOL net/irda/irda 0x9e9d70f5 hashbin_remove -EXPORT_SYMBOL net/irda/irda 0xa54f1a1c irias_find_object -EXPORT_SYMBOL net/irda/irda 0xa7434be3 irttp_disconnect_request -EXPORT_SYMBOL net/irda/irda 0xb080ed4a irttp_connect_response -EXPORT_SYMBOL net/irda/irda 0xb6586d66 hashbin_get_next -EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value -EXPORT_SYMBOL net/irda/irda 0xba6ef4ac proc_irda -EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute -EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request -EXPORT_SYMBOL net/irda/irda 0xbe8417cb irda_device_dongle_cleanup -EXPORT_SYMBOL net/irda/irda 0xca6fc44f irda_task_delete -EXPORT_SYMBOL net/irda/irda 0xce6e9303 irda_device_register_dongle -EXPORT_SYMBOL net/irda/irda 0xd87febdc irda_device_dongle_init -EXPORT_SYMBOL net/irda/irda 0xdbd5da79 irias_add_string_attrib -EXPORT_SYMBOL net/irda/irda 0xdd5b06da irda_task_next_state -EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint -EXPORT_SYMBOL net/irda/irda 0xe1370d2c irttp_close_tsap -EXPORT_SYMBOL net/irda/irda 0xe343216a irttp_open_tsap -EXPORT_SYMBOL net/irda/irda 0xe9d58deb hashbin_lock_find -EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries -EXPORT_SYMBOL net/irda/irda 0xf22aa033 hashbin_find -EXPORT_SYMBOL net/irda/irda 0xf39b7fe0 irda_setup_dma -EXPORT_SYMBOL net/irda/irda 0xf5f7ccc5 hashbin_insert -EXPORT_SYMBOL net/irda/irda 0xf6c58c8d hashbin_get_first -EXPORT_SYMBOL net/irda/irda 0xfb031a1c irlmp_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x2e12c76c lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x6591c9d4 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x69415d2a lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xaeac9a3b lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xd86afbb5 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xeda9bee8 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xf68e0cdd lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xf7e1fd53 lapb_setparms -EXPORT_SYMBOL net/mac80211/mac80211 0x05a59c03 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x07f915f8 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0ba4e151 sta_info_put -EXPORT_SYMBOL net/mac80211/mac80211 0x0f593d59 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x131fd30d __ieee80211_rx -EXPORT_SYMBOL net/mac80211/mac80211 0x256ee4b0 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x31699dd8 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x45f0252c ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x49ef338b ieee80211_get_hdrlen -EXPORT_SYMBOL net/mac80211/mac80211 0x4b6d0f72 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4d78da09 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x5b010650 sta_info_get -EXPORT_SYMBOL net/mac80211/mac80211 0x71699104 ieee80211_alloc_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x84e8f6d6 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8b142efb ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x91ec7713 ieee80211_start_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x95076264 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9a67c20d __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9e58d496 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbbe80c55 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbe41a88b ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbf7dd850 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xcaf3f044 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xd81c9718 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xd9bbd104 ieee80211_register_hwmode -EXPORT_SYMBOL net/mac80211/mac80211 0xe8a7ab44 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xed3e38e9 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xf1859097 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xfaa20bbb ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xfd2ade63 ieee80211_beacon_get -EXPORT_SYMBOL net/mac80211/mac80211 0xff7991aa ieee80211_scan_completed -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x08d0fd40 __nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4ba11495 __nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xed23741c per_cpu__nf_conntrack_stat -EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x82f94e40 nf_ct_gre_keymap_flush -EXPORT_SYMBOL net/netfilter/x_tables 0x13f77c52 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x3b46a5c3 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x3f56f136 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x6dc1e698 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x78620a57 xt_find_target -EXPORT_SYMBOL net/netfilter/x_tables 0x791439e5 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x798f5e98 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8ec5e85e xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc3acbba2 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xdf0d154d xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xe09e9c18 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xf0f0874b xt_unregister_targets -EXPORT_SYMBOL net/rfkill/rfkill 0x0afa7829 rfkill_switch_all -EXPORT_SYMBOL net/rfkill/rfkill 0x1206d415 rfkill_register -EXPORT_SYMBOL net/rfkill/rfkill 0x2fc0b946 rfkill_unregister -EXPORT_SYMBOL net/rfkill/rfkill 0x5d67ec68 rfkill_free -EXPORT_SYMBOL net/rfkill/rfkill 0xd6129125 rfkill_allocate -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x059d4c9b rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x10743bf3 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x16433185 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1e4e29ec rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2efbb286 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x315d5a1f rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x340fb519 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3c131a8a rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x42c0003b rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5a38bbc0 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6252aaff rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x64a6f688 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x83709e2d rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa2d9d10c rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd0a002b8 key_type_rxrpc -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x074cbb1b gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0deba955 gss_mech_get_by_pseudoflavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x163584ea gss_encrypt_xdr_buf -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x51609357 gss_svc_to_pseudoflavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5414adab make_checksum -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x703bba08 krb5_decrypt -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x985cf93c svcauth_gss_flavor -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9c9023dc gss_service_to_auth_domain_name -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa9361c74 gss_mech_unregister -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb8b66846 gss_decrypt_xdr_buf -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb8ebacb6 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xca9660fa gss_mech_get_by_name -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcaa69032 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xce8c4f14 gss_mech_register -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe6193736 krb5_encrypt -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header -EXPORT_SYMBOL net/sunrpc/sunrpc 0x01a7120a svc_wake_up -EXPORT_SYMBOL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL net/sunrpc/sunrpc 0x085466c6 rpc_wake_up_status -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0b761c5e cache_check -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0f384b72 rpc_call_sync -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x11bd7595 xdr_decode_array2 -EXPORT_SYMBOL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x146d3d0a svc_process -EXPORT_SYMBOL net/sunrpc/sunrpc 0x154ccdfe svc_makesock -EXPORT_SYMBOL net/sunrpc/sunrpc 0x17baef8a put_rpccred -EXPORT_SYMBOL net/sunrpc/sunrpc 0x18101693 svc_set_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1a6df124 __rpc_wait_for_completion_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1b045f0d xdr_buf_from_iov -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1e176631 xdr_process_buf -EXPORT_SYMBOL net/sunrpc/sunrpc 0x21518acb rpc_print_iostats -EXPORT_SYMBOL net/sunrpc/sunrpc 0x224cd246 svc_create -EXPORT_SYMBOL net/sunrpc/sunrpc 0x27ba4d83 rpcauth_destroy_credcache -EXPORT_SYMBOL net/sunrpc/sunrpc 0x293e896a rpc_put_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2aa17774 rpc_free_iostats -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2e61e6f3 rpc_shutdown_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj -EXPORT_SYMBOL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0x31fae704 svc_recv -EXPORT_SYMBOL net/sunrpc/sunrpc 0x32766bbf rpc_run_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x36e0d78e rpc_init_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x38849792 rpc_setbufsize -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3a1bb4bb rpc_clnt_sigmask -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3e75e890 rpc_sleep_on -EXPORT_SYMBOL net/sunrpc/sunrpc 0x41e18267 svc_set_num_threads -EXPORT_SYMBOL net/sunrpc/sunrpc 0x438cbda2 rpcauth_init_credcache -EXPORT_SYMBOL net/sunrpc/sunrpc 0x457bb252 svc_authenticate -EXPORT_SYMBOL net/sunrpc/sunrpc 0x478dba9a xdr_encode_word -EXPORT_SYMBOL net/sunrpc/sunrpc 0x49221762 xdr_reserve_space -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4d18a3ef svc_destroy -EXPORT_SYMBOL net/sunrpc/sunrpc 0x501a00fc svc_sock_names -EXPORT_SYMBOL net/sunrpc/sunrpc 0x519167a5 xdr_decode_word -EXPORT_SYMBOL net/sunrpc/sunrpc 0x51941824 xdr_inline_decode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5624bea5 xdr_read_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5dc88a18 cache_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6647c31d xdr_encode_array2 -EXPORT_SYMBOL net/sunrpc/sunrpc 0x689fcc46 xdr_buf_subsegment -EXPORT_SYMBOL net/sunrpc/sunrpc 0x69d50ecb rpc_wake_up_next -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge -EXPORT_SYMBOL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7561ce0d xdr_decode_string_inplace -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7a2d6003 rpc_call_async -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7a601520 svc_auth_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7f7e826d rpc_killall_tasks -EXPORT_SYMBOL net/sunrpc/sunrpc 0x81b345d3 xdr_init_decode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8382f805 svc_drop -EXPORT_SYMBOL net/sunrpc/sunrpc 0x85ad40e5 rpc_wake_up -EXPORT_SYMBOL net/sunrpc/sunrpc 0x88cfdf9b rpc_queue_upcall -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8b380924 svc_exit_thread -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8d6e7d99 rpc_clone_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8dc3bb2e auth_unix_add_addr -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8e24ac7b sunrpc_cache_update -EXPORT_SYMBOL net/sunrpc/sunrpc 0x94684d43 auth_unix_lookup -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9515eb23 cache_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9992bd42 rpc_wake_up_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9a1c5490 rpcauth_unregister -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9a2897f4 rpc_execute -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9cc36d31 rpc_bind_new_program -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9d3d7989 rpcauth_lookupcred -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa455d9a3 rpc_alloc_iostats -EXPORT_SYMBOL net/sunrpc/sunrpc 0xaaf78ec5 auth_domain_lookup -EXPORT_SYMBOL net/sunrpc/sunrpc 0xae29f516 rpc_call_setup -EXPORT_SYMBOL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb0bf524d rpc_call_null -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb95baede rpc_mkpipe -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbc9f574e auth_domain_find -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbce67dc0 xprt_set_timeout -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbed5407a rpc_exit_task -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc0d21eb0 svc_proc_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc17e6dad sunrpc_cache_lookup -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc4a7dac5 rpcauth_init_cred -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc4d78cc2 xdr_init_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc51d3893 rpc_clnt_sigunmask -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc71e871d svc_seq_show -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcb70971a rpcauth_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0xce4d861a rpc_unlink -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd0a66653 svc_create_thread -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd431f85c rpc_init_wait_queue -EXPORT_SYMBOL net/sunrpc/sunrpc 0xdba8bd4a rpc_delay -EXPORT_SYMBOL net/sunrpc/sunrpc 0xdf3f1ee2 xdr_encode_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe103e6b9 svc_create_pooled -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe4904315 unix_domain_find -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe64e9a51 xdr_write_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe6d519d9 auth_domain_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe731805a xdr_shift_buf -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0xea542ac9 auth_unix_forget_old -EXPORT_SYMBOL net/sunrpc/sunrpc 0xec6178fe xdr_enter_page -EXPORT_SYMBOL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL net/sunrpc/sunrpc 0xefe9bd2c rpc_proc_register -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf39f8b75 rpcauth_lookup_credcache -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf41fdcdd cache_purge -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf6d11851 read_bytes_from_xdr_buf -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf6ea36d4 svc_reserve -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfa748f95 xdr_buf_read_netobj -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfaf9d59d xdr_inline_pages -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfb362aed svcauth_unix_set_client -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfd716ca0 rpcauth_create -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfef292a2 rpc_restart_call -EXPORT_SYMBOL net/tipc/tipc 0x01e61721 tipc_continue -EXPORT_SYMBOL net/tipc/tipc 0x08acf310 tipc_available_nodes -EXPORT_SYMBOL net/tipc/tipc 0x10d40fcd tipc_isconnected -EXPORT_SYMBOL net/tipc/tipc 0x1472b270 tipc_disconnect -EXPORT_SYMBOL net/tipc/tipc 0x1479cb03 tipc_deleteport -EXPORT_SYMBOL net/tipc/tipc 0x15b5ecde tipc_set_portunreliable -EXPORT_SYMBOL net/tipc/tipc 0x16f27683 tipc_block_bearer -EXPORT_SYMBOL