Changeset 14

Show
Ignore:
Timestamp:
10/23/05 11:15:36 (6 years ago)
Author:
dkaplan1
Message:

Added code for mapping kernel structures into driver ring when needed

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • arch/i386/kernel/callgate.c

    r11 r14  
    4343#include <asm/desc.h> 
    4444#include <asm/callgate.h> 
     45#include <linux/rwsem.h> 
     46#include <linux/mm.h> 
    4547#ifdef CONFIG_MATH_EMULATION 
    4648#include <asm/math_emu.h> 
     
    6668void callgate_entry3(int oldcs, unsigned long param1, unsigned long param2, unsigned long param3); 
    6769void callgate_entry4(int oldcs, unsigned long func, unsigned long param1, unsigned long param2, unsigned long param3); 
     70void callgate_entry5(int oldcs, unsigned long func, unsigned long param1, unsigned long param2, unsigned long param3, unsigned long param4); 
    6871void callgate_entry10(int olcs, unsigned long param1,  
    6972                                unsigned long param2, 
     
    102105        "pushl 16(%ebp)\n\t" 
    103106        "decl %ecx\n\t" 
    104         "cmpl $1, %ecx\n\t" 
     107        "cmpl $3, %ecx\n\t" 
    105108        "ja done4\n\t" 
    106109        "call *callgate_table4(,%ecx,4)\n\t" 
     
    109112        "leave\n\t" 
    110113        "lret $16\n\t" 
    111         "callgate_table4: .long register_chrdev, copy_from_user, copy_to_user" 
     114        "callgate_table4: .long register_chrdev, copy_from_user, copy_to_user, no_llseek" 
     115); 
     116 
     117__asm__("callgate_entry5:" 
     118        "pushl %ebp\n\t" 
     119        "movl %esp, %ebp\n\t" 
     120        SAVE_SEG 
     121        "movl 12(%ebp), %ecx\n\t" 
     122        "pushl 28(%ebp)\n\t" 
     123        "pushl 24(%ebp)\n\t" 
     124        "pushl 20(%ebp)\n\t" 
     125        "pushl 16(%ebp)\n\t" 
     126        "decl %ecx\n\t" 
     127        "cmpl $0, %ecx\n\t" 
     128        "ja done5\n\t" 
     129        "call *callgate_table5(,%ecx,4)\n\t" 
     130        "done5: addl $16, %esp\n\t" 
     131        RESTORE_SEG 
     132        "leave\n\t" 
     133        "lret $20\n\t" 
     134        "callgate_table5: .long __request_region" 
    112135); 
    113136__asm__("callgate_entry1:" 
     
    200223    create_callgate((unsigned long) callgate_entry3, 2, 3); 
    201224    create_callgate((unsigned long) callgate_entry10, 2, 10); 
     225    create_callgate((unsigned long) callgate_entry4, 2, 4); 
     226    create_callgate((unsigned long) callgate_entry5, 2, 5); 
    202227} 
    203228 
    204229//Cannot call from no context (ie interrupt handler) 
    205 int calldriver(unsigned long addr, unsigned long *argv, int argc, struct mm_struct *mm, unsigned long flags
     230int calldriver(unsigned long addr, unsigned long *argv, int argc, struct mm_struct *mm, unsigned long ptrbitmap
    206231{ 
    207232    struct task_struct *tsk; 
    208233    struct pt_regs *regs; 
     234    unsigned long addrs[argc]; 
     235    int count; 
     236    int i; 
     237    void * origmems[argc]; 
    209238    if (in_interrupt()) 
    210239    { 
     
    251280        BUG(); 
    252281 
     282    regs->edi=0x13371337; 
    253283    //push parameters 
     284    count=argc; 
    254285    while (argc) { 
     286        argc--; 
    255287        regs->esp-=4; 
    256         *(unsigned long*)(regs->esp)=argv[argc-1]; 
    257         argc--; 
    258     } 
     288        //Check if argument is a pointer that we need to map in 
     289        if (ptrbitmap & (1 << (argc))) { 
     290            //this is a ptr, so map it in 
     291            //FIXME: Assuming all struct are less than 512B 
     292            addrs[argc]=map_struct((void*) argv[argc],  512, tsk->ring, &origmems[argc]); 
     293//            addrs[argc]=0; 
     294            *(unsigned long*)(regs->esp)=addrs[argc]; 
     295        } else { 
     296            addrs[argc]=0; 
     297            *(unsigned long*)(regs->esp)=argv[argc]; 
     298        } 
     299    } 
     300    argc=count; 
    259301     
    260302    //printk("Going...\n"); 
    261303    //show_regs(regs); 
    262304    wake_up_process(tsk);     
    263  
    264305    interruptible_sleep_on(&tsk->wait_driverfinish); 
     306    //Free any memory we allocated 
     307    for (i=0; i<argc; i++) { 
     308        if (addrs[i]) { 
     309            ClearPageReserved(pfn_to_page(__pa(argv[i]) >> PAGE_SHIFT)); 
     310            vunmap(origmems[i]); 
     311        } 
     312    } 
    265313    return tsk->exit_code; 
    266314} 
    267315 
     316unsigned long map_struct(void *kernel_struct, unsigned long size, int ring, void **origmem) 
     317{ 
     318    struct vm_area_struct *vma; 
     319    unsigned long addr=0; 
     320    if (!kernel_struct || !size) 
     321        return -EINVAL; 
     322    vma=(struct vm_area_struct*) kmalloc(sizeof(struct vm_area_struct), GFP_KERNEL); 
     323    down_write(&init_mm.mmap_sem); 
     324 
     325    if (ring == 1) 
     326        addr=(unsigned long) __vmalloc(PAGE_SIZE + size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL, VMALLOC_RING1| VMALLOC_NOMAP); 
     327    else if (ring == 2) 
     328        addr=(unsigned long) __vmalloc(PAGE_SIZE + size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL, VMALLOC_RING2 | VMALLOC_NOMAP); 
     329    else 
     330        BUG(); 
     331    if (!addr) goto out; 
     332    *origmem=(void*) addr; 
     333    addr=PAGE_ALIGN(addr); 
     334     
     335    vma->vm_mm=&init_mm; 
     336    SetPageReserved(pfn_to_page(__pa(kernel_struct) >> PAGE_SHIFT)); 
     337    remap_page_range(vma, addr, __pa(kernel_struct), size, PAGE_KERNEL); 
     338    addr+=(unsigned long) kernel_struct & (PAGE_SIZE -1); 
     339     
     340out:    up_write(&init_mm.mmap_sem); 
     341        kfree(vma); 
     342        return addr; 
     343} 
    268344     
    269345         
  • arch/i386/kernel/module.c

    r6 r14  
    3636                return NULL; 
    3737//      return vmalloc(size); 
    38     ptr=__vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL, VMALLOC_RING2); 
     38    ptr=__vmalloc(size, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL, VMALLOC_RING1); 
    3939    //printk("Allocated space for driver at %x", (unsigned long) ptr); 
    4040    return ptr; 
  • arch/i386/kernel/process.c

    r8 r14  
    302302{ 
    303303    printk("Called with code %d", code); 
     304    printk("In hex %x\n", code); 
    304305} 
    305306/* 
     
    384385   
    385386        regs.eflags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2; 
     387  //FIXME: Do we want to do this? 
     388  regs.eflags|=X86_EFLAGS_IOPL1; 
    386389        /* Ok, create the new process.. */ 
    387390  //printk("Calling do_fork"); 
  • .config

    r13 r14  
    105105# CONFIG_TOSHIBA is not set 
    106106# CONFIG_I8K is not set 
    107 CONFIG_MICROCODE=m 
    108 CONFIG_X86_MSR=m 
    109 CONFIG_X86_CPUID=m 
     107# CONFIG_MICROCODE is not set 
     108# CONFIG_X86_MSR is not set 
     109# CONFIG_X86_CPUID is not set 
    110110 
    111111# 
     
    168168# 
    169169CONFIG_BINFMT_ELF=y 
    170 CONFIG_BINFMT_AOUT=m 
    171 CONFIG_BINFMT_MISC=m 
     170# CONFIG_BINFMT_AOUT is not set 
     171# CONFIG_BINFMT_MISC is not set 
    172172 
    173173# 
     
    178178# Generic Driver Options 
    179179# 
    180 CONFIG_FW_LOADER=m 
     180# CONFIG_FW_LOADER is not set 
    181181# CONFIG_DEBUG_DRIVER is not set 
    182182 
     
    299299# SCSI Transport Attributes 
    300300# 
    301 CONFIG_SCSI_SPI_ATTRS=m 
     301CONFIG_SCSI_SPI_ATTRS=y 
    302302# CONFIG_SCSI_FC_ATTRS is not set 
    303303 
     
    308308# CONFIG_SCSI_ACARD is not set 
    309309# CONFIG_SCSI_AACRAID is not set 
    310 CONFIG_SCSI_AIC7XXX=m 
    311 CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 
    312 CONFIG_AIC7XXX_RESET_DELAY_MS=15000 
    313 # CONFIG_AIC7XXX_BUILD_FIRMWARE is not set 
    314 # CONFIG_AIC7XXX_DEBUG_ENABLE is not set 
    315 CONFIG_AIC7XXX_DEBUG_MASK=0 
    316 # CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set 
     310# CONFIG_SCSI_AIC7XXX is not set 
    317311# CONFIG_SCSI_AIC7XXX_OLD is not set 
    318312# CONFIG_SCSI_AIC79XX is not set 
    319 CONFIG_SCSI_DPT_I2O=m 
     313# CONFIG_SCSI_DPT_I2O is not set 
    320314# CONFIG_SCSI_ADVANSYS is not set 
    321 CONFIG_SCSI_MEGARAID=m 
     315# CONFIG_SCSI_MEGARAID is not set 
    322316# CONFIG_SCSI_SATA is not set 
    323 CONFIG_SCSI_BUSLOGIC=m 
    324 # CONFIG_SCSI_OMIT_FLASHPOINT is not set 
     317# CONFIG_SCSI_BUSLOGIC is not set 
    325318# CONFIG_SCSI_DMX3191D is not set 
    326319# CONFIG_SCSI_EATA is not set 
     
    330323# CONFIG_SCSI_IPS is not set 
    331324# CONFIG_SCSI_INIA100 is not set 
    332 CONFIG_SCSI_SYM53C8XX_2=m 
    333 CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 
    334 CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 
    335 CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 
    336 # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set 
     325# CONFIG_SCSI_SYM53C8XX_2 is not set 
    337326# CONFIG_SCSI_IPR is not set 
    338327# CONFIG_SCSI_QLOGIC_ISP is not set 
     
    384373CONFIG_PACKET=y 
    385374CONFIG_PACKET_MMAP=y 
    386 CONFIG_NETLINK_DEV=m 
     375# CONFIG_NETLINK_DEV is not set 
    387376CONFIG_UNIX=y 
    388 CONFIG_NET_KEY=m 
     377# CONFIG_NET_KEY is not set 
    389378CONFIG_INET=y 
    390379CONFIG_IP_MULTICAST=y 
    391380# CONFIG_IP_ADVANCED_ROUTER is not set 
    392381# CONFIG_IP_PNP is not set 
    393 CONFIG_NET_IPIP=m 
    394 CONFIG_NET_IPGRE=m 
    395 CONFIG_NET_IPGRE_BROADCAST=y 
     382# CONFIG_NET_IPIP is not set 
     383# CONFIG_NET_IPGRE is not set 
    396384# CONFIG_IP_MROUTE is not set 
    397385# CONFIG_ARPD is not set 
    398386CONFIG_SYN_COOKIES=y 
    399 CONFIG_INET_AH=m 
    400 CONFIG_INET_ESP=m 
    401 CONFIG_INET_IPCOMP=m 
     387# CONFIG_INET_AH is not set 
     388# CONFIG_INET_ESP is not set 
     389# CONFIG_INET_IPCOMP is not set 
    402390 
    403391# 
     
    412400# IP: Netfilter Configuration 
    413401# 
    414 CONFIG_IP_NF_CONNTRACK=m 
    415 CONFIG_IP_NF_FTP=m 
    416 CONFIG_IP_NF_IRC=m 
    417 # CONFIG_IP_NF_TFTP is not set 
    418 # CONFIG_IP_NF_AMANDA is not set 
    419 CONFIG_IP_NF_QUEUE=m 
    420 CONFIG_IP_NF_IPTABLES=m 
    421 CONFIG_IP_NF_MATCH_LIMIT=m 
    422 # CONFIG_IP_NF_MATCH_IPRANGE is not set 
    423 CONFIG_IP_NF_MATCH_MAC=m 
    424 # CONFIG_IP_NF_MATCH_PKTTYPE is not set 
    425 CONFIG_IP_NF_MATCH_MARK=m 
    426 CONFIG_IP_NF_MATCH_MULTIPORT=m 
    427 CONFIG_IP_NF_MATCH_TOS=m 
    428 # CONFIG_IP_NF_MATCH_RECENT is not set 
    429 # CONFIG_IP_NF_MATCH_ECN is not set 
    430 # CONFIG_IP_NF_MATCH_DSCP is not set 
    431 CONFIG_IP_NF_MATCH_AH_ESP=m 
    432 CONFIG_IP_NF_MATCH_LENGTH=m 
    433 CONFIG_IP_NF_MATCH_TTL=m 
    434 CONFIG_IP_NF_MATCH_TCPMSS=m 
    435 # CONFIG_IP_NF_MATCH_HELPER is not set 
    436 CONFIG_IP_NF_MATCH_STATE=m 
    437 # CONFIG_IP_NF_MATCH_CONNTRACK is not set 
    438 CONFIG_IP_NF_MATCH_OWNER=m 
    439 CONFIG_IP_NF_FILTER=m 
    440 CONFIG_IP_NF_TARGET_REJECT=m 
    441 CONFIG_IP_NF_NAT=m 
    442 CONFIG_IP_NF_NAT_NEEDED=y 
    443 CONFIG_IP_NF_TARGET_MASQUERADE=m 
    444 CONFIG_IP_NF_TARGET_REDIRECT=m 
    445 # CONFIG_IP_NF_TARGET_NETMAP is not set 
    446 # CONFIG_IP_NF_TARGET_SAME is not set 
    447 # CONFIG_IP_NF_NAT_LOCAL is not set 
    448 CONFIG_IP_NF_NAT_SNMP_BASIC=m 
    449 CONFIG_IP_NF_NAT_IRC=m 
    450 CONFIG_IP_NF_NAT_FTP=m 
    451 CONFIG_IP_NF_MANGLE=m 
    452 CONFIG_IP_NF_TARGET_TOS=m 
    453 # CONFIG_IP_NF_TARGET_ECN is not set 
    454 # CONFIG_IP_NF_TARGET_DSCP is not set 
    455 CONFIG_IP_NF_TARGET_MARK=m 
    456 # CONFIG_IP_NF_TARGET_CLASSIFY is not set 
    457 CONFIG_IP_NF_TARGET_LOG=m 
    458 CONFIG_IP_NF_TARGET_ULOG=m 
    459 CONFIG_IP_NF_TARGET_TCPMSS=m 
    460 CONFIG_IP_NF_ARPTABLES=m 
    461 CONFIG_IP_NF_ARPFILTER=m 
    462 CONFIG_IP_NF_ARP_MANGLE=m 
     402# CONFIG_IP_NF_CONNTRACK is not set 
     403# CONFIG_IP_NF_QUEUE is not set 
     404# CONFIG_IP_NF_IPTABLES is not set 
     405# CONFIG_IP_NF_ARPTABLES is not set 
    463406# CONFIG_IP_NF_COMPAT_IPCHAINS is not set 
    464407# CONFIG_IP_NF_COMPAT_IPFWADM is not set 
    465 # CONFIG_IP_NF_RAW is not set 
    466 CONFIG_XFRM=y 
    467 # CONFIG_XFRM_USER is not set 
    468408 
    469409# 
     
    505445# CONFIG_EQUALIZER is not set 
    506446# CONFIG_TUN is not set 
    507 # CONFIG_ETHERTAP is not set 
    508447 
    509448# 
     
    611550CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 
    612551CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 
    613 CONFIG_INPUT_JOYDEV=m 
     552# CONFIG_INPUT_JOYDEV is not set 
    614553# CONFIG_INPUT_TSDEV is not set 
    615 CONFIG_INPUT_EVDEV=m 
     554# CONFIG_INPUT_EVDEV is not set 
    616555# CONFIG_INPUT_EVBUG is not set 
    617556 
     
    675614# CONFIG_WATCHDOG is not set 
    676615CONFIG_HW_RANDOM=y 
    677 CONFIG_NVRAM=m 
     616# CONFIG_NVRAM is not set 
    678617CONFIG_RTC=y 
    679618# CONFIG_DTLK is not set 
     
    926865CONFIG_NLS=y 
    927866CONFIG_NLS_DEFAULT="cp437" 
    928 CONFIG_NLS_CODEPAGE_437=m 
     867# CONFIG_NLS_CODEPAGE_437 is not set 
    929868# CONFIG_NLS_CODEPAGE_737 is not set 
    930869# CONFIG_NLS_CODEPAGE_775 is not set 
     
    949888# CONFIG_NLS_CODEPAGE_1250 is not set 
    950889# CONFIG_NLS_CODEPAGE_1251 is not set 
    951 CONFIG_NLS_ISO8859_1=m 
     890# CONFIG_NLS_ISO8859_1 is not set 
    952891# CONFIG_NLS_ISO8859_2 is not set 
    953892# CONFIG_NLS_ISO8859_3 is not set 
     
    962901# CONFIG_NLS_KOI8_R is not set 
    963902# CONFIG_NLS_KOI8_U is not set 
    964 CONFIG_NLS_UTF8=m 
     903# CONFIG_NLS_UTF8 is not set 
    965904 
    966905# 
     
    1013952# CONFIG_CRYPTO_NULL is not set 
    1014953# CONFIG_CRYPTO_MD4 is not set 
    1015 CONFIG_CRYPTO_MD5=m 
    1016 CONFIG_CRYPTO_SHA1=m 
     954# CONFIG_CRYPTO_MD5 is not set 
     955# CONFIG_CRYPTO_SHA1 is not set 
    1017956# CONFIG_CRYPTO_SHA256 is not set 
    1018957# CONFIG_CRYPTO_SHA512 is not set 
    1019 CONFIG_CRYPTO_DES=m 
     958# CONFIG_CRYPTO_DES is not set 
    1020959# CONFIG_CRYPTO_BLOWFISH is not set 
    1021960# CONFIG_CRYPTO_TWOFISH is not set 
     
    1025964# CONFIG_CRYPTO_CAST6 is not set 
    1026965# CONFIG_CRYPTO_ARC4 is not set 
    1027 CONFIG_CRYPTO_DEFLATE=m 
     966# CONFIG_CRYPTO_DEFLATE is not set 
    1028967# CONFIG_CRYPTO_MICHAEL_MIC is not set 
    1029968# CONFIG_CRYPTO_CRC32C is not set 
     
    1036975# CONFIG_LIBCRC32C is not set 
    1037976CONFIG_ZLIB_INFLATE=y 
    1038 CONFIG_ZLIB_DEFLATE=m 
    1039977CONFIG_X86_BIOS_REBOOT=y 
    1040978CONFIG_X86_STD_RESOURCES=y 
  • drivers/char/misc.c

    r1 r14  
    140140        int err = -ENODEV; 
    141141        struct file_operations *old_fops, *new_fops = NULL; 
    142        
     142  unsigned long args[2];       
    143143        down(&misc_sem); 
    144144         
     
    169169        file->f_op = new_fops; 
    170170        if (file->f_op->open) { 
    171                 err=file->f_op->open(inode,file); 
     171      if ((unsigned long) file->f_op->open > PAGE_OFFSET) 
     172                err=file->f_op->open(inode,file); 
     173      else { 
     174          args[0]=(unsigned long) inode; 
     175          args[1]=(unsigned long) file; 
     176          err=calldriver((unsigned long) file->f_op->open, args, 2, current->mm, 3); 
     177      } 
     178 
    172179                if (err) { 
    173180                        fops_put(file->f_op); 
  • fs/open.c

    r13 r14  
    804804                        args[0]=(unsigned long) inode; 
    805805                        args[1]=(unsigned long) f; 
    806                         error = calldriver((unsigned long) f->f_op->open, args, 2, current->mm, 0); 
     806                        error = calldriver((unsigned long) f->f_op->open, args, 2, current->mm, 3); 
    807807                } 
    808808                if (error) 
  • include/asm-i386/callgate.h

    r12 r14  
    99 
    1010void callgate_entry4(int oldcs, unsigned long func, unsigned long param1, unsigned long param2, unsigned long param3); 
     11void callgate_entry5(int oldcs, unsigned long func, unsigned long param1, unsigned long param2, unsigned long param3, unsigned long param4); 
    1112void callgate_entry10(int olcs, unsigned long param1,  
    1213                                unsigned long param2, 
     
    2122 
    2223struct mm_struct; 
    23 extern int calldriver(unsigned long addr, unsigned long *argv, int argc, struct mm_struct *mm, unsigned long flags); 
    24  
     24struct task_struct; 
     25extern int calldriver(unsigned long addr, unsigned long *argv, int argc, struct mm_struct *mm, unsigned long ptrbitmap); 
     26extern unsigned long map_struct(void *kernel_struct, unsigned long size, int ring, void **origmem); 
    2527//flags for calldriver 
    2628#define DO_EXIT 0x1 
     
    4143//3 parameter functions 
    4244#define CALLGATE_REGISTERCHRDEV "pushl $1\n\t" 
    43 #define CALLGATE_COPYFROMUSER "pushl $2\n\t" 
    44 #define CALLGATE_COPYTOUSER "pushl $3\n\t" 
    45  
     45#define CALLGATE_copy_from_user "pushl $2\n\t" 
     46#define CALLGATE_copy_to_user "pushl $3\n\t" 
     47#define CALLGATE_no_llseek "pushl $4\n\t" 
     48//4 parameter functions 
     49#define CALLGATE___request_region "pushl $1\n\t" 
    4650//10 parameter functions 
    4751#define CALLGATE_printk "pushl $1\n\t" 
  • include/asm-i386/dapi.h

    r12 r14  
    33 
    44#include <asm/callgate.h> 
     5#include <asm-generic/errno-base.h> 
    56 
    67#define make_wrap1(func, ret, type1) \ 
    7     static ret func ( type1 param1 ) { \ 
     8    static inline ret func ( type1 param1 ) { \ 
    89        ret myret;  \ 
    9         asm("pushl %0\n\t"   \ 
     10        asm volatile ("pushl %0\n\t"   \ 
    1011                CALLGATE_ ## func  \ 
    1112                LCALL1       \ 
     
    1617 
    1718#define make_wrap2(func, ret, type1, type2) \ 
    18     static ret func ( type1 param1 , type2 param2 ) { \ 
     19    static inline ret func ( type1 param1 , type2 param2 ) { \ 
    1920        ret myret;  \ 
    20         asm("pushl %0\n\t"   \ 
     21        asm volatile ("pushl %0\n\t"   \ 
    2122                "pushl %1\n\t" \ 
    2223                CALLGATE_ ## func  \ 
    23                 LCALL1       \ 
    24                 : "=a"(myret) : "r"(param2) "r"(param1));  \ 
     24                LCALL2       \ 
     25                : "=a"(myret) : "r"(param2), "r"(param1));  \ 
    2526        return myret;  \ 
    2627    } 
    2728 
    2829 
     30#define make_wrap3(func, ret, type1, type2, type3) \ 
     31    static inline ret func ( type1 param1 , type2 param2, type3 param3 ) { \ 
     32        ret myret;  \ 
     33        asm volatile ("pushl %0\n\t"   \ 
     34                "pushl %1\n\t" \ 
     35                "pushl %2\n\t" \ 
     36                CALLGATE_ ## func  \ 
     37                LCALL3       \ 
     38                : "=a"(myret) : "r"(param3), "r"(param2), "r"(param1));  \ 
     39        return myret;  \ 
     40    } 
     41 
     42 
     43#define make_wrap4(func, ret, type1, type2, type3, type4) \ 
     44    static inline ret func ( type1 param1 , type2 param2, type3 param3, type4 param4 ) { \ 
     45        ret myret;  \ 
     46        asm volatile ("pushl %0\n\t"   \ 
     47                "pushl %1\n\t" \ 
     48                "pushl %2\n\t" \ 
     49                "pushl %3\n\t" \ 
     50                CALLGATE_ ## func  \ 
     51                LCALL4       \ 
     52                : "=a"(myret) : "r"(param4), "r"(param3), "r"(param2), "r"(param1));  \ 
     53        return myret;  \ 
     54    } 
    2955#define make_wrap10(func, ret, type1, ... ) \ 
    3056    static ret func (type1 param1, ... ) { \ 
    3157        ret myret;  \ 
    32         asm(    "pushl %%ebp\n\t" \ 
     58        asm (    "pushl %%ebp\n\t" \ 
    3359                "movl %%esp, %%ebp\n\t" \ 
    3460                "pushl %0\n\t"   \ 
     
    5278#define LCALL2 "lcall $0x110,$0\n\t" 
    5379#define LCALL10 "lcall $0x118,$0\n\t" 
     80#define LCALL3 "lcall $0x120,$0\n\t" 
     81#define LCALL4 "lcall $0x128,$0\n\t" 
    5482 
    5583 
    56 //#ifdef MODULE 
    57  
     84#ifdef MODULE 
     85//forward declarations 
     86struct file; 
    5887struct miscdevice; 
    5988make_wrap1(misc_register, int, struct miscdevice *) 
    6089make_wrap1(misc_deregister, int, struct miscdevice *) 
    6190make_wrap10(printk,int,const char *) 
    62 //#endif 
     91make_wrap3(copy_to_user, unsigned long, void __user *, const void *, unsigned long) 
     92make_wrap3(copy_from_user, unsigned long, void *, const void __user *, unsigned long) 
     93make_wrap4(__request_region, struct resource *, struct resource *, unsigned long, unsigned long, const char *)  
     94//make_wrap3(no_llseek, loff_t, struct file *, loff_t, int) 
     95 
     96    //no_llseek, which sucks cause of 64-bit loff_t 
     97 
     98         
     99 
     100#endif 
    63101#endif 
    64102 
  • include/asm-i386/processor.h

    r8 r14  
    115115#define X86_EFLAGS_OF   0x00000800 /* Overflow Flag */ 
    116116#define X86_EFLAGS_IOPL 0x00003000 /* IOPL mask */ 
     117#define X86_EFLAGS_IOPL1 0x00001000 
     118#define X86_EFLAGS_IOPL2 0x00002000 
    117119#define X86_EFLAGS_NT   0x00004000 /* Nested Task */ 
    118120#define X86_EFLAGS_RF   0x00010000 /* Resume Flag */ 
  • include/config/aic7xxx/build/firmware.h

    r1 r14  
    1 #undef CONFIG_AIC7XXX_BUILD_FIRMWARE 
  • include/config/aic7xxx/cmds/per/device.h

    r1 r14  
    1 #define CONFIG_AIC7XXX_CMDS_PER_DEVICE 8 
  • include/config/aic7xxx/debug/enable.h

    r1 r14  
    1 #undef CONFIG_AIC7XXX_DEBUG_ENABLE 
  • include/config/aic7xxx/debug/mask.h

    r1 r14  
    1 #define CONFIG_AIC7XXX_DEBUG_MASK 0 
  • include/config/aic7xxx/reg/pretty/print.h

    r1 r14  
    1 #undef CONFIG_AIC7XXX_REG_PRETTY_PRINT 
  • include/config/aic7xxx/reset/delay/ms.h

    r1 r14  
    1 #define CONFIG_AIC7XXX_RESET_DELAY_MS 15000 
  • include/config/binfmt/aout/module.h

    r1 r14  
    1 #define CONFIG_BINFMT_AOUT_MODULE 1 
  • include/config/binfmt/misc/module.h

    r1 r14  
    1 #define CONFIG_BINFMT_MISC_MODULE 1 
  • include/config/crypto/deflate/module.h

    r1 r14  
    1 #define CONFIG_CRYPTO_DEFLATE_MODULE 1 
  • include/config/crypto/des/module.h

    r1 r14  
    1 #define CONFIG_CRYPTO_DES_MODULE 1 
  • include/config/crypto/md5/module.h

    r1 r14  
    1 #define CONFIG_CRYPTO_MD5_MODULE 1 
  • include/config/crypto/sha1/module.h

    r1 r14  
    1 #define CONFIG_CRYPTO_SHA1_MODULE 1 
  • include/config/ethertap.h

    r1 r14  
    1 #undef CONFIG_ETHERTAP 
  • include/config/fw/loader/module.h

    r1 r14  
    1 #define CONFIG_FW_LOADER_MODULE 1 
  • include/config/inet/ah/module.h

    r1 r14  
    1 #define CONFIG_INET_AH_MODULE 1 
  • include/config/inet/esp/module.h

    r1 r14  
    1 #define CONFIG_INET_ESP_MODULE 1 
  • include/config/inet/ipcomp/module.h

    r1 r14  
    1 #define CONFIG_INET_IPCOMP_MODULE 1 
  • include/config/input/evdev/module.h

    r1 r14  
    1 #define CONFIG_INPUT_EVDEV_MODULE 1 
  • include/config/input/joydev/module.h

    r1 r14  
    1 #define CONFIG_INPUT_JOYDEV_MODULE 1 
  • include/config/ip/nf/amanda.h

    r1 r14  
    1 #undef CONFIG_IP_NF_AMANDA 
  • include/config/ip/nf/arpfilter/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_ARPFILTER_MODULE 1 
  • include/config/ip/nf/arp/mangle/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_ARP_MANGLE_MODULE 1 
  • include/config/ip/nf/arptables/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_ARPTABLES_MODULE 1 
  • include/config/ip/nf/conntrack/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_CONNTRACK_MODULE 1 
  • include/config/ip/nf/filter/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_FILTER_MODULE 1 
  • include/config/ip/nf/ftp/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_FTP_MODULE 1 
  • include/config/ip/nf/iptables/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_IPTABLES_MODULE 1 
  • include/config/ip/nf/irc/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_IRC_MODULE 1 
  • include/config/ip/nf/mangle/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MANGLE_MODULE 1 
  • include/config/ip/nf/match/ah/esp/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_AH_ESP_MODULE 1 
  • include/config/ip/nf/match/conntrack.h

    r1 r14  
    1 #undef CONFIG_IP_NF_MATCH_CONNTRACK 
  • include/config/ip/nf/match/dscp.h

    r1 r14  
    1 #undef CONFIG_IP_NF_MATCH_DSCP 
  • include/config/ip/nf/match/ecn.h

    r1 r14  
    1 #undef CONFIG_IP_NF_MATCH_ECN 
  • include/config/ip/nf/match/helper.h

    r1 r14  
    1 #undef CONFIG_IP_NF_MATCH_HELPER 
  • include/config/ip/nf/match/iprange.h

    r1 r14  
    1 #undef CONFIG_IP_NF_MATCH_IPRANGE 
  • include/config/ip/nf/match/length/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_LENGTH_MODULE 1 
  • include/config/ip/nf/match/limit/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_LIMIT_MODULE 1 
  • include/config/ip/nf/match/mac/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_MAC_MODULE 1 
  • include/config/ip/nf/match/mark/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_MARK_MODULE 1 
  • include/config/ip/nf/match/multiport/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_MULTIPORT_MODULE 1 
  • include/config/ip/nf/match/owner/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_OWNER_MODULE 1 
  • include/config/ip/nf/match/pkttype.h

    r1 r14  
    1 #undef CONFIG_IP_NF_MATCH_PKTTYPE 
  • include/config/ip/nf/match/recent.h

    r1 r14  
    1 #undef CONFIG_IP_NF_MATCH_RECENT 
  • include/config/ip/nf/match/state/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_STATE_MODULE 1 
  • include/config/ip/nf/match/tcpmss/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_TCPMSS_MODULE 1 
  • include/config/ip/nf/match/tos/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_TOS_MODULE 1 
  • include/config/ip/nf/match/ttl/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_MATCH_TTL_MODULE 1 
  • include/config/ip/nf/nat/ftp/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_NAT_FTP_MODULE 1 
  • include/config/ip/nf/nat/irc/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_NAT_IRC_MODULE 1 
  • include/config/ip/nf/nat/local.h

    r1 r14  
    1 #undef CONFIG_IP_NF_NAT_LOCAL 
  • include/config/ip/nf/nat/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_NAT_MODULE 1 
  • include/config/ip/nf/nat/needed.h

    r1 r14  
    1 #define CONFIG_IP_NF_NAT_NEEDED 1 
  • include/config/ip/nf/nat/snmp/basic/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_NAT_SNMP_BASIC_MODULE 1 
  • include/config/ip/nf/queue/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_QUEUE_MODULE 1 
  • include/config/ip/nf/raw.h

    r1 r14  
    1 #undef CONFIG_IP_NF_RAW 
  • include/config/ip/nf/target/classify.h

    r1 r14  
    1 #undef CONFIG_IP_NF_TARGET_CLASSIFY 
  • include/config/ip/nf/target/dscp.h

    r1 r14  
    1 #undef CONFIG_IP_NF_TARGET_DSCP 
  • include/config/ip/nf/target/ecn.h

    r1 r14  
    1 #undef CONFIG_IP_NF_TARGET_ECN 
  • include/config/ip/nf/target/log/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_LOG_MODULE 1 
  • include/config/ip/nf/target/mark/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_MARK_MODULE 1 
  • include/config/ip/nf/target/masquerade/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_MASQUERADE_MODULE 1 
  • include/config/ip/nf/target/netmap.h

    r1 r14  
    1 #undef CONFIG_IP_NF_TARGET_NETMAP 
  • include/config/ip/nf/target/redirect/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_REDIRECT_MODULE 1 
  • include/config/ip/nf/target/reject/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_REJECT_MODULE 1 
  • include/config/ip/nf/target/same.h

    r1 r14  
    1 #undef CONFIG_IP_NF_TARGET_SAME 
  • include/config/ip/nf/target/tcpmss/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_TCPMSS_MODULE 1 
  • include/config/ip/nf/target/tos/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_TOS_MODULE 1 
  • include/config/ip/nf/target/ulog/module.h

    r1 r14  
    1 #define CONFIG_IP_NF_TARGET_ULOG_MODULE 1 
  • include/config/ip/nf/tftp.h

    r1 r14  
    1 #undef CONFIG_IP_NF_TFTP 
  • include/config/microcode/module.h

    r1 r14  
    1 #define CONFIG_MICROCODE_MODULE 1 
  • include/config/net/ipgre/broadcast.h

    r1 r14  
    1 #define CONFIG_NET_IPGRE_BROADCAST 1 
  • include/config/net/ipgre/module.h

    r1 r14  
    1 #define CONFIG_NET_IPGRE_MODULE 1 
  • include/config/net/ipip/module.h

    r1 r14  
    1 #define CONFIG_NET_IPIP_MODULE 1 
  • include/config/net/key/module.h

    r1 r14  
    1 #define CONFIG_NET_KEY_MODULE 1 
  • include/config/netlink/dev/module.h

    r1 r14  
    1 #define CONFIG_NETLINK_DEV_MODULE 1 
  • include/config/nls/codepage/437/module.h

    r1 r14  
    1 #define CONFIG_NLS_CODEPAGE_437_MODULE 1 
  • include/config/nls/iso8859/1/module.h

    r1 r14  
    1 #define CONFIG_NLS_ISO8859_1_MODULE 1 
  • include/config/nls/utf8/module.h

    r1 r14  
    1 #define CONFIG_NLS_UTF8_MODULE 1 
  • include/config/nvram/module.h

    r1 r14  
    1 #define CONFIG_NVRAM_MODULE 1 
  • include/config/scsi/aic7xxx/module.h

    r1 r14  
    1 #define CONFIG_SCSI_AIC7XXX_MODULE 1 
  • include/config/scsi/buslogic/module.h

    r1 r14  
    1 #define CONFIG_SCSI_BUSLOGIC_MODULE 1 
  • include/config/scsi/dpt/i2o/module.h

    r1 r14  
    1 #define CONFIG_SCSI_DPT_I2O_MODULE 1 
  • include/config/scsi/megaraid/module.h

    r1 r14  
    1 #define CONFIG_SCSI_MEGARAID_MODULE 1 
  • include/config/scsi/omit/flashpoint.h

    r1 r14  
    1 #undef CONFIG_SCSI_OMIT_FLASHPOINT 
  • include/config/scsi/spi/attrs/module.h

    r1 r14  
    1 #define CONFIG_SCSI_SPI_ATTRS_MODULE 1 
  • include/config/scsi/sym53c8xx/2/module.h

    r1 r14  
    1 #define CONFIG_SCSI_SYM53C8XX_2_MODULE 1 
  • include/config/scsi/sym53c8xx/default/tags.h

    r1 r14  
    1 #define CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS 16 
  • include/config/scsi/sym53c8xx/dma/addressing/mode.h

    r1 r14  
    1 #define CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE 1 
  • include/config/scsi/sym53c8xx/iomapped.h

    r1 r14  
    1 #undef CONFIG_SCSI_SYM53C8XX_IOMAPPED 
  • include/config/scsi/sym53c8xx/max/tags.h

    r1 r14  
    1 #define CONFIG_SCSI_SYM53C8XX_MAX_TAGS 64 
  • include/config/x86/cpuid/module.h

    r1 r14  
    1 #define CONFIG_X86_CPUID_MODULE 1 
  • include/config/x86/msr/module.h

    r1 r14  
    1 #define CONFIG_X86_MSR_MODULE 1 
  • include/config/xfrm.h

    r1 r14  
    1 #define CONFIG_XFRM 1 
  • include/config/xfrm/user.h

    r1 r14  
    1 #undef CONFIG_XFRM_USER 
  • include/config/zlib/deflate/module.h

    r1 r14  
    1 #define CONFIG_ZLIB_DEFLATE_MODULE 1 
  • include/linux/autoconf.h

    r13 r14  
    106106#undef CONFIG_TOSHIBA 
    107107#undef CONFIG_I8K 
    108 #define CONFIG_MICROCODE_MODULE 1 
    109 #define CONFIG_X86_MSR_MODULE 1 
    110 #define CONFIG_X86_CPUID_MODULE 1 
     108#undef CONFIG_MICROCODE 
     109#undef CONFIG_X86_MSR 
     110#undef CONFIG_X86_CPUID 
    111111 
    112112/* 
     
    169169 */ 
    170170#define CONFIG_BINFMT_ELF 1 
    171 #define CONFIG_BINFMT_AOUT_MODULE 1 
    172 #define CONFIG_BINFMT_MISC_MODULE 1 
     171#undef CONFIG_BINFMT_AOUT 
     172#undef CONFIG_BINFMT_MISC 
    173173 
    174174/* 
     
    179179 * Generic Driver Options 
    180180 */ 
    181 #define CONFIG_FW_LOADER_MODULE 1 
     181#undef CONFIG_FW_LOADER 
    182182#undef CONFIG_DEBUG_DRIVER 
    183183 
     
    300300 * SCSI Transport Attributes 
    301301 */ 
    302 #define CONFIG_SCSI_SPI_ATTRS_MODULE
     302#define CONFIG_SCSI_SPI_ATTRS
    303303#undef CONFIG_SCSI_FC_ATTRS 
    304304 
     
    309309#undef CONFIG_SCSI_ACARD 
    310310#undef CONFIG_SCSI_AACRAID 
    311 #define CONFIG_SCSI_AIC7XXX_MODULE 1 
    312 #define CONFIG_AIC7XXX_CMDS_PER_DEVICE 8 
    313 #define CONFIG_AIC7XXX_RESET_DELAY_MS 15000 
    314 #undef CONFIG_AIC7XXX_BUILD_FIRMWARE 
    315 #undef CONFIG_AIC7XXX_DEBUG_ENABLE 
    316 #define CONFIG_AIC7XXX_DEBUG_MASK 0 
    317 #undef CONFIG_AIC7XXX_REG_PRETTY_PRINT 
     311#undef CONFIG_SCSI_AIC7XXX 
    318312#undef CONFIG_SCSI_AIC7XXX_OLD 
    319313#undef CONFIG_SCSI_AIC79XX 
    320 #define CONFIG_SCSI_DPT_I2O_MODULE 1 
     314#undef CONFIG_SCSI_DPT_I2O 
    321315#undef CONFIG_SCSI_ADVANSYS 
    322 #define CONFIG_SCSI_MEGARAID_MODULE 1 
     316#undef CONFIG_SCSI_MEGARAID 
    323317#undef CONFIG_SCSI_SATA 
    324 #define CONFIG_SCSI_BUSLOGIC_MODULE 1 
    325 #undef CONFIG_SCSI_OMIT_FLASHPOINT 
     318#undef CONFIG_SCSI_BUSLOGIC 
    326319#undef CONFIG_SCSI_DMX3191D 
    327320#undef CONFIG_SCSI_EATA 
     
    331324#undef CONFIG_SCSI_IPS 
    332325#undef CONFIG_SCSI_INIA100 
    333 #define CONFIG_SCSI_SYM53C8XX_2_MODULE 1 
    334 #define CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE 1 
    335 #define CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS 16 
    336 #define CONFIG_SCSI_SYM53C8XX_MAX_TAGS 64 
    337 #undef CONFIG_SCSI_SYM53C8XX_IOMAPPED 
     326#undef CONFIG_SCSI_SYM53C8XX_2 
    338327#undef CONFIG_SCSI_IPR 
    339328#undef CONFIG_SCSI_QLOGIC_ISP 
     
    385374#define CONFIG_PACKET 1 
    386375#define CONFIG_PACKET_MMAP 1 
    387 #define CONFIG_NETLINK_DEV_MODULE 1 
     376#undef CONFIG_NETLINK_DEV 
    388377#define CONFIG_UNIX 1 
    389 #define CONFIG_NET_KEY_MODULE 1 
     378#undef CONFIG_NET_KEY 
    390379#define CONFIG_INET 1 
    391380#define CONFIG_IP_MULTICAST 1 
    392381#undef CONFIG_IP_ADVANCED_ROUTER 
    393382#undef CONFIG_IP_PNP 
    394 #define CONFIG_NET_IPIP_MODULE 1 
    395 #define CONFIG_NET_IPGRE_MODULE 1 
    396 #define CONFIG_NET_IPGRE_BROADCAST 1 
     383#undef CONFIG_NET_IPIP 
     384#undef CONFIG_NET_IPGRE 
    397385#undef CONFIG_IP_MROUTE 
    398386#undef CONFIG_ARPD 
    399387#define CONFIG_SYN_COOKIES 1 
    400 #define CONFIG_INET_AH_MODULE 1 
    401 #define CONFIG_INET_ESP_MODULE 1 
    402 #define CONFIG_INET_IPCOMP_MODULE 1 
     388#undef CONFIG_INET_AH 
     389#undef CONFIG_INET_ESP 
     390#undef CONFIG_INET_IPCOMP 
    403391 
    404392/* 
     
    413401 * IP: Netfilter Configuration 
    414402 */ 
    415 #define CONFIG_IP_NF_CONNTRACK_MODULE 1 
    416 #define CONFIG_IP_NF_FTP_MODULE 1 
    417 #define CONFIG_IP_NF_IRC_MODULE 1 
    418 #undef CONFIG_IP_NF_TFTP 
    419 #undef CONFIG_IP_NF_AMANDA 
    420 #define CONFIG_IP_NF_QUEUE_MODULE 1 
    421 #define CONFIG_IP_NF_IPTABLES_MODULE 1 
    422 #define CONFIG_IP_NF_MATCH_LIMIT_MODULE 1 
    423 #undef CONFIG_IP_NF_MATCH_IPRANGE 
    424 #define CONFIG_IP_NF_MATCH_MAC_MODULE 1 
    425 #undef CONFIG_IP_NF_MATCH_PKTTYPE 
    426 #define CONFIG_IP_NF_MATCH_MARK_MODULE 1 
    427 #define CONFIG_IP_NF_MATCH_MULTIPORT_MODULE 1 
    428 #define CONFIG_IP_NF_MATCH_TOS_MODULE 1 
    429 #undef CONFIG_IP_NF_MATCH_RECENT 
    430 #undef CONFIG_IP_NF_MATCH_ECN 
    431 #undef CONFIG_IP_NF_MATCH_DSCP 
    432 #define CONFIG_IP_NF_MATCH_AH_ESP_MODULE 1 
    433 #define CONFIG_IP_NF_MATCH_LENGTH_MODULE 1 
    434 #define CONFIG_IP_NF_MATCH_TTL_MODULE 1 
    435 #define CONFIG_IP_NF_MATCH_TCPMSS_MODULE 1 
    436 #undef CONFIG_IP_NF_MATCH_HELPER 
    437 #define CONFIG_IP_NF_MATCH_STATE_MODULE 1 
    438 #undef CONFIG_IP_NF_MATCH_CONNTRACK 
    439 #define CONFIG_IP_NF_MATCH_OWNER_MODULE 1 
    440 #define CONFIG_IP_NF_FILTER_MODULE 1 
    441 #define CONFIG_IP_NF_TARGET_REJECT_MODULE 1 
    442 #define CONFIG_IP_NF_NAT_MODULE 1 
    443 #define CONFIG_IP_NF_NAT_NEEDED 1 
    444 #define CONFIG_IP_NF_TARGET_MASQUERADE_MODULE 1 
    445 #define CONFIG_IP_NF_TARGET_REDIRECT_MODULE 1 
    446 #undef CONFIG_IP_NF_TARGET_NETMAP 
    447 #undef CONFIG_IP_NF_TARGET_SAME 
    448 #undef CONFIG_IP_NF_NAT_LOCAL 
    449 #define CONFIG_IP_NF_NAT_SNMP_BASIC_MODULE 1 
    450 #define CONFIG_IP_NF_NAT_IRC_MODULE 1 
    451 #define CONFIG_IP_NF_NAT_FTP_MODULE 1 
    452 #define CONFIG_IP_NF_MANGLE_MODULE 1 
    453 #define CONFIG_IP_NF_TARGET_TOS_MODULE 1 
    454 #undef CONFIG_IP_NF_TARGET_ECN 
    455 #undef CONFIG_IP_NF_TARGET_DSCP 
    456 #define CONFIG_IP_NF_TARGET_MARK_MODULE 1 
    457 #undef CONFIG_IP_NF_TARGET_CLASSIFY 
    458 #define CONFIG_IP_NF_TARGET_LOG_MODULE 1 
    459 #define CONFIG_IP_NF_TARGET_ULOG_MODULE 1 
    460 #define CONFIG_IP_NF_TARGET_TCPMSS_MODULE 1 
    461 #define CONFIG_IP_NF_ARPTABLES_MODULE 1 
    462 #define CONFIG_IP_NF_ARPFILTER_MODULE 1 
    463 #define CONFIG_IP_NF_ARP_MANGLE_MODULE 1 
     403#undef CONFIG_IP_NF_CONNTRACK 
     404#undef CONFIG_IP_NF_QUEUE 
     405#undef CONFIG_IP_NF_IPTABLES 
     406#undef CONFIG_IP_NF_ARPTABLES 
    464407#undef CONFIG_IP_NF_COMPAT_IPCHAINS 
    465408#undef CONFIG_IP_NF_COMPAT_IPFWADM 
    466 #undef CONFIG_IP_NF_RAW 
    467 #define CONFIG_XFRM 1 
    468 #undef CONFIG_XFRM_USER 
    469409 
    470410/* 
     
    506446#undef CONFIG_EQUALIZER 
    507447#undef CONFIG_TUN 
    508 #undef CONFIG_ETHERTAP 
    509448 
    510449/* 
     
    612551#define CONFIG_INPUT_MOUSEDEV_SCREEN_X 1024 
    613552#define CONFIG_INPUT_MOUSEDEV_SCREEN_Y 768 
    614 #define CONFIG_INPUT_JOYDEV_MODULE 1 
     553#undef CONFIG_INPUT_JOYDEV 
    615554#undef CONFIG_INPUT_TSDEV 
    616 #define CONFIG_INPUT_EVDEV_MODULE 1 
     555#undef CONFIG_INPUT_EVDEV 
    617556#undef CONFIG_INPUT_EVBUG 
    618557 
     
    676615#undef CONFIG_WATCHDOG 
    677616#define CONFIG_HW_RANDOM 1 
    678 #define CONFIG_NVRAM_MODULE 1 
     617#undef CONFIG_NVRAM 
    679618#define CONFIG_RTC 1 
    680619#undef CONFIG_DTLK 
     
    927866#define CONFIG_NLS 1 
    928867#define CONFIG_NLS_DEFAULT "cp437" 
    929 #define CONFIG_NLS_CODEPAGE_437_MODULE 1 
     868#undef CONFIG_NLS_CODEPAGE_437 
    930869#undef CONFIG_NLS_CODEPAGE_737 
    931870#undef CONFIG_NLS_CODEPAGE_775 
     
    950889#undef CONFIG_NLS_CODEPAGE_1250 
    951890#undef CONFIG_NLS_CODEPAGE_1251 
    952 #define CONFIG_NLS_ISO8859_1_MODULE
     891#undef CONFIG_NLS_ISO8859_
    953892#undef CONFIG_NLS_ISO8859_2 
    954893#undef CONFIG_NLS_ISO8859_3 
     
    963902#undef CONFIG_NLS_KOI8_R 
    964903#undef CONFIG_NLS_KOI8_U 
    965 #define CONFIG_NLS_UTF8_MODULE 1 
     904#undef CONFIG_NLS_UTF8 
    966905 
    967906/* 
     
    1014953#undef CONFIG_CRYPTO_NULL 
    1015954#undef CONFIG_CRYPTO_MD4 
    1016 #define CONFIG_CRYPTO_MD5_MODULE 1 
    1017 #define CONFIG_CRYPTO_SHA1_MODULE
     955#undef CONFIG_CRYPTO_MD5 
     956#undef CONFIG_CRYPTO_SHA
    1018957#undef CONFIG_CRYPTO_SHA256 
    1019958#undef CONFIG_CRYPTO_SHA512 
    1020 #define CONFIG_CRYPTO_DES_MODULE 1 
     959#undef CONFIG_CRYPTO_DES 
    1021960#undef CONFIG_CRYPTO_BLOWFISH 
    1022961#undef CONFIG_CRYPTO_TWOFISH 
     
    1026965#undef CONFIG_CRYPTO_CAST6 
    1027966#undef CONFIG_CRYPTO_ARC4 
    1028 #define CONFIG_CRYPTO_DEFLATE_MODULE 1 
     967#undef CONFIG_CRYPTO_DEFLATE 
    1029968#undef CONFIG_CRYPTO_MICHAEL_MIC 
    1030969#undef CONFIG_CRYPTO_CRC32C 
     
    1037976#undef CONFIG_LIBCRC32C 
    1038977#define CONFIG_ZLIB_INFLATE 1 
    1039 #define CONFIG_ZLIB_DEFLATE_MODULE 1 
    1040978#define CONFIG_X86_BIOS_REBOOT 1 
    1041979#define CONFIG_X86_STD_RESOURCES 1 
  • include/linux/kernel.h

    r1 r14  
    1515#include <asm/byteorder.h> 
    1616#include <asm/bug.h> 
     17#include <asm/dapi.h> 
    1718 
    1819#define INT_MAX         ((int)(~0U>>1)) 
     
    8788extern int kernel_text_address(unsigned long addr); 
    8889extern int session_of_pgrp(int pgrp); 
    89  
    9090asmlinkage int printk(const char * fmt, ...) 
    9191        __attribute__ ((format (printf, 1, 2))); 
    92  
    9392unsigned long int_sqrt(unsigned long); 
    9493 
  • include/linux/miscdevice.h

    r1 r14  
    33#include <linux/module.h> 
    44#include <linux/major.h> 
    5  
     5#include <asm/dapi.h> 
    66#define PSMOUSE_MINOR  1 
    77#define MS_BUSMOUSE_MINOR 2 
  • include/linux/mm.h

    r5 r14  
    139139#define VMALLOC_RING1  0x01000000    //request va between 2.5GB-3GB 
    140140#define VMALLOC_RING2  0x02000000    //request va between 2GB-2.5GB 
     141#define VMALLOC_NOMAP  0x04000000 
    141142 
    142143#ifndef VM_STACK_DEFAULT_FLAGS          /* arch can override this */ 
  • include/linux/module.h

    r8 r14  
    88 */ 
    99#include <linux/config.h> 
     10 
     11//NEW 
    1012#include <linux/sched.h> 
    1113#include <linux/spinlock.h> 
  • kernel/module.c

    r9 r14  
    14771477        /* vmalloc barfs on "unusual" numbers.  Check here */ 
    14781478//      if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL) 
    1479         if (len > 64 * 1024 * 1024 || (hdr = __vmalloc(len, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL, VMALLOC_RING2)) == NULL) 
     1479        if (len > 64 * 1024 * 1024 || (hdr = __vmalloc(len, GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL, VMALLOC_RING1)) == NULL) 
    14801480                return ERR_PTR(-ENOMEM); 
    14811481        if (copy_from_user(hdr, umod, len) != 0) { 
     
    18571857  printk("Driver thread finished with code %d", ret);*/ 
    18581858  //FIXME: Figure out what ring to load module in (how?) 
    1859   mod->ring=2
     1859  mod->ring=1
    18601860  pid=create_driver_thread(0, mod->ring); 
    18611861  if (!pid) { 
  • kernel/resource.c

    r1 r14  
    2020#include <linux/seq_file.h> 
    2121#include <asm/io.h> 
     22#include <linux/syscalls.h> 
    2223 
    2324 
     
    453454                write_unlock(&resource_lock); 
    454455        } 
     456  if (res) { 
     457      //Check if this is a driver thread 
     458      if ((task_pt_regs(current)->xcs & 3) && (~(task_pt_regs(current)->xcs) & 3)) { 
     459          if (sys_ioperm(start, n, 1)) 
     460              printk(KERN_ERR "Unable to grant io port access\n"); 
     461      } 
     462  } 
    455463        return res; 
    456464} 
  • Makefile

    r13 r14  
    299299PERL            = perl 
    300300CHECK           = sparse 
    301 MODFLAGS        = -DMODULE 
     301MODFLAGS        = -DMODULE  
    302302CFLAGS_MODULE   = $(MODFLAGS) 
    303303AFLAGS_MODULE   = $(MODFLAGS) 
     
    402402 
    403403ifeq ($(KBUILD_EXTMOD),) 
     404 
     405 
    404406# Additional helpers built in scripts/ 
    405407# Carefully list dependencies so we do not try to build scripts twice 
     
    506508libs-y2         := $(patsubst %/, %/built-in.o, $(libs-y)) 
    507509libs-y          := $(libs-y1) $(libs-y2) 
     510 
    508511 
    509512# Build vmlinux 
  • mm/vmalloc.c

    r5 r14  
    409409        if (!area) 
    410410                return NULL; 
    411  
     411  if (flags & VMALLOC_NOMAP) 
     412      return area->addr; 
    412413        nr_pages = size >> PAGE_SHIFT; 
    413414        array_size = (nr_pages * sizeof(struct page *)); 
  • Module.symvers

    r6 r14  
    1 0x00000000      firmware_unregister     vmlinux 
    2 0x00000000      set_anon_super  vmlinux 
    3 0x00000000      kmem_cache_alloc        vmlinux 
    4 0x00000000      request_firmware        drivers/base/firmware_class 
    5 0x00000000      scsi_sense_key_string   vmlinux 
    6 0x00000000      unblock_all_signals     vmlinux 
    7 0x00000000      csum_partial    vmlinux 
    8 0x00000000      nf_log_register vmlinux 
    9 0x00000000      cap_bset        vmlinux 
    10 0x00000000      device_del      vmlinux 
    11 0x00000000      device_add      vmlinux 
    12 0x00000000      remap_page_range        vmlinux 
    13 0x00000000      profile_event_unregister        vmlinux 
    14 0x00000000      sock_no_mmap    vmlinux 
    15 0x00000000      sockfd_lookup   vmlinux 
    16 0x00000000      scsi_get_command        vmlinux 
    17 0x00000000      dm_put_device   vmlinux 
    18 0x00000000      dm_get_device   vmlinux 
    19 0x00000000      copy_to_user    vmlinux 
    20 0x00000000      default_wake_function   vmlinux 
    21 0x00000000      atapi_input_bytes       vmlinux 
    22 0x00000000      pci_bus_read_config_byte        vmlinux 
    23 0x00000000      iget_locked     vmlinux 
    24 0x00000000      class_interface_register        vmlinux 
    25 0x00000000      test_clear_page_dirty   vmlinux 
    26 0x00000000      enable_timer_nmi_watchdog       vmlinux 
    27 0x00000000      class_interface_unregister      vmlinux 
    28 0x00000000      tty_register_device     vmlinux 
    29 0x00000000      usb_bus_list_lock       vmlinux 
    30 0x00000000      find_bus        vmlinux 
    31 0x00000000      steal_locks     vmlinux 
    32 0x00000000      blk_congestion_wait     vmlinux 
    33 0x00000000      dquot_alloc_space       vmlinux 
    34 0x00000000      laptop_mode     vmlinux 
    35 0x00000000      end_page_writeback      vmlinux 
    36 0x00000000      skb_recv_datagram       vmlinux 
    37 0x00000000      class_get       vmlinux 
    38 0x00000000      generic_file_readonly_mmap      vmlinux 
    39 0x00000000      register_console        vmlinux 
    40 0x00000000      ip_finish_output        vmlinux 
    41 0x00000000      sock_no_socketpair      vmlinux 
    42 0x00000000      arpt_do_table   net/ipv4/netfilter/arp_tables 
    43 0x00000000      __ide_dma_timeout       vmlinux 
    44 0x00000000      ide_abort       vmlinux 
    45 0x00000000      task_nice       vmlinux 
    46 0x00000000      needs_ip_conntrack_ftp  net/ipv4/netfilter/ip_conntrack_ftp 
    47 0x00000000      cdrom_is_mrw    vmlinux 
    48 0x00000000      lock_may_read   vmlinux 
    49 0x00000000      ide_fix_driveid vmlinux 
    50 0x00000000      load_nls        vmlinux 
    51 0x00000000      ipt_find_target_lock    net/ipv4/netfilter/ip_tables 
    52 0x00000000      __ide_dma_test_irq      vmlinux 
    53 0x00000000      posix_locks_deadlock    vmlinux 
    54 0x00000000      free_dma        vmlinux 
    55 0x00000000      device_unregister       vmlinux 
    56 0x00000000      xfrm_state_add  vmlinux 
    57 0x00000000      scsicam_bios_param      vmlinux 
    58 0x00000000      I_BDEV  vmlinux 
    59 0x00000000      find_or_create_page     vmlinux 
    60 0x00000000      usb_sg_wait     vmlinux 
    61 0x00000000      usb_sg_init     vmlinux 
    62 0x00000000      usb_buffer_unmap_sg     vmlinux 
    63 0x00000000      scsi_reset_provider     vmlinux 
    64 0x00000000      invalidate_bdev vmlinux 
    65 0x00000000      xfrm4_tunnel_check_size vmlinux 
    66 0x00000000      scsi_extd_sense_format  vmlinux 
    67 0x00000000      class_device_initialize vmlinux 
    68 0x00000000      pci_bus_write_config_dword      vmlinux 
    69 0x00000000      arpt_unregister_target  net/ipv4/netfilter/arp_tables 
    70 0x00000000      blk_cleanup_queue       vmlinux 
    71 0x00000000      tty_hung_up_p   vmlinux 
    72 0x00000000      __blk_attempt_remerge   vmlinux 
    73 0x00000000      usb_driver_release_interface    vmlinux 
    74 0x00000000      ide_dma_intr    vmlinux 
    75 0x00000000      mpage_writepages        vmlinux 
    76 0x00000000      write_one_page  vmlinux 
    77 0x00000000      inet_add_protocol       vmlinux 
    78 0x00000000      sync_blockdev   vmlinux 
    79 0x00000000      rtnl_unlock     vmlinux 
    80 0x00000000      sock_rfree      vmlinux 
    81 0x00000000      freeze_bdev     vmlinux 
    82 0x00000000      bd_release      vmlinux 
    83 0x00000000      param_get_long  vmlinux 
    84 0x00000000      posix_acl_alloc vmlinux 
    85 0x00000000      skb_copy_datagram_iovec vmlinux 
    86 0x00000000      __kfree_skb     vmlinux 
    87 0x00000000      pci_find_parent_resource        vmlinux 
    88 0x00000000      ip_defrag       vmlinux 
    89 0x00000000      skb_copy_datagram       vmlinux 
    90 0x00000000      scsi_allocate_request   vmlinux 
    91 0x00000000      generic_file_aio_read   vmlinux 
    92 0x00000000      init_module     vmlinux 
    93 0x00000000      free_netdev     vmlinux 
    94 0x00000000      register_binfmt vmlinux 
    95 0x00000000      __serio_unregister_port vmlinux 
    96 0x00000000      scsi_host_get   vmlinux 
    97 0x00000000      zlib_inflateIncomp      vmlinux 
    98 0x00000000      idr_pre_get     vmlinux 
    99 0x00000000      sigprocmask     vmlinux 
    100 0x00000000      ata_vlb_sync    vmlinux 
    101 0x00000000      do_mmap_pgoff   vmlinux 
    102 0x00000000      sysctl_tcp_rmem vmlinux 
    103 0x00000000      sock_no_sendmsg vmlinux 
    104 0x00000000      serio_register_device   vmlinux 
    105 0x00000000      vfs_unlink      vmlinux 
    106 0x00000000      bus_rescan_devices      vmlinux 
    107 0x00000000      put_tty_driver  vmlinux 
    108 0x00000000      ioport_resource vmlinux 
    109 0x00000000      rtnl_lock       vmlinux 
    110 0x00000000      system_state    vmlinux 
    111 0x00000000      csum_partial_copy_fromiovecend  vmlinux 
    112 0x00000000      con_set_default_unimap  vmlinux 
    113 0x00000000      dev_get_by_index        vmlinux 
    114 0x00000000      ioctl_by_bdev   vmlinux 
    115 0x00000000      class_device_add        vmlinux 
    116 0x00000000      generic_delete_inode    vmlinux 
    117 0x00000000      blk_run_queue   vmlinux 
    118 0x00000000      kref_put        vmlinux 
    119 0x00000000      zlib_deflate    lib/zlib_deflate/zlib_deflate 
    120 0x00000000      __secpath_destroy       vmlinux 
    121 0x00000000      tcp_unhash      vmlinux 
    122 0x00000000      alloc_skb       vmlinux 
    123 0x00000000      ide_set_xfer_rate       vmlinux 
    124 0x00000000      is_sony_vaio_laptop     vmlinux 
    125 0x00000000      wait_for_ready  vmlinux 
    126 0x00000000      bus_remove_file vmlinux 
    127 0x00000000      xfrm_unregister_km      vmlinux 
    128 0x00000000      in_dev_finish_destroy   vmlinux 
    129 0x00000000      secure_tcp_sequence_number      vmlinux 
    130 0x00000000      bio_map_user    vmlinux 
    131 0x00000000      need_ip_conntrack       net/ipv4/netfilter/ip_conntrack 
    132 0x00000000      __brelse        vmlinux 
    133 0x00000000      scsi_device_set_state   vmlinux 
    134 0x00000000      mark_buffer_async_write vmlinux 
    135 0x00000000      xfrm_probe_algs vmlinux 
    136 0x00000000      inet_sock_destruct      vmlinux 
    137 0x00000000      nf_reinject     vmlinux 
    138 0x00000000      ip_route_me_harder      vmlinux 
    139 0x00000000      print_msg       vmlinux 
    140 0x00000000      blk_unregister_region   vmlinux 
    141 0x00000000      unregister_nls  vmlinux 
    142 0x00000000      __serio_register_port   vmlinux 
    143 0x00000000      add_mouse_randomness    vmlinux 
    144 0x00000000      malloc_sizes    vmlinux 
    145 0x00000000      ip_ct_refresh   net/ipv4/netfilter/ip_conntrack 
    146 0x00000000      radix_tree_gang_lookup  vmlinux 
    147 0x00000000      register_nls    vmlinux 
    148 0x00000000      probe_irq_on    vmlinux 
    149 0x00000000      xfrm_state_lookup       vmlinux 
    150 0x00000000      tcp_parse_options       vmlinux 
    151 0x00000000      elv_remove_request      vmlinux 
    152 0x00000000      module_refcount vmlinux 
    153 0x00000000      console_unblank vmlinux 
    154 0x00000000      SELECT_DRIVE    vmlinux 
    155 0x00000000      pci_enable_device_bars  vmlinux 
    156 0x00000000      dq_list_lock    vmlinux 
    157 0x00000000      xfrm_state_put_afinfo   vmlinux 
    158 0x00000000      ___pskb_trim    vmlinux 
    159 0x00000000      strsep  vmlinux 
    160 0x00000000      iomem_resource  vmlinux 
    161 0x00000000      __get_user_4    vmlinux 
    162 0x00000000      vfs_create      vmlinux 
    163 0x00000000      send_sigqueue   vmlinux 
    164 0x00000000      ide_driveid_update      vmlinux 
    165 0x00000000      sb_min_blocksize        vmlinux 
    166 0x00000000      scsi_device_types       vmlinux 
    167 0x00000000      register_module_notifier        vmlinux 
    168 0x00000000      __sysrq_put_key_op      vmlinux 
    169 0x00000000      __sysrq_get_key_op      vmlinux 
    170 0x00000000      unregister_sysctl_table vmlinux 
    171 0x00000000      del_gendisk     vmlinux 
    172 0x00000000      dcache_lock     vmlinux 
    173 0x00000000      block_write_full_page   vmlinux 
    174 0x00000000      xfrm_register_type      vmlinux 
    175 0x00000000      __skb_linearize vmlinux 
    176 0x00000000      ide_add_setting vmlinux 
    177 0x00000000      sock_no_setsockopt      vmlinux 
    178 0x00000000      sock_no_getsockopt      vmlinux 
    179 0x00000000      __blockdev_direct_IO    vmlinux 
    180 0x00000000      ip_ct_find_proto        net/ipv4/netfilter/ip_conntrack 
    181 0x00000000      km_new_mapping  vmlinux 
    182 0x00000000      generic_block_bmap      vmlinux 
    183 0x00000000      __symbol_get    vmlinux 
    184 0x00000000      kmem_cache_free vmlinux 
    185 0x00000000      lookup_hash     vmlinux 
    186 0x00000000      __request_region        vmlinux 
    187 0x00000000      prepare_to_wait vmlinux 
    188 0x00000000      bdev_read_only  vmlinux 
    189 0x00000000      sock_wfree      vmlinux 
    190 0x00000000      test_set_page_writeback vmlinux 
    191 0x00000000      inet_family_ops vmlinux 
    192 0x00000000      qdisc_destroy   vmlinux 
    193 0x00000000      dquot_commit    vmlinux 
    194 0x00000000      files_stat      vmlinux 
    195 0x00000000      truncate_inode_pages    vmlinux 
    196 0x00000000      input_flush_device      vmlinux 
    197 0x00000000      num_physpages   vmlinux 
    198 0x00000000      class_device_register   vmlinux 
    199 0x00000000      sysfs_create_file       vmlinux 
    200 0x00000000      seq_lseek       vmlinux 
    201 0x00000000      strpbrk vmlinux 
    202 0x00000000      cdrom_get_last_written  vmlinux 
    203 0x00000000      xfrm_parse_spi  vmlinux 
    204 0x00000000      recal_intr      vmlinux 
    205 0x00000000      set_disk_ro     vmlinux 
    206 0x00000000      journal_invalidatepage  vmlinux 
    207 0x00000000      do_softirq      vmlinux 
    208 0x00000000      abi_traceflg    vmlinux 
    209 0x00000000      xfrm_aalg_get_byid      vmlinux 
    210 0x00000000      tcp_create_openreq_child        vmlinux 
    211 0x00000000      qdisc_tree_lock vmlinux 
    212 0x00000000      skb_queue_head  vmlinux 
    213 0x00000000      sk_reset_timer  vmlinux 
    214 0x00000000      scsi_io_completion      vmlinux 
    215 0x00000000      mii_ethtool_sset        vmlinux 
    216 0x00000000      mii_ethtool_gset        vmlinux 
    217 0x00000000      release_sock    vmlinux 
    218 0x00000000      class_remove_file       vmlinux 
    219 0x00000000      drive_info      vmlinux 
    220 0x00000000      sync_inode      vmlinux 
    221 0x00000000      unmap_underlying_metadata       vmlinux 
    222 0x00000000      input_register_device   vmlinux 
    223 0x00000000      __invalidate_device     vmlinux 
    224 0x00000000      sysctl_tcp_low_latency  vmlinux 
    225 0x00000000      blk_queue_free_tags     vmlinux 
    226 0x00000000      blk_max_low_pfn vmlinux 
    227 0x00000000      simple_sync_file        vmlinux 
    228 0x00000000      notifier_chain_unregister       vmlinux 
    229 0x00000000      register_sysctl_table   vmlinux 
    230 0x00000000      csum_partial_copy_generic       vmlinux 
    231 0x00000000      request_irq     vmlinux 
    232 0x00000000      tty_flip_buffer_push    vmlinux 
    233 0x00000000      cap_task_reparent_to_init       vmlinux 
    234 0x00000000      msleep  vmlinux 
    235 0x00000000      ip_conntrack_expect_put net/ipv4/netfilter/ip_conntrack 
    236 0x00000000      unregister_netdev       vmlinux 
    237 0x00000000      __bforget       vmlinux 
    238 0x00000000      sock_no_listen  vmlinux 
    239 0x00000000      task_out_intr   vmlinux 
    240 0x00000000      get_random_bytes        vmlinux 
    241 0x00000000      probe_irq_off   vmlinux 
    242 0x00000000      sock_no_poll    vmlinux 
    243 0x00000000      kmem_find_general_cachep        vmlinux 
    244 0x00000000      vlan_ioctl_set  vmlinux 
    245 0x00000000      iov_shorten     vmlinux 
    246 0x00000000      cap_inode_setxattr      vmlinux 
    247 0x00000000      register_quota_format   vmlinux 
    248 0x00000000      remove_arg_zero vmlinux 
    249 0x00000000      nvram_check_checksum    drivers/char/nvram 
    250 0x00000000      device_bind_driver      vmlinux 
    251 0x00000000      mb_cache_entry_alloc    vmlinux 
    252 0x00000000      put_cmsg        vmlinux 
    253 0x00000000      skb_free_datagram       vmlinux 
    254 0x00000000      filp_close      vmlinux 
    255 0x00000000      tty_std_termios vmlinux 
    256 0x00000000      zlib_deflateParams      lib/zlib_deflate/zlib_deflate 
    257 0x00000000      arpt_find_target_lock   net/ipv4/netfilter/arp_tables 
    258 0x00000000      ether_setup     vmlinux 
    259 0x00000000      elv_requeue_request     vmlinux 
    260 0x00000000      device_create_file      vmlinux 
    261 0x00000000      __break_lease   vmlinux 
    262 0x00000000      param_set_bool  vmlinux 
    263 0x00000000      force_sig       vmlinux 
    264 0x00000000      d_path  vmlinux 
    265 0x00000000      fsync_buffers_list      vmlinux 
    266 0x00000000      system_bus_clock        vmlinux 
    267 0x00000000      ide_pci_setup_ports     vmlinux 
    268 0x00000000      igrab   vmlinux 
    269 0x00000000      per_cpu__softnet_data   vmlinux 
    270 0x00000000      sock_recvmsg    vmlinux 
    271 0x00000000      system_utsname  vmlinux 
    272 0x00000000      linkwatch_fire_event    vmlinux 
    273 0x00000000      page_follow_link        vmlinux 
    274 0x00000000      __ide_dma_begin vmlinux 
    275 0x00000000      pci_dac_set_dma_mask    vmlinux 
    276 0x00000000      pci_bus_read_config_word        vmlinux 
    277 0x00000000      skb_append      vmlinux 
    278 0x00000000      bitmap_shift_left       vmlinux 
    279 0x00000000      xfrm_policy_list        vmlinux 
    280 0x00000000      sget    vmlinux 
    281 0x00000000      memset  vmlinux 
    282 0x00000000      cdrom_media_changed     vmlinux 
    283 0x00000000      blk_queue_max_hw_segments       vmlinux 
    284 0x00000000      print_command   vmlinux 
    285 0x00000000      spi_attach_transport    drivers/scsi/scsi_transport_spi 
    286 0x00000000      xfrm_aalg_get_byidx     vmlinux 
    287 0x00000000      __dev_get_by_flags      vmlinux 
    288 0x00000000      unregister_cdrom        vmlinux 
    289 0x00000000      register_chrdev vmlinux 
    290 0x00000000      idr_get_new_above       vmlinux 
    291 0x00000000      cap_capable     vmlinux 
    292 0x00000000      __ide_do_rw_disk        vmlinux 
    293 0x00000000      ide_unregister_subdriver        vmlinux 
    294 0x00000000      __dev_get       vmlinux 
    295 0x00000000      misc_register   vmlinux 
    296 0x00000000      may_umount_tree vmlinux 
    297 0x00000000      block_invalidatepage    vmlinux 
    298 0x00000000      __release_sock  vmlinux 
    299 0x00000000      mtrr_add        vmlinux 
    300 0x00000000      ethtool_op_set_tso      vmlinux 
    301 0x00000000      pci_restore_state       vmlinux 
    302 0x00000000      do_generic_mapping_read vmlinux 
    303 0x00000000      pcibios_get_irq_routing_table   vmlinux 
    304 0x00000000      inode_set_bytes vmlinux 
    305 0x00000000      inode_sub_bytes vmlinux 
    306 0x00000000      arp_xmit        vmlinux 
    307 0x00000000      neigh_add       vmlinux 
    308 0x00000000      __dev_get_by_index      vmlinux 
    309 0x00000000      __dev_getfirstbyhwtype  vmlinux 
    310 0x00000000      __create_workqueue      vmlinux 
    311 0x00000000      securebits      vmlinux 
    312 0x00000000      pci_proc_attach_device  vmlinux 
    313 0x00000000      sysctl_tcp_ecn  vmlinux 
    314 0x00000000      ethtool_op_set_tx_csum  vmlinux 
    315 0x00000000      generic_mii_ioctl       vmlinux 
    316 0x00000000      usb_bulk_msg    vmlinux 
    317 0x00000000      blk_attempt_remerge     vmlinux 
    318 0x00000000      xfrm_state_delete_tunnel        vmlinux 
    319 0x00000000      rb_prev vmlinux 
    320 0x00000000      nf_unregister_queue_handler     vmlinux 
    321 0x00000000      __const_udelay  vmlinux 
    322 0x00000000      handle_sysrq    vmlinux 
    323 0x00000000      utf8_mbstowcs   vmlinux 
    324 0x00000000      register_reboot_notifier        vmlinux 
    325 0x00000000      tcp_sockets_allocated   vmlinux 
    326 0x00000000      ipt_register_target     net/ipv4/netfilter/ip_tables 
    327 0x00000000      scsi_device_quiesce     vmlinux 
    328 0x00000000      con_copy_unimap vmlinux 
    329 0x00000000      block_commit_write      vmlinux 
    330 0x00000000      class_device_remove_file        vmlinux 
    331 0x00000000      crypto_hmac_init        vmlinux 
    332 0x00000000      journal_get_undo_access vmlinux 
    333 0x00000000      ip_irc_lock     net/ipv4/netfilter/ip_conntrack_irc 
    334 0x00000000      ide_spin_wait_hwgroup   vmlinux 
    335 0x00000000      dput    vmlinux 
    336 0x00000000      tcp_v4_remember_stamp   vmlinux 
    337 0x00000000      __usb_reset_device      vmlinux 
    338 0x00000000      nobh_commit_write       vmlinux 
    339 0x00000000      sk_free vmlinux 
    340 0x00000000      abi_defhandler_lcall7   vmlinux 
    341 0x00000000      __down_failed_trylock   vmlinux 
    342 0x00000000      pci_bus_max_busnr       vmlinux 
    343 0x00000000      kobject_init    vmlinux 
    344 0x00000000      flush_workqueue vmlinux 
    345 0x00000000      sleep_on        vmlinux 
    346 0x00000000      scsi_wait_req   vmlinux 
    347 0x00000000      proc_bus        vmlinux 
    348 0x00000000      simple_lookup   vmlinux 
    349 0x00000000      netlink_register_notifier       vmlinux 
    350 0x00000000      usb_match_id    vmlinux 
    351 0x00000000      xfrm_policy_insert      vmlinux 
    352 0x00000000      unlock_rename   vmlinux 
    353 0x00000000      __copy_from_user_ll     vmlinux 
    354 0x00000000      simple_rmdir    vmlinux 
    355 0x00000000      do_execve       vmlinux 
    356 0x00000000      scsi_block_requests     vmlinux 
    357 0x00000000      cdev_alloc      vmlinux 
    358 0x00000000      __getblk        vmlinux 
    359 0x00000000      xfrm_check_selectors    vmlinux 
    360 0x00000000      vfs_quota_sync  vmlinux 
    361 0x00000000      rtc_register    vmlinux 
    362 0x00000000      current_kernel_time     vmlinux 
    363 0x00000000      netlink_set_nonroot     vmlinux 
    364 0x00000000      usb_reset_device        vmlinux 
    365 0x00000000      locks_copy_lock vmlinux 
    366 0x00000000      sock_create_kern        vmlinux 
    367 0x00000000      zlib_deflateEnd lib/zlib_deflate/zlib_deflate 
    368 0x00000000      pci_unregister_driver   vmlinux 
    369 0x00000000      radix_tree_tagged       vmlinux 
    370 0x00000000      unload_nls      vmlinux 
    371 0x00000000      dquot_free_space        vmlinux 
    372 0x00000000      lock_sock       vmlinux 
    373 0x00000000      __scsi_device_lookup    vmlinux 
    374 0x00000000      ide_dma_enable  vmlinux 
    375 0x00000000      memcpy  vmlinux 
    376 0x00000000      spi_release_transport   drivers/scsi/scsi_transport_spi 
    377 0x00000000      __ide_dma_lostirq       vmlinux 
    378 0x00000000      iosched_cfq     vmlinux 
    379 0x00000000      bdevname        vmlinux 
    380 0x00000000      cdev_init       vmlinux 
    381 0x00000000      request_resource        vmlinux 
    382 0x00000000      inet_getname    vmlinux 
    383 0x00000000      default_hwif_iops       vmlinux 
    384 0x00000000      iput    vmlinux 
    385 0x00000000      sleep_on_timeout        vmlinux 
    386 0x00000000      create_proc_entry       vmlinux 
    387 0x00000000      proc_doulongvec_ms_jiffies_minmax       vmlinux 
    388 0x00000000      register_blkdev vmlinux 
    389 0x00000000      wake_up_buffer  vmlinux 
    390 0x00000000      neigh_event_ns  vmlinux 
    391 0x00000000      request_firmware_nowait drivers/base/firmware_class 
    392 0x00000000      kref_get        vmlinux 
    393 0x00000000      generic_commit_write    vmlinux 
    394 0x00000000      dst_destroy     vmlinux 
    395 0x00000000      journal_errno   vmlinux 
    396 0x00000000      needs_ip_conntrack_irc  net/ipv4/netfilter/ip_conntrack_irc 
    397 0x00000000      scsi_mode_sense vmlinux 
    398 0x00000000      journal_check_available_features        vmlinux 
    399 0x00000000      xfrm_dst_lookup vmlinux 
    400 0x00000000      xfrm4_tunnel_register   vmlinux 
    401 0x00000000      dst_alloc       vmlinux 
    402 0x00000000      single_release  vmlinux 
    403 0x00000000      get_user_pages  vmlinux 
    404 0x00000000      sysctl_optmem_max       vmlinux 
    405 0x00000000      __clear_user    vmlinux 
    406 0x00000000      netlink_detach  vmlinux 
    407 0x00000000      netlink_attach  vmlinux 
    408 0x00000000      __dev_remove_pack       vmlinux 
    409 0x00000000      posix_acl_to_xattr      vmlinux 
    410 0x00000000      ide_raw_taskfile        vmlinux 
    411 0x00000000      iget5_locked    vmlinux 
    412 0x00000000      mii_check_media vmlinux 
    413 0x00000000      dcache_dir_lseek        vmlinux 
    414 0x00000000      __nvram_set_checksum    drivers/char/nvram 
    415 0x00000000      km_waitq        vmlinux 
    416 0x00000000      pci_scan_bus_parented   vmlinux 
    417 0x00000000      d_splice_alias  vmlinux 
    418 0x00000000      do_sync_read    vmlinux 
    419 0x00000000      mem_map vmlinux 
    420 0x00000000      kobject_rename  vmlinux 
    421 0x00000000      blk_rq_prep_restart     vmlinux 
    422 0x00000000      do_special      vmlinux 
    423 0x00000000      zlib_inflateSync        vmlinux 
    424 0x00000000      netif_receive_skb       vmlinux 
    425 0x00000000      alloc_netdev    vmlinux 
    426 0x00000000      journal_update_format   vmlinux 
    427 0x00000000      recalc_sigpending       vmlinux 
    428 0x00000000      ip_dev_find     vmlinux 
    429 0x00000000      path_lookup     vmlinux 
    430 0x00000000      ide_raw_build_sglist    vmlinux 
    431 0x00000000      device_register vmlinux 
    432 0x00000000      dentry_open     vmlinux 
    433 0x00000000      sysctl_overcommit_memory        vmlinux 
    434 0x00000000      dma_free_coherent       vmlinux 
    435 0x00000000      skb_checksum_help       vmlinux 
    436 0x00000000      class_device_unregister vmlinux 
    437 0x00000000      tasklet_init    vmlinux 
    438 0x00000000      tcp_close_state vmlinux 
    439 0x00000000      sock_no_recvmsg vmlinux 
    440 0x00000000      set_transfer    vmlinux 
    441 0x00000000      SELECT_INTERRUPT        vmlinux 
    442 0x00000000      usb_hcd_pci_remove      vmlinux 
    443 0x00000000      rtc_control     vmlinux 
    444 0x00000000      complete        vmlinux 
    445 0x00000000      class_put       vmlinux 
    446 0x00000000      sigqueue_free   vmlinux 
    447 0x00000000      subsys_remove_file      vmlinux 
    448 0x00000000      high_memory     vmlinux 
    449 0x00000000      next_thread     vmlinux 
    450 0x00000000      destroy_proc_ide_interfaces     vmlinux 
    451 0x00000000      simple_link     vmlinux 
    452 0x00000000      sysdev_remove_file      vmlinux 
    453 0x00000000      journal_blocks_per_page vmlinux 
    454 0x00000000      mempool_create  vmlinux 
    455 0x00000000      send_sig_info   vmlinux 
    456 0x00000000      iounmap vmlinux 
    457 0x00000000      __neigh_event_send      vmlinux 
    458 0x00000000      unregister_netdevice    vmlinux 
    459 0x00000000      allow_signal    vmlinux 
    460 0x00000000      kill_anon_super vmlinux 
    461 0x00000000      xfrm4_rcv       vmlinux 
    462 0x00000000      blk_queue_hardsect_size vmlinux 
    463 0x00000000      inet_dgram_connect      vmlinux 
    464 0x00000000      end_that_request_first  vmlinux 
    465 0x00000000      driver_unregister       vmlinux 
    466 0x00000000      kobject_put     vmlinux 
    467 0x00000000      kobject_get     vmlinux 
    468 0x00000000      param_set_copystring    vmlinux 
    469 0x00000000      usb_reset_configuration vmlinux 
    470 0x00000000      dq_data_lock    vmlinux 
    471 0x00000000      d_validate      vmlinux 
    472 0x00000000      subsystem_init  vmlinux 
    473 0x00000000      fasync_helper   vmlinux 
    474 0x00000000      locks_mandatory_area    vmlinux 
    475 0x00000000      sock_alloc_send_pskb    vmlinux 
    476 0x00000000      inet_register_protosw   vmlinux 
    477 0x00000000      mempool_destroy vmlinux 
    478 0x00000000      scsi_ioctl      vmlinux 
    479 0x00000000      set_binfmt      vmlinux 
    480 0x00000000      cap_ptrace      vmlinux 
    481 0x00000000      slab_reclaim_pages      vmlinux 
    482 0x00000000      dlci_ioctl_set  vmlinux 
    483 0x00000000      scsi_report_device_reset        vmlinux 
    484 0x00000000      kobject_unregister      vmlinux 
    485 0x00000000      usb_submit_urb  vmlinux 
    486 0x00000000      page_symlink_inode_operations   vmlinux 
    487 0x00000000      vunmap  vmlinux 
    488 0x00000000      xfrm_policy_alloc       vmlinux 
    489 0x00000000      shrink_dcache_anon      vmlinux 
    490 0x00000000      set_page_dirty_lock     vmlinux 
    491 0x00000000      tcp_v4_conn_request     vmlinux 
    492 0x00000000      usb_get_descriptor      vmlinux 
    493 0x00000000      batch_entropy_store     vmlinux 
    494 0x00000000      tcp_v4_syn_recv_sock    vmlinux 
    495 0x00000000      usb_put_dev     vmlinux 
    496 0x00000000      kmem_cache_shrink       vmlinux 
    497 0x00000000      icmp_err_convert        vmlinux 
    498 0x00000000      ata_input_data  vmlinux 
    499 0x00000000      mii_check_link  vmlinux 
    500 0x00000000      tcp_hashinfo    vmlinux 
    501 0x00000000      scsi_unregister vmlinux 
    502 0x00000000      fd_install      vmlinux 
    503 0x00000000      __ide_dma_good_drive    vmlinux 
    504 0x00000000      __cond_resched  vmlinux 
    505 0x00000000      disable_irq     vmlinux 
    506 0x00000000      cdrom_get_media_event   vmlinux 
    507 0x00000000      scsi_host_alloc vmlinux 
    508 0x00000000      sysfs_remove_file       vmlinux 
    509 0x00000000      print_Scsi_Cmnd vmlinux 
    510 0x00000000      invalidate_partition    vmlinux 
    511 0x00000000      vfs_set_dqblk   vmlinux 
    512 0x00000000      vfs_get_dqblk   vmlinux 
    513 0x00000000      pci_get_subsys  vmlinux 
    514 0x00000000      do_brk  vmlinux 
    515 0x00000000      notify_parent   vmlinux 
    516 0x00000000      pci_proc_detach_bus     vmlinux 
    517 0x00000000      i8253_lock      vmlinux 
    518 0x00000000      secpath_dup     vmlinux 
    519 0x00000000      set_user_nice   vmlinux 
    520 0x00000000      tcp_openreq_cachep      vmlinux 
    521 0x00000000      sock_setsockopt vmlinux 
    522 0x00000000      unlock_buffer   vmlinux 
    523 0x00000000      find_task_by_pid        vmlinux 
    524 0x00000000      notifier_chain_register vmlinux 
    525 0x00000000      scsi_sleep      vmlinux 
    526 0x00000000      ip_conntrack_change_expect      net/ipv4/netfilter/ip_conntrack 
    527 0x00000000      skb_copy_expand vmlinux 
    528 0x00000000      posix_acl_permission    vmlinux 
    529 0x00000000      d_lookup        vmlinux 
    530 0x00000000      cap_task_post_setuid    vmlinux 
    531 0x00000000      sys_read        vmlinux 
    532 0x00000000      serio_unregister_port   vmlinux 
    533 0x00000000      drive_cmd_intr  vmlinux 
    534 0x00000000      zone_table      vmlinux 
    535 0x00000000      ioremap_nocache vmlinux 
    536 0x00000000      scsi_remove_host        vmlinux 
    537 0x00000000      radix_tree_gang_lookup_tag      vmlinux 
    538 0x00000000      posix_acl_masq_nfs_mode vmlinux 
    539 0x00000000      taskfile_output_data    vmlinux 
    540 0x00000000      sync_dirty_buffer       vmlinux 
    541 0x00000000      pci_remove_bus_device   vmlinux 
    542 0x00000000      kill_proc_info  vmlinux 
    543 0x00000000      usb_alloc_urb   vmlinux 
    544 0x00000000      add_disk_randomness     vmlinux 
    545 0x00000000      inode_init_once vmlinux 
    546 0x00000000      scsi_cmd_ioctl  vmlinux 
    547 0x00000000      ip_ct_find_helper       net/ipv4/netfilter/ip_conntrack 
    548 0x00000000      neigh_table_init        vmlinux 
    549 0x00000000      blk_insert_request      vmlinux 
    550 0x00000000      blk_stop_queue  vmlinux 
    551 0x00000000      blk_queue_segment_boundary      vmlinux 
    552 0x00000000      sysfs_create_link       vmlinux 
    553 0x00000000      tcp_reset_keepalive_timer       vmlinux 
    554 0x00000000      ide_init_drive_cmd      vmlinux 
    555 0x00000000      ip_conntrack_protocol_register  net/ipv4/netfilter/ip_conntrack 
    556 0x00000000      ethtool_op_set_sg       vmlinux 
    557 0x00000000      journal_revoke  vmlinux 
    558 0x00000000      seq_release     vmlinux 
    559 0x00000000      hotplug_path    vmlinux 
    560 0x00000000      ide_task_ioctl  vmlinux 
    561 0x00000000      sysfs_create_bin_file   vmlinux 
    562 0x00000000      is_unsafe_smbus vmlinux 
    563 0x00000000      cpu_khz vmlinux 
    564 0x00000000      xfrm_state_unregister_afinfo    vmlinux 
    565 0x00000000      free_buffer_head        vmlinux 
    566 0x00000000      fget    vmlinux 
    567 0x00000000      send_group_sigqueue     vmlinux 
    568 0x00000000      ide_config_drive_speed  vmlinux 
    569 0x00000000      match_token     vmlinux 
    570 0x00000000      vmtruncate      vmlinux 
    571 0x00000000      ip_conntrack_untracked  net/ipv4/netfilter/ip_conntrack 
    572 0x00000000      posix_test_lock vmlinux 
    573 0x00000000      kill_block_super        vmlinux 
    574 0x00000000      flush_signals   vmlinux 
    575 0x00000000      mb_cache_entry_insert   vmlinux 
    576 0x00000000      blk_put_request vmlinux 
    577 0x00000000      cdrom_mode_select       vmlinux 
    578 0x00000000      __mntput        vmlinux 
    579 0x00000000      mapping_tagged  vmlinux 
    580 0x00000000      serio_interrupt vmlinux 
    581 0x00000000      put_disk        vmlinux 
    582 0x00000000      color_table     vmlinux 
    583 0x00000000      files_lock      vmlinux 
    584 0x00000000      vm_committed_space      vmlinux 
    585 0x00000000      usb_alloc_dev   vmlinux 
    586 0x00000000      proc_root_fs    vmlinux 
    587 0x00000000      bus_create_file vmlinux 
    588 0x00000000      console_conditional_schedule    vmlinux 
    589 0x00000000      abi_defhandler_libcso   vmlinux 
    590 0x00000000      pcibios_penalize_isa_irq        vmlinux 
    591 0x00000000      vc_cons_allocated       vmlinux 
    592 0x00000000      ide_unregister_driver   vmlinux 
    593 0x00000000      elevator_noop   vmlinux 
    594 0x00000000      rtc_unregister  vmlinux 
    595 0x00000000      rb_erase        vmlinux 
    596 0x00000000      __nvram_check_checksum  drivers/char/nvram 
    597 0x00000000      __netdev_watchdog_up    vmlinux 
    598 0x00000000      usb_check_bandwidth     vmlinux 
    599 0x00000000      set_blocksize   vmlinux 
    600 0x00000000      copy_from_user  vmlinux 
    601 0x00000000      blk_execute_rq  vmlinux 
    602 0x00000000      vsscanf vmlinux 
    603 0x00000000      panic   vmlinux 
    604 0x00000000      ide_hwifs       vmlinux 
    605 0x00000000      __vmalloc       vmlinux 
    606 0x00000000      __kmalloc       vmlinux 
    607 0x00000000      put_files_struct        vmlinux 
    608 0x00000000      dev_new_index   vmlinux 
    609 0x00000000      __ip_select_ident       vmlinux 
    610 0x00000000      journal_load    vmlinux 
    611 0x00000000      locks_init_lock vmlinux 
    612 0x00000000      memcmp  vmlinux 
    613 0x00000000      serio_reconnect vmlinux 
    614 0x00000000      ide_end_request vmlinux 
    615 0x00000000      vfs_readdir     vmlinux 
    616 0x00000000      zlib_inflate    vmlinux 
    617 0x00000000      vscnprintf      vmlinux 
    618 0x00000000      vfs_quota_on    vmlinux 
    619 0x00000000      simple_statfs   vmlinux 
    620 0x00000000      buffer_insert_list      vmlinux 
    621 0x00000000      kmem_cache_alloc_node   vmlinux 
    622 0x00000000      param_set_long  vmlinux 
    623 0x00000000      xfrm4_tunnel_deregister vmlinux 
    624 0x00000000      ip_mc_join_group        vmlinux 
    625 0x00000000      usb_string      vmlinux 
    626 0x00000000      journal_update_superblock       vmlinux 
    627 0x00000000      skb_clone_fraglist      vmlinux 
    628 0x00000000      cpu_sysdev_class        vmlinux 
    629 0x00000000      class_simple_set_hotplug        vmlinux 
    630 0x00000000      mb_cache_entry_dup      vmlinux 
    631 0x00000000      strlcpy vmlinux 
    632 0x00000000      acpi_disabled   vmlinux 
    633 0x00000000      ideprobe_init   vmlinux 
    634 0x00000000      driver_create_file      vmlinux 
    635 0x00000000      blk_requeue_request     vmlinux 
    636 0x00000000      xfrm_find_acq   vmlinux 
    637 0x00000000      scsi_scan_host  vmlinux 
    638 0x00000000      sys_open        vmlinux 
    639 0x00000000      ip_conntrack_helper_unregister  net/ipv4/netfilter/ip_conntrack 
    640 0x00000000      tcp_sendpage    vmlinux 
    641 0x00000000      allocate_resource       vmlinux 
    642 0x00000000      block_prepare_write     vmlinux 
    643 0x00000000      remove_suid     vmlinux 
    644 0x00000000      crypto_hmac_final       vmlinux 
    645 0x00000000      kill_pg vmlinux 
    646 0x00000000      vfs_rmdir       vmlinux 
    647 0x00000000      generic_shutdown_super  vmlinux 
    648 0x00000000      get_jiffies_64  vmlinux 
    649 0x00000000      scsi_track_queue_full   vmlinux 
    650 0x00000000      cap_bprm_set_security   vmlinux 
    651 0x00000000      init_buffer     vmlinux 
    652 0x00000000      ____request_resource    vmlinux 
    653 0x00000000      sock_no_getname vmlinux 
    654 0x00000000      vfs_link        vmlinux 
    655 0x00000000      tcp_send_synack vmlinux 
    656 0x00000000      usb_buffer_alloc        vmlinux 
    657 0x00000000      isa_dma_bridge_buggy    vmlinux 
    658 0x00000000      journal_flush   vmlinux 
    659 0x00000000      panic_notifier_list     vmlinux 
    660 0x00000000      ide_dump_atapi_status   vmlinux 
    661 0x00000000      d_delete        vmlinux 
    662 0x00000000      mod_timer       vmlinux 
    663 0x00000000      ip_conntrack_tuple_taken        net/ipv4/netfilter/ip_conntrack 
    664 0x00000000      idr_remove      vmlinux 
    665 0x00000000      param_get_invbool       vmlinux 
    666 0x00000000      tty_hangup      vmlinux 
    667 0x00000000      pci_disable_device      vmlinux 
    668 0x00000000      init_mm vmlinux 
    669 0x00000000      zlib_inflateSyncPoint   vmlinux 
    670 0x00000000      read_cache_page vmlinux 
    671 0x00000000      dquot_drop      vmlinux 
    672 0x00000000      __strncpy_from_user     vmlinux 
    673 0x00000000      xfrm_state_walk vmlinux 
    674 0x00000000      scsi_set_medium_removal vmlinux 
    675 0x00000000      __kill_fasync   vmlinux 
    676 0x00000000      sysfs_create_dir        vmlinux 
    677 0x00000000      generic_unplug_device   vmlinux 
    678 0x00000000      usb_init_urb    vmlinux 
    679 0x00000000      __get_user_2    vmlinux 
    680 0x00000000      tcp_accept      vmlinux 
    681 0x00000000      scsi_device_put vmlinux 
    682 0x00000000      scsi_device_get vmlinux 
    683 0x00000000      xfrm_policy_flush       vmlinux 
    684 0x00000000      __check_region  vmlinux 
    685 0x00000000      sysctl_ip_default_ttl   vmlinux 
    686 0x00000000      scsi_delete_timer       vmlinux 
    687 0x00000000      print_status    vmlinux 
    688 0x00000000      sock_sendmsg    vmlinux 
    689 0x00000000      class_register  vmlinux 
    690 0x00000000      vfs_quota_off   vmlinux 
    691 0x00000000      lease_get_mtime vmlinux 
    692 0x00000000      sb_set_blocksize        vmlinux 
    693 0x00000000      kernel_fpu_begin        vmlinux 
    694 0x00000000      ide_register_hw vmlinux 
    695 0x00000000      crypto_unregister_alg   vmlinux 
    696 0x00000000      exit_mm vmlinux 
    697 0x00000000      dump_fpu        vmlinux 
    698 0x00000000      get_empty_filp  vmlinux 
    699 0x00000000      filp_open       vmlinux 
    700 0x00000000      generic_file_aio_write  vmlinux 
    701 0x00000000      xfrm_calg_get_byname    vmlinux 
    702 0x00000000      get_disk        vmlinux 
    703 0x00000000      __free_pages    vmlinux 
    704 0x00000000      inet_bind       vmlinux 
    705 0x00000000      pci_assign_resource     vmlinux 
    706 0x00000000      raise_softirq   vmlinux 
    707 0x00000000      xfrm_user_policy        vmlinux 
    708 0x00000000      input_grab_device       vmlinux 
    709 0x00000000      journal_try_to_free_buffers     vmlinux 
    710 0x00000000      xfrm_count_auth_supported       vmlinux 
    711 0x00000000      netlink_broadcast       vmlinux 
    712 0x00000000      shmem_file_setup        vmlinux 
    713 0x00000000      in_group_p      vmlinux 
    714 0x00000000      udp_sendmsg     vmlinux 
    715 0x00000000      ide_unregister  vmlinux 
    716 0x00000000      crypto_hmac_update      vmlinux 
    717 0x00000000      nvram_read_byte drivers/char/nvram 
    718 0x00000000      sk_wait_data    vmlinux 
    719 0x00000000      sock_alloc_inode        vmlinux 
    720 0x00000000      pci_enable_wake vmlinux 
    721 0x00000000      highmem_start_page      vmlinux 
    722 0x00000000      unshare_files   vmlinux 
    723 0x00000000      blk_phys_contig_segment vmlinux 
    724 0x00000000      end_buffer_read_sync    vmlinux 
    725 0x00000000      inter_module_get_request        vmlinux 
    726 0x00000000      usb_calc_bus_time       vmlinux 
    727 0x00000000      param_get_ushort        vmlinux 
    728 0x00000000      usb_find_interface      vmlinux 
    729 0x00000000      pci_add_new_bus vmlinux 
    730 0x00000000      monotonic_clock vmlinux 
    731 0x00000000      xfrm_state_check_expire vmlinux 
    732 0x00000000      netdev_boot_setup_check vmlinux 
    733 0x00000000      close_private_file      vmlinux 
    734 0x00000000      register_gifconf        vmlinux 
    735 0x00000000      mempool_alloc   vmlinux 
    736 0x00000000      pci_max_busnr   vmlinux 
    737 0x00000000      inet_getsockopt vmlinux 
    738 0x00000000      proc_dointvec_minmax    vmlinux 
    739 0x00000000      ide_setup_pci_device    vmlinux 
    740 0x00000000      daemonize       vmlinux 
    741 0x00000000      zlib_deflateCopy        lib/zlib_deflate/zlib_deflate 
    742 0x00000000      blk_queue_make_request  vmlinux 
    743 0x00000000      class_simple_device_add vmlinux 
    744 0x00000000      put_driver      vmlinux 
    745 0x00000000      inter_module_register   vmlinux 
    746 0x00000000      vfs_getattr     vmlinux 
    747 0x00000000      tcp_inherit_port        vmlinux 
    748 0x00000000      inet_del_protocol       vmlinux 
    749 0x00000000      neigh_update    vmlinux 
    750 0x00000000      nobh_truncate_page      vmlinux 
    751 0x00000000      skb_ip_make_writable    vmlinux 
    752 0x00000000      end_that_request_chunk  vmlinux 
    753 0x00000000      icmp_send       vmlinux 
    754 0x00000000      rtattr_parse    vmlinux 
    755 0x00000000      xfrm_state_update       vmlinux 
    756 0x00000000      usb_deregister_dev      vmlinux 
    757 0x00000000      journal_recover vmlinux 
    758 0x00000000      dev_open        vmlinux 
    759 0x00000000      ilookup vmlinux 
    760 0x00000000      free_pages      vmlinux 
    761 0x00000000      unlock_new_inode        vmlinux 
    762 0x00000000      sigqueue_alloc  vmlinux 
    763 0x00000000      sock_unregister vmlinux 
    764 0x00000000      scsi_ioctl_send_command vmlinux 
    765 0x00000000      kset_register   vmlinux 
    766 0x00000000      kobject_hotplug vmlinux 
    767 0x00000000      fput    vmlinux 
    768 0x00000000      __down_failed_interruptible     vmlinux 
    769 0x00000000      eighty_ninty_three      vmlinux 
    770 0x00000000      journal_set_features    vmlinux 
    771 0x00000000      is_console_locked       vmlinux 
    772 0x00000000      get_cmos_time   vmlinux 
    773 0x00000000      task_mulin_intr vmlinux 
    774 0x00000000      add_disk        vmlinux 
    775 0x00000000      sysctl_max_map_count    vmlinux 
    776 0x00000000      inet_shutdown   vmlinux 
    777 0x00000000      ip_conntrack_htable_size        net/ipv4/netfilter/ip_conntrack 
    778 0x00000000      ide_register_subdriver  vmlinux 
    779 0x00000000      strnicmp        vmlinux 
    780 0x00000000      vmalloc_to_page vmlinux 
    781 0x00000000      ide_pci_register_driver vmlinux 
    782 0x00000000      bus_add_device  vmlinux 
    783 0x00000000      journal_start_commit    vmlinux 
    784 0x00000000      sock_release    vmlinux 
    785 0x00000000      usb_hcd_giveback_urb    vmlinux 
    786 0x00000000      pci_find_device vmlinux 
    787 0x00000000      add_wait_queue_exclusive        vmlinux 
    788 0x00000000      usb_claim_bandwidth     vmlinux 
    789 0x00000000      utf8_wcstombs   vmlinux 
    790 0x00000000      kill_sl vmlinux 
    791 0x00000000      netdev_set_master       vmlinux 
    792 0x00000000      idr_init        vmlinux 
    793 0x00000000      mpage_readpage  vmlinux 
    794 0x00000000      vmalloc vmlinux 
    795 0x00000000      pci_request_region      vmlinux 
    796 0x00000000      scsi_adjust_queue_depth vmlinux 
    797 0x00000000      mb_cache_entry_find_first       vmlinux 
    798 0x00000000      cap_capset_check        vmlinux 
    799 0x00000000      lock_rename     vmlinux 
    800 0x00000000      bio_split       vmlinux 
    801 0x00000000      ipt_unregister_target   net/ipv4/netfilter/ip_tables 
    802 0x00000000      tcp_check_req   vmlinux 
    803 0x00000000      netlink_unicast vmlinux 
    804 0x00000000      neigh_sysctl_register   vmlinux 
    805 0x00000000      crypto_hmac     vmlinux 
    806 0x00000000      sys_close       vmlinux 
    807 0x00000000      seq_read        vmlinux 
    808 0x00000000      is_bad_inode    vmlinux 
    809 0x00000000      param_get_int   vmlinux 
    810 0x00000000      start_tty       vmlinux 
    811 0x00000000      pci_remove_device_safe  vmlinux 
    812 0x00000000      dm_table_get_mode       vmlinux 
    813 0x00000000      notify_change   vmlinux 
    814 0x00000000      follow_up       vmlinux 
    815 0x00000000      param_get_short vmlinux 
    816 0x00000000      skb_copy_and_csum_datagram_iovec        vmlinux 
    817 0x00000000      sock_no_ioctl   vmlinux 
    818 0x00000000      close_bdev_excl vmlinux 
    819 0x00000000      dma_alloc_coherent      vmlinux 
    820 0x00000000      scsi_remove_device      vmlinux 
    821 0x00000000      simple_empty    vmlinux 
    822 0x00000000      usb_hcd_irq     vmlinux 
    823 0x00000000      usb_hub_tt_clear_buffer vmlinux 
    824 0x00000000      blk_queue_merge_bvec    vmlinux 
    825 0x00000000      pci_find_class  vmlinux 
    826 0x00000000      journal_lock_updates    vmlinux 
    827 0x00000000      ip_ct_attach    vmlinux 
    828 0x00000000      scsi_free_host_dev      vmlinux 
    829 0x00000000      driver_register vmlinux 
    830 0x00000000      rwsem_down_write_failed vmlinux 
    831 0x00000000      find_lock_page  vmlinux 
    832 0x00000000      param_array_get vmlinux 
    833 0x00000000      param_array_set vmlinux 
    834 0x00000000      remove_wait_queue       vmlinux 
    835 0x00000000      kset_find_obj   vmlinux 
    836 0x00000000      usb_buffer_free vmlinux 
    837 0x00000000      tcp_sendmsg     vmlinux 
    838 0x00000000      ide_fops        vmlinux 
    839 0x00000000      sock_map_fd     vmlinux 
    840 0x00000000      xfrm_replay_advance     vmlinux 
    841 0x00000000      default_hwif_mmiops     vmlinux 
    842 0x00000000      d_prune_aliases vmlinux 
    843 0x00000000      memcpy_fromiovecend     vmlinux 
    844 0x00000000      rtc_lock        vmlinux 
    845 0x00000000      ilookup5        vmlinux 
    846 0x00000000      journal_release_buffer  vmlinux 
    847 0x00000000      per_cpu__kstat  vmlinux 
    848 0x00000000      find_trylock_page       vmlinux 
    849 0x00000000      ip_conntrack_expect_find_get    net/ipv4/netfilter/ip_conntrack 
    850 0x00000000      simple_fill_super       vmlinux 
    851 0x00000000      have_submounts  vmlinux 
    852 0x00000000      __user_walk     vmlinux 
    853 0x00000000      __tasklet_schedule      vmlinux 
    854 0x00000000      bio_add_page    vmlinux 
    855 0x00000000      kernel_thread   vmlinux 
    856 0x00000000      ipt_unregister_table    net/ipv4/netfilter/ip_tables 
    857 0x00000000      zlib_inflateEnd vmlinux 
    858 0x00000000      open_by_devnum  vmlinux 
    859 0x00000000      contig_page_data        vmlinux 
    860 0x00000000      console_blanked vmlinux 
    861 0x00000000      MCA_bus vmlinux 
    862 0x00000000      bitmap_empty    vmlinux 
    863 0x00000000      ext2_xattr_register     vmlinux 
    864 0x00000000      mempool_free_slab       vmlinux 
    865 0x00000000      pci_scan_slot   vmlinux 
    866 0x00000000      mpage_readpages vmlinux 
    867 0x00000000      pci_request_regions     vmlinux 
    868 0x00000000      __wait_on_buffer        vmlinux 
    869 0x00000000      nr_swap_pages   vmlinux 
    870 0x00000000      sock_create     vmlinux 
    871 0x00000000      dm_table_event  vmlinux 
    872 0x00000000      kill_litter_super       vmlinux 
    873 0x00000000      usb_free_urb    vmlinux 
    874 0x00000000      skb_copy_bits   vmlinux 
    875 0x00000000      cdrom_number_of_slots   vmlinux 
    876 0x00000000      sysfs_remove_link       vmlinux 
    877 0x00000000      tcp_make_synack vmlinux 
    878 0x00000000      proc_root       vmlinux 
    879 0x00000000      cdev_put        vmlinux 
    880 0x00000000      find_get_page   vmlinux 
    881 0x00000000      invalidate_inodes       vmlinux 
    882 0x00000000      dev_mc_delete   vmlinux 
    883 0x00000000      get_driver      vmlinux 
    884 0x00000000      request_dma     vmlinux 
    885 0x00000000      ip_mc_inc_group vmlinux 
    886 0x00000000      sysfs_remove_bin_file   vmlinux 
    887 0x00000000      snprintf        vmlinux 
    888 0x00000000      __bread vmlinux 
    889 0x00000000      tcp_tw_deschedule       vmlinux 
    890 0x00000000      memcpy_toiovec  vmlinux 
    891 0x00000000      in_aton vmlinux 
    892 0x00000000      neigh_resolve_output    vmlinux 
    893 0x00000000      journal_init_dev        vmlinux 
    894 0x00000000      posix_unblock_lock      vmlinux 
    895 0x00000000      invert_tuplepr  net/ipv4/netfilter/ip_conntrack 
    896 0x00000000      tcp_close       vmlinux 
    897 0x00000000      __scm_send      vmlinux 
    898 0x00000000      usb_register_dev        vmlinux 
    899 0x00000000      blk_queue_activity_fn   vmlinux 
    900 0x00000000      try_to_free_buffers     vmlinux 
    901 0x00000000      ide_wait_cmd_task       vmlinux 
    902 0x00000000      dquot_free_inode        vmlinux 
    903 0x00000000      make_8023_client        vmlinux 
    904 0x00000000      register_cdrom  vmlinux 
    905 0x00000000      scsi_unblock_requests   vmlinux 
    906 0x00000000      bd_claim        vmlinux 
    907 0x00000000      call_rcu        vmlinux 
    908 0x00000000      mb_cache_entry_takeout  vmlinux 
    909 0x00000000      pskb_put        vmlinux 
    910 0x00000000      journal_abort   vmlinux 
    911 0x00000000      seq_open        vmlinux 
    912 0x00000000      pci_bus_type    vmlinux 
    913 0x00000000      pci_enable_bridges      vmlinux 
    914 0x00000000      simple_readpage vmlinux 
    915 0x00000000      __lock_page     vmlinux 
    916 0x00000000      sysctl_max_syn_backlog  vmlinux 
    917 0x00000000      usb_altnum_to_altsetting        vmlinux 
    918 0x00000000      follow_down     vmlinux 
    919 0x00000000      ide_error       vmlinux 
    920 0x00000000      probe_irq_mask  vmlinux 
    921 0x00000000      redraw_screen   vmlinux 
    922 0x00000000      tty_unregister_driver   vmlinux 
    923 0x00000000      get_write_access        vmlinux 
    924 0x00000000      ip_conntrack_expect_related     net/ipv4/netfilter/ip_conntrack 
    925 0x00000000      force_sig_info  vmlinux 
    926 0x00000000      devinet_ioctl   vmlinux 
    927 0x00000000      class_simple_device_remove      vmlinux 
    928 0x00000000      class_device_put        vmlinux 
    929 0x00000000      class_device_get        vmlinux 
    930 0x00000000      del_timer       vmlinux 
    931 0x00000000      usb_get_current_frame_number    vmlinux 
    932 0x00000000      scsi_command_size       vmlinux 
    933 0x00000000      tcp_v4_send_check       vmlinux 
    934 0x00000000      dev_close       vmlinux 
    935 0x00000000      __mark_inode_dirty      vmlinux 
    936 0x00000000      noop_qdisc      vmlinux 
    937 0x00000000      sock_alloc_send_skb     vmlinux 
    938 0x00000000      serio_unregister_device vmlinux 
    939 0x00000000      kernel_scsi_ioctl       vmlinux 
    940 0x00000000      unregister_filesystem   vmlinux 
    941 0x00000000      adjust_resource vmlinux 
    942 0x00000000      xfrm_state_insert       vmlinux 
    943 0x00000000      bitmap_or       vmlinux 
    944 0x00000000      crypto_alg_available    vmlinux 
    945 0x00000000      xfrm_policy_kill        vmlinux 
    946 0x00000000      __ide_dma_verbose       vmlinux 
    947 0x00000000      nobh_prepare_write      vmlinux 
    948 0x00000000      blk_rq_unmap_user       vmlinux 
    949 0x00000000      blk_plug_device vmlinux 
    950 0x00000000      pci_bus_add_devices     vmlinux 
    951 0x00000000      acquire_console_sem     vmlinux 
    952 0x00000000      __printk_ratelimit      vmlinux 
    953 0x00000000      usb_alloc_bus   vmlinux 
    954 0x00000000      nr_mce_banks    vmlinux 
    955 0x00000000      ip_conntrack_expect_alloc       net/ipv4/netfilter/ip_conntrack 
    956 0x00000000      paste_selection vmlinux 
    957 0x00000000      journal_get_create_access       vmlinux 
    958 0x00000000      open_private_file       vmlinux 
    959 0x00000000      usb_control_msg vmlinux 
    960 0x00000000      scsi_do_req     vmlinux 
    961 0x00000000      __ide_set_handler       vmlinux 
    962 0x00000000      sock_rmalloc    vmlinux 
    963 0x00000000      pci_do_scan_bus vmlinux 
    964 0x00000000      __xfrm_state_destroy    vmlinux 
    965 0x00000000      panic_timeout   vmlinux 
    966 0x00000000      do_schedule     vmlinux 
    967 0x00000000      mtrr_del        vmlinux 
    968 0x00000000      generic_file_direct_IO  vmlinux 
    969 0x00000000      dev_set_allmulti        vmlinux 
    970 0x00000000      ip_conntrack_expect_list        net/ipv4/netfilter/ip_conntrack 
    971 0x00000000      kobject_set_name        vmlinux 
    972 0x00000000      icmp_statistics vmlinux 
    973 0x00000000      set_device_ro   vmlinux 
    974 0x00000000      ide_lock        vmlinux 
    975 0x00000000      pci_clear_mwi   vmlinux 
    976 0x00000000      pcibios_set_irq_routing vmlinux 
    977 0x00000000      tasklet_kill    vmlinux 
    978 0x00000000      bio_endio       vmlinux 
    979 0x00000000      reserve_lapic_nmi       vmlinux 
    980 0x00000000      sk_stop_timer   vmlinux 
    981 0x00000000      locks_remove_posix      vmlinux 
    982 0x00000000      process_that_request_first      vmlinux 
    983 0x00000000      radix_tree_delete       vmlinux 
    984 0x00000000      zlib_deflateInit_       lib/zlib_deflate/zlib_deflate 
    985 0x00000000      open_softirq    vmlinux 
    986 0x00000000      names_cachep    vmlinux 
    987 0x00000000      xfrm_policy_register_afinfo     vmlinux 
    988 0x00000000      xrlim_allow     vmlinux 
    989 0x00000000      crypto_register_alg     vmlinux 
    990 0x00000000      single_open     vmlinux 
    991 0x00000000      put_filp        vmlinux 
    992 0x00000000      kthread_stop    vmlinux 
    993 0x00000000      dm_register_target      vmlinux 
    994 0x00000000      sysfs_update_file       vmlinux 
    995 0x00000000      inter_module_unregister vmlinux 
    996 0x00000000      ip_conntrack_protocol_unregister        net/ipv4/netfilter/ip_conntrack 
    997 0x00000000      ext2_xattr_set  vmlinux 
    998 0x00000000      groups_free     vmlinux 
    999 0x00000000      unregister_reboot_notifier      vmlinux 
    1000 0x00000000      dev_mc_upload   vmlinux 
    1001 0x00000000      sysfs_remove_dir        vmlinux 
    1002 0x00000000      copy_fs_struct  vmlinux 
    1003 0x00000000      generic_ide_ioctl       vmlinux 
    1004 0x00000000      neigh_parms_alloc       vmlinux 
    1005 0x00000000      usb_disabled    vmlinux 
    1006 0x00000000      subsystem_register      vmlinux 
    1007 0x00000000      interruptible_sleep_on  vmlinux 
    1008 0x00000000      usb_buffer_map_sg       vmlinux 
    1009 0x00000000      blk_queue_invalidate_tags       vmlinux 
    1010 0x00000000      io_schedule     vmlinux 
    1011 0x00000000      bitmap_and      vmlinux 
    1012 0x00000000      __pagevec_lru_add       vmlinux 
    1013 0x00000000      netlink_set_err vmlinux 
    1014 0x00000000      inet_listen     vmlinux 
    1015 0x00000000      skb_queue_purge vmlinux 
    1016 0x00000000      inode_update_time       vmlinux 
    1017 0x00000000      get_unmapped_area       vmlinux 
    1018 0x00000000      dmi_broken      vmlinux 
    1019 0x00000000      blk_rq_map_user vmlinux 
    1020 0x00000000      platform_bus_type       vmlinux 
    1021 0x00000000      subsystem_unregister    vmlinux 
    1022 0x00000000      d_find_alias    vmlinux 
    1023 0x00000000      yield   vmlinux 
    1024 0x00000000      print_sense     vmlinux 
    1025 0x00000000      firmware_class  drivers/base/firmware_class 
    1026 0x00000000      d_invalidate    vmlinux 
    1027 0x00000000      vmalloc_32      vmlinux 
    1028 0x00000000      input_register_handler  vmlinux 
    1029 0x00000000      dma_pool_free   vmlinux 
    1030 0x00000000      ipv4_config     vmlinux 
    1031 0x00000000      nr_pagecache    vmlinux 
    1032 0x00000000      __rta_fill      vmlinux 
    1033 0x00000000      __dst_free      vmlinux 
    1034 0x00000000      udp_hash_lock   vmlinux 
    1035 0x00000000      ide_stall_queue vmlinux 
    1036 0x00000000      sock_kfree_s    vmlinux 
    1037 0x00000000      crc32_le        vmlinux 
    1038 0x00000000      ethtool_op_get_link     vmlinux 
    1039 0x00000000      input_unregister_device vmlinux 
    1040 0x00000000      cap_bprm_secureexec     vmlinux 
    1041 0x00000000      read_cache_pages        vmlinux 
    1042 0x00000000      ip_generic_getfrag      vmlinux 
    1043 0x00000000      call_netdevice_notifiers        vmlinux 
    1044 0x00000000      mii_nway_restart        vmlinux 
    1045 0x00000000      thaw_bdev       vmlinux 
    1046 0x00000000      generic_file_write      vmlinux 
    1047 0x00000000      sk_run_filter   vmlinux 
    1048 0x00000000      bitmap_parse    vmlinux 
    1049 0x00000000      ipt_register_table      net/ipv4/netfilter/ip_tables 
    1050 0x00000000      neigh_sysctl_unregister vmlinux 
    1051 0x00000000      __scm_destroy   vmlinux 
    1052 0x00000000      start_request   vmlinux 
    1053 0x00000000      d_move  vmlinux 
    1054 0x00000000      serio_register_port_delayed     vmlinux 
    1055 0x00000000      sock_wmalloc    vmlinux 
    1056 0x00000000      strstr  vmlinux 
    1057 0x00000000      pm_idle vmlinux 
    1058 0x00000000      disable_hlt     vmlinux 
    1059 0x00000000      pskb_expand_head        vmlinux 
    1060 0x00000000      ide_toggle_bounce       vmlinux 
    1061 0x00000000      pci_match_device        vmlinux 
    1062 0x00000000      tcp_delete_keepalive_timer      vmlinux 
    1063 0x00000000      take_over_console       vmlinux 
    1064 0x00000000      proc_bus_pci_dir        vmlinux 
    1065 0x00000000      lock_may_write  vmlinux 
    1066 0x00000000      nmi_watchdog    vmlinux 
    1067 0x00000000      __ip_ct_find_proto      net/ipv4/netfilter/ip_conntrack 
    1068 0x00000000      sock_wake_async vmlinux 
    1069 0x00000000      neigh_dump_info vmlinux 
    1070 0x00000000      __set_page_dirty_buffers        vmlinux 
    1071 0x00000000      synchronize_kernel      vmlinux 
    1072 0x00000000      dev_queue_xmit_nit      vmlinux 
    1073 0x00000000      scnprintf       vmlinux 
    1074 0x00000000      d_alloc_anon    vmlinux 
    1075 0x00000000      copy_strings_kernel     vmlinux 
    1076 0x00000000      spi_schedule_dv_device  drivers/scsi/scsi_transport_spi 
    1077 0x00000000      arp_create      vmlinux 
    1078 0x00000000      no_llseek       vmlinux 
    1079 0x00000000      tcp_statistics  vmlinux 
    1080 0x00000000      rwsem_down_read_failed  vmlinux 
    1081 0x00000000      dev_ethtool     vmlinux 
    1082 0x00000000      atapi_output_bytes      vmlinux 
    1083 0x00000000      notifier_call_chain     vmlinux 
    1084 0x00000000      proc_root_driver        vmlinux 
    1085 0x00000000      autoremove_wake_function        vmlinux 
    1086 0x00000000      __wake_up_sync  vmlinux 
    1087 0x00000000      give_up_console vmlinux 
    1088 0x00000000      getname vmlinux 
    1089 0x00000000      xfrm_calg_get_byid      vmlinux 
    1090 0x00000000      usb_hc_died     vmlinux 
    1091 0x00000000      ide_end_drive_cmd       vmlinux 
    1092 0x00000000      __ioremap       vmlinux 
    1093 0x00000000      free_irq        vmlinux 
    1094 0x00000000      inetdev_lock    vmlinux 
    1095 0x00000000      filemap_fdatawait       vmlinux 
    1096 0x00000000      pci_proc_attach_bus     vmlinux 
    1097 0x00000000      input_event     vmlinux 
    1098 0x00000000      simple_pin_fs   vmlinux 
    1099 0x00000000      schedule_delayed_work   vmlinux 
    1100 0x00000000      sock_no_sendpage        vmlinux 
    1101 0x00000000      bitmap_scnprintf        vmlinux 
    1102 0x00000000      posix_block_lock        vmlinux 
    1103 0x00000000      tasklist_lock   vmlinux 
    1104 0x00000000      xfrm_alloc_spi  vmlinux 
    1105 0x00000000      ata_output_data vmlinux 
    1106 0x00000000      nf_log_packet   vmlinux 
    1107 0x00000000      dev_remove_pack vmlinux 
    1108 0x00000000      posix_lock_file vmlinux 
    1109 0x00000000      set_page_dirty  vmlinux 
    1110 0x00000000      set_fs_root     vmlinux 
    1111 0x00000000      totalram_pages  vmlinux 
    1112 0x00000000      generic_file_writev     vmlinux 
    1113 0x00000000      udp_disconnect  vmlinux 
    1114 0x00000000      install_page    vmlinux 
    1115 0x00000000      journal_get_write_access        vmlinux 
    1116 0x00000000      taskfile_lib_get_identify       vmlinux 
    1117 0x00000000      blk_queue_stack_limits  vmlinux 
    1118 0x00000000      sysdev_unregister       vmlinux 
    1119 0x00000000      pci_pci_problems        vmlinux 
    1120 0x00000000      sk_send_sigurg  vmlinux 
    1121 0x00000000      drop_super      vmlinux 
    1122 0x00000000      printk  vmlinux 
    1123 0x00000000      sk_alloc        vmlinux 
    1124 0x00000000      remove_inode_hash       vmlinux 
    1125 0x00000000      try_to_release_page     vmlinux 
    1126 0x00000000      spi_dv_device   drivers/scsi/scsi_transport_spi 
    1127 0x00000000      net_random      vmlinux 
    1128 0x00000000      kobject_add     vmlinux 
    1129 0x00000000      cdev_get        vmlinux 
    1130 0x00000000      usb_get_urb     vmlinux 
    1131 0x00000000      pci_scan_single_device  vmlinux 
    1132 0x00000000      simple_dir_operations   vmlinux 
    1133 0x00000000      ip_statistics   vmlinux 
    1134 0x00000000      elv_add_request vmlinux 
    1135 0x00000000      dm_table_unplug_all     vmlinux 
    1136 0x00000000      fg_console      vmlinux 
    1137 0x00000000      kernel_read     vmlinux 
    1138 0x00000000      vfs_read        vmlinux 
    1139 0x00000000      __nvram_write_byte      drivers/char/nvram 
    1140 0x00000000      memcpy_fromiovec        vmlinux 
    1141 0x00000000      blk_queue_prep_rq       vmlinux 
    1142 0x00000000      pci_bus_find_capability vmlinux 
    1143 0x00000000      sysdev_class_register   vmlinux 
    1144 0x00000000      journal_unlock_updates  vmlinux 
    1145 0x00000000      bio_alloc       vmlinux 
    1146 0x00000000      __get_free_pages        vmlinux 
    1147 0x00000000      disallow_signal vmlinux 
    1148 0x00000000      tcp_write_wakeup        vmlinux 
    1149 0x00000000      ipv4_specific   vmlinux 
    1150 0x00000000      dm_table_put    vmlinux 
    1151 0x00000000      radix_tree_lookup       vmlinux 
    1152 0x00000000      match_strdup    vmlinux 
    1153 0x00000000      vfs_rename      vmlinux 
    1154 0x00000000      generic_ro_fops vmlinux 
    1155 0x00000000      kthread_bind    vmlinux 
    1156 0x00000000      xfrm_calg_get_byidx     vmlinux 
    1157 0x00000000      inetdev_by_index        vmlinux 
    1158 0x00000000      filemap_fdatawrite      vmlinux 
    1159 0x00000000      ipt_unregister_match    net/ipv4/netfilter/ip_tables 
    1160 0x00000000      dev_base_lock   vmlinux 
    1161 0x00000000      console_blank_hook      vmlinux 
    1162 0x00000000      bio_hw_segments vmlinux 
    1163 0x00000000      get_sb_bdev     vmlinux 
    1164 0x00000000      file_fsync      vmlinux 
    1165 0x00000000      dma_pool_create vmlinux 
    1166 0x00000000      block_all_signals       vmlinux 
    1167 0x00000000      usb_hcd_pci_probe       vmlinux 
    1168 0x00000000      dma_pool_destroy        vmlinux 
    1169 0x00000000      tty_name        vmlinux 
    1170 0x00000000      destroy_workqueue       vmlinux 
    1171 0x00000000      do_SAK  vmlinux 
    1172 0x00000000      pci_save_state  vmlinux 
    1173 0x00000000      check_disk_change       vmlinux 
    1174 0x00000000      param_get_uint  vmlinux 
    1175 0x00000000      get_wchan       vmlinux 
    1176 0x00000000      pci_find_subsys vmlinux 
    1177 0x00000000      sysctl_tcp_tw_recycle   vmlinux 
    1178 0x00000000      get_option      vmlinux 
    1179 0x00000000      inet_accept     vmlinux 
    1180 0x00000000      pci_set_consistent_dma_mask     vmlinux 
    1181 0x00000000      __pskb_pull_tail        vmlinux 
    1182 0x00000000      tty_wait_until_sent     vmlinux 
    1183 0x00000000      vfs_fstat       vmlinux 
    1184 0x00000000      vfs_lstat       vmlinux 
    1185 0x00000000      dma_spin_lock   vmlinux 
    1186 0x00000000      generic_fillattr        vmlinux 
    1187 0x00000000      mempool_alloc_slab      vmlinux 
    1188 0x00000000      param_set_invbool       vmlinux 
    1189 0x00000000      SELECT_MASK     vmlinux 
    1190 0x00000000      pci_bus_alloc_resource  vmlinux 
    1191 0x00000000      ide_do_reset    vmlinux 
    1192 0x00000000      skb_clone       vmlinux 
    1193 0x00000000      setup_arg_pages vmlinux 
    1194 0x00000000      sysctl_jiffies  vmlinux 
    1195 0x00000000      net_statistics  vmlinux 
    1196 0x00000000      tcp_init_xmit_timers    vmlinux 
    1197 0x00000000      breakpoint      vmlinux 
    1198 0x00000000      vt_cons vmlinux 
    1199 0x00000000      make_bad_inode  vmlinux 
    1200 0x00000000      xfrm_policy_put_afinfo  vmlinux 
    1201 0x00000000      xfrm_policy_get_afinfo  vmlinux 
    1202 0x00000000      seq_release_private     vmlinux 
    1203 0x00000000      blk_max_pfn     vmlinux 
    1204 0x00000000      add_interrupt_randomness        vmlinux 
    1205 0x00000000      update_atime    vmlinux 
    1206 0x00000000      vfs_readv       vmlinux 
    1207 0x00000000      do_sync_write   vmlinux 
    1208 0x00000000      tcp_listen_wlock        vmlinux 
    1209 0x00000000      pre_task_mulout_intr    vmlinux 
    1210 0x00000000      search_binary_handler   vmlinux 
    1211 0x00000000      tcp_disconnect  vmlinux 
    1212 0x00000000      put_device      vmlinux 
    1213 0x00000000      mark_info_dirty vmlinux 
    1214 0x00000000      bio_pair_release        vmlinux 
    1215 0x00000000      journal_start   vmlinux 
    1216 0x00000000      register_filesystem     vmlinux 
    1217 0x00000000      loops_per_jiffy vmlinux 
    1218 0x00000000      generic_make_request    vmlinux 
    1219 0x00000000      queue_delayed_work      vmlinux 
    1220 0x00000000      ip_send_check   vmlinux 
    1221 0x00000000      filemap_flush   vmlinux 
    1222 0x00000000      lookup_mnt      vmlinux 
    1223 0x00000000      strnlen_user    vmlinux 
    1224 0x00000000      dev_get_by_name vmlinux 
    1225 0x00000000      ip_options_undo vmlinux 
    1226 0x00000000      generic_cont_expand     vmlinux 
    1227 0x00000000      udp_prot        vmlinux 
    1228 0x00000000      unregister_quota_format vmlinux 
    1229 0x00000000      mb_cache_shrink vmlinux 
    1230 0x00000000      mark_page_accessed      vmlinux 
    1231 0x00000000      xfrm_count_enc_supported        vmlinux 
    1232 0x00000000      scsi_report_bus_reset   vmlinux 
    1233 0x00000000      bitmap_equal    vmlinux 
    1234 0x00000000      cdev_add        vmlinux 
    1235 0x00000000      block_sync_page vmlinux 
    1236 0x00000000      dev_mc_add      vmlinux 
    1237 0x00000000      sock_no_release vmlinux 
    1238 0x00000000      utf8_mbtowc     vmlinux 
    1239 0x00000000      open_exec       vmlinux 
    1240 0x00000000      mb_cache_entry_find_next        vmlinux 
    1241 0x00000000      usb_register_root_hub   vmlinux 
    1242 0x00000000      journal_forget  vmlinux 
    1243 0x00000000      ip_conntrack_alter_reply        net/ipv4/netfilter/ip_conntrack 
    1244 0x00000000      usb_epnum_to_ep_desc    vmlinux 
    1245 0x00000000      __set_page_dirty_nobuffers      vmlinux 
    1246 0x00000000      __tcp_mem_reclaim       vmlinux 
    1247 0x00000000      dev_set_promiscuity     vmlinux 
    1248 0x00000000      scsi_bios_ptable        vmlinux 
    1249 0x00000000      iosched_deadline        vmlinux 
    1250 0x00000000      zlib_deflate_workspacesize      lib/zlib_deflate/zlib_deflate 
    1251 0x00000000      neigh_connected_output  vmlinux 
    1252 0x00000000      param_set_ushort        vmlinux 
    1253 0x00000000      inet_peer_idlock        vmlinux 
    1254 0x00000000      netlink_kernel_create   vmlinux 
    1255 0x00000000      pci_find_slot   vmlinux 
    1256 0x00000000      apm_info        vmlinux 
    1257 0x00000000      init_task       vmlinux 
    1258 0x00000000      __insert_inode_hash     vmlinux 
    1259 0x00000000      fs_overflowgid  vmlinux 
    1260 0x00000000      xfrm_check_output       vmlinux 
    1261 0x00000000      blk_rq_bio_prep vmlinux 
    1262 0x00000000      bio_clone       vmlinux 
    1263 0x00000000      pci_mem_start   vmlinux 
    1264 0x00000000      xfrm_policy_walk        vmlinux 
    1265 0x00000000      end_request     vmlinux 
    1266 0x00000000      netlink_broadcast_deliver       vmlinux 
    1267 0x00000000      tcp_destroy_sock        vmlinux 
    1268 0x00000000      unregister_blkdev       vmlinux 
    1269 0x00000000      write_inode_now vmlinux 
    1270 0x00000000      seq_path        vmlinux 
    1271 0x00000000      rtnl_sem        vmlinux 
    1272 0x00000000      radix_tree_tag_clear    vmlinux 
    1273 0x00000000      generic_file_open       vmlinux 
    1274 0x00000000      default_unplug_io_fn    vmlinux 
    1275 0x00000000      abi_defhandler_coff     vmlinux 
    1276 0x00000000      ip_nat_helper_register  net/ipv4/netfilter/iptable_nat 
    1277 0x00000000      subsys_create_file      vmlinux 
    1278 0x00000000      d_instantiate   vmlinux 
    1279 0x00000000      elv_completed_request   vmlinux 
    1280 0x00000000      sysdev_create_file      vmlinux 
    1281 0x00000000      crc32_be        vmlinux 
    1282 0x00000000      open_bdev_excl  vmlinux 
    1283 0x00000000      ip_rt_ioctl     vmlinux 
    1284 0x00000000      tcp_transmit_skb        vmlinux 
    1285 0x00000000      skb_queue_tail  vmlinux 
    1286 0x00000000      mark_buffer_dirty_inode vmlinux 
    1287 0x00000000      ip_nat_mangle_udp_packet        net/ipv4/netfilter/iptable_nat 
    1288 0x00000000      queue_work      vmlinux 
    1289 0x00000000      release_console_sem     vmlinux 
    1290 0x00000000      elevator_init   vmlinux 
    1291 0x00000000      tty_check_change        vmlinux 
    1292 0x00000000      tty_register_ldisc      vmlinux 
    1293 0x00000000      kill_fasync     vmlinux 
    1294 0x00000000      sock_alloc      vmlinux 
    1295 0x00000000      schedule_timeout        vmlinux 
    1296 0x00000000      ip_nat_setup_info       net/ipv4/netfilter/iptable_nat 
    1297 0x00000000      netlink_dump_start      vmlinux 
    1298 0x00000000      scsi_add_host   vmlinux 
    1299 0x00000000      pciehp_msi_quirk        vmlinux 
    1300 0x00000000      aio_put_req     vmlinux 
    1301 0x00000000      is_subdir       vmlinux 
    1302 0x00000000      neigh_destroy   vmlinux 
    1303 0x00000000      __xfrm_policy_check     vmlinux 
    1304 0x00000000      pskb_copy       vmlinux 
    1305 0x00000000      class_unregister        vmlinux 
    1306 0x00000000      xfrm_policy_bysel       vmlinux 
    1307 0x00000000      scsi_host_lookup        vmlinux 
    1308 0x00000000      pci_find_capability     vmlinux 
    1309 0x00000000      int_sqrt        vmlinux 
    1310 0x00000000      local_bh_enable vmlinux 
    1311 0x00000000      journal_dirty_metadata  vmlinux 
    1312 0x00000000      call_usermodehelper     vmlinux 
    1313 0x00000000      udp_protocol    vmlinux 
    1314 0x00000000      nf_register_hook        vmlinux 
    1315 0x00000000      __dev_get_by_name       vmlinux 
    1316 0x00000000      skb_copy_and_csum_dev   vmlinux 
    1317 0x00000000      register_netdev vmlinux 
    1318 0x00000000      posix_acl_from_xattr    vmlinux 
    1319 0x00000000      scsi_device_lookup      vmlinux 
    1320 0x00000000      param_set_int   vmlinux 
    1321 0x00000000      nvram_write_byte        drivers/char/nvram 
    1322 0x00000000      sysctl_local_port_range vmlinux 
    1323 0x00000000      param_set_short vmlinux 
    1324 0x00000000      skb_pad vmlinux 
    1325 0x00000000      generic_file_llseek     vmlinux 
    1326 0x00000000      ide_xfer_verbose        vmlinux 
    1327 0x00000000      bitmap_weight   vmlinux 
    1328 0x00000000      vfree   vmlinux 
    1329 0x00000000      wait_on_page_bit        vmlinux 
    1330 0x00000000      neigh_update_hhs        vmlinux 
    1331 0x00000000      scsi_get_host_dev       vmlinux 
    1332 0x00000000      dma_pool_alloc  vmlinux 
    1333 0x00000000      set_selection   vmlinux 
    1334 0x00000000      generic_file_sendfile   vmlinux 
    1335 0x00000000      tcp_v4_do_rcv   vmlinux 
    1336 0x00000000      usb_register    vmlinux 
    1337 0x00000000      blk_dump_rq_flags       vmlinux 
    1338 0x00000000      get_device      vmlinux 
    1339 0x00000000      sysfs_create_group      vmlinux 
    1340 0x00000000      scsi_add_device vmlinux 
    1341 0x00000000      ethtool_op_get_tso      vmlinux 
    1342 0x00000000      kobject_register        vmlinux 
    1343 0x00000000      tcp_prot        vmlinux 
    1344 0x00000000      ide_pio_timings vmlinux 
    1345 0x00000000      raise_softirq_irqoff    vmlinux 
    1346 0x00000000      blk_queue_max_phys_segments     vmlinux 
    1347 0x00000000      pci_register_driver     vmlinux 
    1348 0x00000000      simple_getattr  vmlinux 
    1349 0x00000000      mempool_free    vmlinux 
    1350 0x00000000      journal_init_inode      vmlinux 
    1351 0x00000000      skb_to_sgvec    vmlinux 
    1352 0x00000000      tcp_rcv_state_process   vmlinux 
    1353 0x00000000      ethtool_op_get_tx_csum  vmlinux 
    1354 0x00000000      sscanf  vmlinux 
    1355 0x00000000      __breadahead    vmlinux 
    1356 0x00000000      journal_stop    vmlinux 
    1357 0x00000000      wait_for_completion     vmlinux 
    1358 0x00000000      usb_unlink_urb  vmlinux 
    1359 0x00000000      sock_create_lite        vmlinux 
    1360 0x00000000      cdrom_release   vmlinux 
    1361 0x00000000      tcp_timewait_state_process      vmlinux 
    1362 0x00000000      clear_page_dirty_for_io vmlinux 
    1363 0x00000000      ip_ct_gather_frags      net/ipv4/netfilter/ip_conntrack 
    1364 0x00000000      tty_get_baud_rate       vmlinux 
    1365 0x00000000      vfs_follow_link vmlinux 
    1366 0x00000000      sysdev_class_unregister vmlinux 
    1367 0x00000000      usb_bus_init    vmlinux 
    1368 0x00000000      bitmap_full     vmlinux 
    1369 0x00000000      serio_register_port     vmlinux 
    1370 0x00000000      jiffies vmlinux 
    1371 0x00000000      ip_nat_used_tuple       net/ipv4/netfilter/iptable_nat 
    1372 0x00000000      dev_queue_xmit  vmlinux 
    1373 0x00000000      proc_mkdir      vmlinux 
    1374 0x00000000      blk_rq_map_sg   vmlinux 
    1375 0x00000000      mark_buffer_async_read  vmlinux 
    1376 0x00000000      xtime   vmlinux 
    1377 0x00000000      proc_dointvec_jiffies   vmlinux 
    1378 0x00000000      usb_set_interface       vmlinux 
    1379 0x00000000      ide_setup_pci_devices   vmlinux 
    1380 0x00000000      strspn  vmlinux 
    1381 0x00000000      add_keyboard_randomness vmlinux 
    1382 0x00000000      boot_cpu_data   vmlinux 
    1383 0x00000000      cleanup_module  vmlinux 
    1384 0x00000000      default_hwif_transport  vmlinux 
    1385 0x00000000      radix_tree_tag_set      vmlinux 
    1386 0x00000000      match_int       vmlinux 
    1387 0x00000000      __generic_file_aio_read vmlinux 
    1388 0x00000000      sysctl_string   vmlinux 
    1389 0x00000000      skb_cow_data    vmlinux 
    1390 0x00000000      usb_hcd_operations      vmlinux 
    1391 0x00000000      proc_sys_root   vmlinux 
    1392 0x00000000      __page_cache_release    vmlinux 
    1393 0x00000000      get_options     vmlinux 
    1394 0x00000000      rtnetlink_links vmlinux 
    1395 0x00000000      input_unregister_handler        vmlinux 
    1396 0x00000000      print_req_sense vmlinux 
    1397 0x00000000      pci_remove_behind_bridge        vmlinux 
    1398 0x00000000      dquot_initialize        vmlinux 
    1399 0x00000000      register_exec_domain    vmlinux 
    1400 0x00000000      ide_taskfile_ioctl      vmlinux 
    1401 0x00000000      pci_bus_write_config_word       vmlinux 
    1402 0x00000000      ptrace_notify   vmlinux 
    1403 0x00000000      dump_thread     vmlinux 
    1404 0x00000000      nf_hooks        vmlinux 
    1405 0x00000000      pci_release_region      vmlinux 
    1406 0x00000000      proc_net        vmlinux 
    1407 0x00000000      __copy_to_user_ll       vmlinux 
    1408 0x00000000      pci_find_device_reverse vmlinux 
    1409 0x00000000      generic_file_fcntl      vmlinux 
    1410 0x00000000      tcp_v4_lookup_listener  vmlinux 
    1411 0x00000000      __ide_dma_check vmlinux 
    1412 0x00000000      register_firmware       drivers/base/firmware_class 
    1413 0x00000000      xfrm_get_type   vmlinux 
    1414 0x00000000      seq_printf      vmlinux 
    1415 0x00000000      neigh_delete    vmlinux 
    1416 0x00000000      pci_dev_driver  vmlinux 
    1417 0x00000000      simple_strtol   vmlinux 
    1418 0x00000000      rwsem_downgrade_wake    vmlinux 
    1419 0x00000000      pci_set_power_state     vmlinux 
    1420 0x00000000      remote_llseek   vmlinux 
    1421 0x00000000      pci_bus_size_bridges    vmlinux 
    1422 0x00000000      vfs_stat        vmlinux 
    1423 0x00000000      __bio_clone     vmlinux 
    1424 0x00000000      zlib_deflateReset       lib/zlib_deflate/zlib_deflate 
    1425 0x00000000      sysdev_driver_register  vmlinux 
    1426 0x00000000      serio_unregister_port_delayed   vmlinux 
    1427 0x00000000      scsi_block_when_processing_errors       vmlinux 
    1428 0x00000000      f_delown        vmlinux 
    1429 0x00000000      f_setown        vmlinux 
    1430 0x00000000      usb_clear_halt  vmlinux 
    1431 0x00000000      submit_bh       vmlinux 
    1432 0x00000000      console_print   vmlinux 
    1433 0x00000000      rb_insert_color vmlinux 
    1434 0x00000000      __inode_dir_notify      vmlinux 
    1435 0x00000000      tcp_protocol    vmlinux 
    1436 0x00000000      symbol_put_addr vmlinux 
    1437 0x00000000      usb_buffer_unmap        vmlinux 
    1438 0x00000000      ide_pci_create_host_proc        vmlinux 
    1439 0x00000000      d_alloc vmlinux 
    1440 0x00000000      journal_extend  vmlinux 
    1441 0x00000000      usb_disconnect  vmlinux 
    1442 0x00000000      udp_proc_register       vmlinux 
    1443 0x00000000      __ide_dma_end   vmlinux 
    1444 0x00000000      nr_free_pages   vmlinux 
    1445 0x00000000      clear_user      vmlinux 
    1446 0x00000000      clear_inode     vmlinux 
    1447 0x00000000      neigh_parms_release     vmlinux 
    1448 0x00000000      device_release_driver   vmlinux 
    1449 0x00000000      scsi_register_interface vmlinux 
    1450 0x00000000      set_current_groups      vmlinux 
    1451 0x00000000      update_region   vmlinux 
    1452 0x00000000      scm_fp_dup      vmlinux 
    1453 0x00000000      usb_deregister_bus      vmlinux 
    1454 0x00000000      tty_vhangup     vmlinux 
    1455 0x00000000      shrink_dcache_parent    vmlinux 
    1456 0x00000000      user_get_super  vmlinux 
    1457 0x00000000      synchronize_net vmlinux 
    1458 0x00000000      ide_cmd vmlinux 
    1459 0x00000000      bus_for_each_drv        vmlinux 
    1460 0x00000000      bus_for_each_dev        vmlinux 
    1461 0x00000000      pneigh_lookup   vmlinux 
    1462 0x00000000      __udelay        vmlinux 
    1463 0x00000000      __ndelay        vmlinux 
    1464 0x00000000      tcp_connect_init        vmlinux 
    1465 0x00000000      blk_queue_find_tag      vmlinux 
    1466 0x00000000      in_egroup_p     vmlinux 
    1467 0x00000000      tty_termios_baud_rate   vmlinux 
    1468 0x00000000      ip_conntrack_unexpect_related   net/ipv4/netfilter/ip_conntrack 
    1469 0x00000000      release_firmware        drivers/base/firmware_class 
    1470 0x00000000      tcp_child_process       vmlinux 
    1471 0x00000000      zlib_inflateInit_       vmlinux 
    1472 0x00000000      param_get_charp vmlinux 
    1473 0x00000000      ide_wait_stat   vmlinux 
    1474 0x00000000      prepare_binprm  vmlinux 
    1475 0x00000000      ip_conntrack_put        net/ipv4/netfilter/ip_conntrack 
    1476 0x00000000      ip_conntrack_get        net/ipv4/netfilter/ip_conntrack 
    1477 0x00000000      __print_symbol  vmlinux 
    1478 0x00000000      ide_dump_status vmlinux 
    1479 0x00000000      sysdev_register vmlinux 
    1480 0x00000000      sprintf vmlinux 
    1481 0x00000000      simple_unlink   vmlinux 
    1482 0x00000000      net_ratelimit   vmlinux 
    1483 0x00000000      posix_acl_valid vmlinux 
    1484 0x00000000      inter_module_put        vmlinux 
    1485 0x00000000      inter_module_get        vmlinux 
    1486 0x00000000      scsi_register   vmlinux 
    1487 0x00000000      journal_dirty_data      vmlinux 
    1488 0x00000000      find_vma        vmlinux 
    1489 0x00000000      xfrm_state_get_afinfo   vmlinux 
    1490 0x00000000      hcd_buffer_create       vmlinux 
    1491 0x00000000      ide_do_request  vmlinux 
    1492 0x00000000      inet_stream_connect     vmlinux 
    1493 0x00000000      screen_info     vmlinux 
    1494 0x00000000      pci_release_regions     vmlinux 
    1495 0x00000000      usb_get_string  vmlinux 
    1496 0x00000000      journal_ack_err vmlinux 
    1497 0x00000000      tcp_rcv_established     vmlinux 
    1498 0x00000000      simple_strtoul  vmlinux 
    1499 0x00000000      balance_dirty_pages_ratelimited vmlinux 
    1500 0x00000000      proc_symlink    vmlinux 
    1501 0x00000000      QUIRK_LIST      vmlinux 
    1502 0x00000000      blk_queue_dma_alignment vmlinux 
    1503 0x00000000      sysfs_rename_dir        vmlinux 
    1504 0x00000000      enable_irq      vmlinux 
    1505 0x00000000      enable_hlt      vmlinux 
    1506 0x00000000      try_to_flush_leftover_data      vmlinux 
    1507 0x00000000      tcp_v4_rebuild_header   vmlinux 
    1508 0x00000000      inet_sock_release       vmlinux 
    1509 0x00000000      insert_resource vmlinux 
    1510 0x00000000      submit_bio      vmlinux 
    1511 0x00000000      console_printk  vmlinux 
    1512 0x00000000      neigh_lookup    vmlinux 
    1513 0x00000000      machine_power_off       vmlinux 
    1514 0x00000000      inode_setattr   vmlinux 
    1515 0x00000000      alloc_buffer_head       vmlinux 
    1516 0x00000000      ip_route_input  vmlinux 
    1517 0x00000000      device_remove_file      vmlinux 
    1518 0x00000000      file_lock_list  vmlinux 
    1519 0x00000000      ip_options_compile      vmlinux 
    1520 0x00000000      ide_destroy_dmatable    vmlinux 
    1521 0x00000000      aio_complete    vmlinux 
    1522 0x00000000      param_get_ulong vmlinux 
    1523 0x00000000      sysctl_intvec   vmlinux 
    1524 0x00000000      blk_remove_plug vmlinux 
    1525 0x00000000      dquot_release   vmlinux 
    1526 0x00000000      move_addr_to_kernel     vmlinux 
    1527 0x00000000      file_ra_state_init      vmlinux 
    1528 0x00000000      add_to_page_cache       vmlinux 
    1529 0x00000000      ROOT_DEV        vmlinux 
    1530 0x00000000      usb_get_status  vmlinux 
    1531 0x00000000      flow_cache_genid        vmlinux 
    1532 0x00000000      input_class     vmlinux 
    1533 0x00000000      pci_set_master  vmlinux 
    1534 0x00000000      taskfile_input_data     vmlinux 
    1535 0x00000000      vc_cons vmlinux 
    1536 0x00000000      task_mulout_intr        vmlinux 
    1537 0x00000000      strlcat vmlinux 
    1538 0x00000000      posix_acl_chmod_masq    vmlinux 
    1539 0x00000000      kthread_should_stop     vmlinux 
    1540 0x00000000      sync_mapping_buffers    vmlinux 
    1541 0x00000000      __nvram_read_byte       drivers/char/nvram 
    1542 0x00000000      ip_ct_selective_cleanup net/ipv4/netfilter/ip_conntrack 
    1543 0x00000000      inode_change_ok vmlinux 
    1544 0x00000000      datagram_poll   vmlinux 
    1545 0x00000000      ide_timer_expiry        vmlinux 
    1546 0x00000000      blk_queue_end_tag       vmlinux 
    1547 0x00000000      flush_old_exec  vmlinux 
    1548 0x00000000      inet_addr_type  vmlinux 
    1549 0x00000000      inet_recvmsg    vmlinux 
    1550 0x00000000      sock_disable_timestamp  vmlinux 
    1551 0x00000000      __sysrq_lock_table      vmlinux 
    1552 0x00000000      mii_link_ok     vmlinux 
    1553 0x00000000      def_blk_fops    vmlinux 
    1554 0x00000000      tcp_proc_register       vmlinux 
    1555 0x00000000      stop_tty        vmlinux 
    1556 0x00000000      lookup_create   vmlinux 
    1557 0x00000000      get_sb_nodev    vmlinux 
    1558 0x00000000      kthread_create  vmlinux 
    1559 0x00000000      qdisc_restart   vmlinux 
    1560 0x00000000      loopback_dev    vmlinux 
    1561 0x00000000      neigh_ifdown    vmlinux 
    1562 0x00000000      __scsi_mode_sense       vmlinux 
    1563 0x00000000      pci_scan_bridge vmlinux 
    1564 0x00000000      alloc_chrdev_region     vmlinux 
    1565 0x00000000      arp_find        vmlinux 
    1566 0x00000000      net_srandom     vmlinux 
    1567 0x00000000      dev_getbyhwaddr vmlinux 
    1568 0x00000000      skb_checksum    vmlinux 
    1569 0x00000000      rb_next vmlinux 
    1570 0x00000000      finish_wait     vmlinux 
    1571 0x00000000      sock_getsockopt vmlinux 
    1572 0x00000000      simple_strtoull vmlinux 
    1573 0x00000000      ip_nat_protocol_register        net/ipv4/netfilter/iptable_nat 
    1574 0x00000000      default_red     vmlinux 
    1575 0x00000000      generate_random_uuid    vmlinux 
    1576 0x00000000      ip_nat_protocol_unregister      net/ipv4/netfilter/iptable_nat 
    1577 0x00000000      __ide_dma_host_on       vmlinux 
    1578 0x00000000      path_release    vmlinux 
    1579 0x00000000      vfs_statfs      vmlinux 
    1580 0x00000000      xfrm_replay_check       vmlinux 
    1581 0x00000000      scsi_release_request    vmlinux 
    1582 0x00000000      kill_pg_info    vmlinux 
    1583 0x00000000      udp_ioctl       vmlinux 
    1584 0x00000000      rtnetlink_put_metrics   vmlinux 
    1585 0x00000000      class_device_del        vmlinux 
    1586 0x00000000      may_umount      vmlinux 
    1587 0x00000000      mmu_cr4_features        vmlinux 
    1588 0x00000000      zlib_deflateInit2_      lib/zlib_deflate/zlib_deflate 
    1589 0x00000000      block_read_full_page    vmlinux 
    1590 0x00000000      put_bus vmlinux 
    1591 0x00000000      tcp_v4_connect  vmlinux 
    1592 0x00000000      tcp_sync_mss    vmlinux 
    1593 0x00000000      serio_rescan    vmlinux 
    1594 0x00000000      bio_get_nr_vecs vmlinux 
    1595 0x00000000      xfrm_policy_byid        vmlinux 
    1596 0x00000000      set_multmode_intr       vmlinux 
    1597 0x00000000      ide_register_driver     vmlinux 
    1598 0x00000000      load_nls_default        vmlinux 
    1599 0x00000000      kmem_cache_create       vmlinux 
    1600 0x00000000      seq_escape      vmlinux 
    1601 0x00000000      xfrm_ealg_get_byname    vmlinux 
    1602 0x00000000      dev_get_by_flags        vmlinux 
    1603 0x00000000      d_alloc_root    vmlinux 
    1604 0x00000000      xfrm_lookup     vmlinux 
    1605 0x00000000      skb_over_panic  vmlinux 
    1606 0x00000000      inet_unregister_protosw vmlinux 
    1607 0x00000000      mb_cache_entry_free     vmlinux 
    1608 0x00000000      __usb_get_extra_descriptor      vmlinux 
    1609 0x00000000      ide_wait_not_busy       vmlinux 
    1610 0x00000000      ide_ata66_check vmlinux 
    1611 0x00000000      pci_bus_assign_resources        vmlinux 
    1612 0x00000000      simple_commit_write     vmlinux 
    1613 0x00000000      profile_event_register  vmlinux 
    1614 0x00000000      register_netdevice      vmlinux 
    1615 0x00000000      scsi_finish_command     vmlinux 
    1616 0x00000000      elv_queue_empty vmlinux 
    1617 0x00000000      blkdev_put      vmlinux 
    1618 0x00000000      blkdev_get      vmlinux 
    1619 0x00000000      tcp_write_xmit  vmlinux 
    1620 0x00000000      task_in_intr    vmlinux 
    1621 0x00000000      generic_osync_inode     vmlinux 
    1622 0x00000000      jiffies_64      vmlinux 
    1623 0x00000000      dcache_readdir  vmlinux 
    1624 0x00000000      inode_add_bytes vmlinux 
    1625 0x00000000      generic_file_mmap       vmlinux 
    1626 0x00000000      generic_file_read       vmlinux 
    1627 0x00000000      neigh_rand_reach_time   vmlinux 
    1628 0x00000000      idr_find        vmlinux 
    1629 0x00000000      vfs_mknod       vmlinux 
    1630 0x00000000      ethtool_op_get_sg       vmlinux 
    1631 0x00000000      skb_dequeue     vmlinux 
    1632 0x00000000      disable_irq_nosync      vmlinux 
    1633 0x00000000      alloc_etherdev  vmlinux 
    1634 0x00000000      task_no_data_intr       vmlinux 
    1635 0x00000000      proc_dostring   vmlinux 
    1636 0x00000000      pci_bus_write_config_byte       vmlinux 
    1637 0x00000000      skb_insert      vmlinux 
    1638 0x00000000      pre_task_out_intr       vmlinux 
    1639 0x00000000      cap_vm_enough_memory    vmlinux 
    1640 0x00000000      ip_conntrack_lock       net/ipv4/netfilter/ip_conntrack 
    1641 0x00000000      blk_queue_max_segment_size      vmlinux 
    1642 0x00000000      log_wait_commit vmlinux 
    1643 0x00000000      blkdev_open     vmlinux 
    1644 0x00000000      __symbol_put    vmlinux 
    1645 0x00000000      get_zeroed_page vmlinux 
    1646 0x00000000      input_close_device      vmlinux 
    1647 0x00000000      prepare_to_wait_exclusive       vmlinux 
    1648 0x00000000      __ide_dma_read  vmlinux 
    1649 0x00000000      current_capacity        vmlinux 
    1650 0x00000000      remove_proc_entry       vmlinux 
    1651 0x00000000      arpt_register_table     net/ipv4/netfilter/arp_tables 
    1652 0x00000000      __ide_dma_write vmlinux 
    1653 0x00000000      filemap_nopage  vmlinux 
    1654 0x00000000      ip_nat_mangle_tcp_packet        net/ipv4/netfilter/iptable_nat 
    1655 0x00000000      sysctl_wmem_max vmlinux 
    1656 0x00000000      sysctl_rmem_max vmlinux 
    1657 0x00000000      dquot_transfer  vmlinux 
    1658 0x00000000      __ide_dma_host_off      vmlinux 
    1659 0x00000000      move_addr_to_user       vmlinux 
    1660 0x00000000      xfrm_state_check_space  vmlinux 
    1661 0x00000000      do_rw_taskfile  vmlinux 
    1662 0x00000000      ide_set_handler vmlinux 
    1663 0x00000000      vfs_readlink    vmlinux 
    1664 0x00000000      complete_and_exit       vmlinux 
    1665 0x00000000      udp_hash        vmlinux 
    1666 0x00000000      ide_build_sglist        vmlinux 
    1667 0x00000000      ide_do_drive_cmd        vmlinux 
    1668 0x00000000      sysfs_remove_group      vmlinux 
    1669 0x00000000      ide_cmd_ioctl   vmlinux 
    1670 0x00000000      ipt_register_match      net/ipv4/netfilter/ip_tables 
    1671 0x00000000      nf_setsockopt   vmlinux 
    1672 0x00000000      nf_getsockopt   vmlinux 
    1673 0x00000000      alloc_disk      vmlinux 
    1674 0x00000000      dquot_commit_info       vmlinux 
    1675 0x00000000      seq_puts        vmlinux 
    1676 0x00000000      seq_putc        vmlinux 
    1677 0x00000000      d_genocide      vmlinux 
    1678 0x00000000      __module_put_and_exit   vmlinux 
    1679 0x00000000      d_rehash        vmlinux 
    1680 0x00000000      end_buffer_write_sync   vmlinux 
    1681 0x00000000      ide_build_dmatable      vmlinux 
    1682 0x00000000      n_tty_ioctl     vmlinux 
    1683 0x00000000      __bdevname      vmlinux 
    1684 0x00000000      cont_prepare_write      vmlinux 
    1685 0x00000000      vfs_write       vmlinux 
    1686 0x00000000      remove_shrinker vmlinux 
    1687 0x00000000      change_page_attr        vmlinux 
    1688 0x00000000      tcp_acceptable_seq      vmlinux 
    1689 0x00000000      netif_rx        vmlinux 
    1690 0x00000000      journal_bmap    vmlinux 
    1691 0x00000000      kernel_flag     vmlinux 
    1692 0x00000000      tcp_cwnd_application_limited    vmlinux 
    1693 0x00000000      unregister_binfmt       vmlinux 
    1694 0x00000000      __mod_timer     vmlinux 
    1695 0x00000000      sock_no_accept  vmlinux 
    1696 0x00000000      disable_timer_nmi_watchdog      vmlinux 
    1697 0x00000000      machine_halt    vmlinux 
    1698 0x00000000      elevator_exit   vmlinux 
    1699 0x00000000      __lock_buffer   vmlinux 
    1700 0x00000000      tcp_ioctl       vmlinux 
    1701 0x00000000      vfs_symlink     vmlinux 
    1702 0x00000000      ip_conntrack_find_get   net/ipv4/netfilter/ip_conntrack 
    1703 0x00000000      create_proc_ide_interfaces      vmlinux 
    1704 0x00000000      unmap_mapping_range     vmlinux 
    1705 0x00000000      __alloc_pages   vmlinux 
    1706 0x00000000      overflowgid     vmlinux 
    1707 0x00000000      overflowuid     vmlinux 
    1708 0x00000000      inet_select_addr        vmlinux 
    1709 0x00000000      pci_enable_device       vmlinux 
    1710 0x00000000      generic_file_readv      vmlinux 
    1711 0x00000000      dcache_dir_close        vmlinux 
    1712 0x00000000      sock_no_connect vmlinux 
    1713 0x00000000      proc_ide_read_geometry  vmlinux 
    1714 0x00000000      dquot_mark_dquot_dirty  vmlinux 
    1715 0x00000000      bh_waitq_head   vmlinux 
    1716 0x00000000      set_shrinker    vmlinux 
    1717 0x00000000      eth_type_trans  vmlinux 
    1718 0x00000000      mb_cache_entry_get      vmlinux 
    1719 0x00000000      send_sig        vmlinux 
    1720 0x00000000      tcp_shutdown    vmlinux 
    1721 0x00000000      param_set_uint  vmlinux 
    1722 0x00000000      cdrom_open      vmlinux 
    1723 0x00000000      scsi_partsize   vmlinux 
    1724 0x00000000      get_bus vmlinux 
    1725 0x00000000      groups_alloc    vmlinux 
    1726 0x00000000      kill_sl_info    vmlinux 
    1727 0x00000000      netlink_unregister_notifier     vmlinux 
    1728 0x00000000      simple_release_fs       vmlinux 
    1729 0x00000000      generic_file_aio_write_nolock   vmlinux 
    1730 0x00000000      scsi_host_put   vmlinux 
    1731 0x00000000      arpt_register_target    net/ipv4/netfilter/arp_tables 
    1732 0x00000000      dev_ioctl       vmlinux 
    1733 0x00000000      add_wait_queue  vmlinux 
    1734 0x00000000      dev_add_pack    vmlinux 
    1735 0x00000000      vsnprintf       vmlinux 
    1736 0x00000000      rb_replace_node vmlinux 
    1737 0x00000000      journal_clear_err       vmlinux 
    1738 0x00000000      sysctl_tcp_reordering   vmlinux 
    1739 0x00000000      __ide_dma_bad_drive     vmlinux 
    1740 0x00000000      ide_execute_command     vmlinux 
    1741 0x00000000      vfs_quota_on_mount      vmlinux 
    1742 0x00000000      cdrom_is_random_writable        vmlinux 
    1743 0x00000000      class_simple_destroy    vmlinux 
    1744 0x00000000      crypto_alloc_tfm        vmlinux 
    1745 0x00000000      unset_nmi_callback      vmlinux 
    1746 0x00000000      tty_set_operations      vmlinux 
    1747 0x00000000      get_super       vmlinux 
    1748 0x00000000      mark_buffer_dirty       vmlinux 
    1749 0x00000000      flush_scheduled_work    vmlinux 
    1750 0x00000000      skb_copy_and_csum_bits  vmlinux 
    1751 0x00000000      ll_rw_block     vmlinux 
    1752 0x00000000      set_geometry_intr       vmlinux 
    1753 0x00000000      kref_init       vmlinux 
    1754 0x00000000      __PAGE_KERNEL   vmlinux 
    1755 0x00000000      serio_open      vmlinux 
    1756 0x00000000      cap_bprm_apply_creds    vmlinux 
    1757 0x00000000      netlink_post    vmlinux 
    1758 0x00000000      sock_register   vmlinux 
    1759 0x00000000      serio_close     vmlinux 
    1760 0x00000000      pci_find_bus    vmlinux 
    1761 0x00000000      nmi_active      vmlinux 
    1762 0x00000000      __ide_dma_on    vmlinux 
    1763 0x00000000      end_buffer_async_write  vmlinux 
    1764 0x00000000      skb_under_panic vmlinux 
    1765 0x00000000      vfs_writev      vmlinux 
    1766 0x00000000      proc_dointvec   vmlinux 
    1767 0x00000000      class_simple_create     vmlinux 
    1768 0x00000000      machine_restart vmlinux 
    1769 0x00000000      nf_hook_slow    vmlinux 
    1770 0x00000000      zlib_inflate_workspacesize      vmlinux 
    1771 0x00000000      tcp_recvmsg     vmlinux 
    1772 0x00000000      usb_bus_list    vmlinux 
    1773 0x00000000      match_strcpy    vmlinux 
    1774 0x00000000      release_lapic_nmi       vmlinux 
    1775 0x00000000      proc_dointvec_userhz_jiffies    vmlinux 
    1776 0x00000000      tcp_simple_retransmit   vmlinux 
    1777 0x00000000      tcp_write_space vmlinux 
    1778 0x00000000      simple_dir_inode_operations     vmlinux 
    1779 0x00000000      drive_is_ready  vmlinux 
    1780 0x00000000      ide_read_24     vmlinux 
    1781 0x00000000      dcache_dir_open vmlinux 
    1782 0x00000000      __find_get_block        vmlinux 
    1783 0x00000000      put_unused_fd   vmlinux 
    1784 0x00000000      abi_fake_utsname        vmlinux 
    1785 0x00000000      rb_first        vmlinux 
    1786 0x00000000      unregister_module_notifier      vmlinux 
    1787 0x00000000      bus_register    vmlinux 
    1788 0x00000000      pci_root_buses  vmlinux 
    1789 0x00000000      nf_log_unregister       vmlinux 
    1790 0x00000000      input_open_device       vmlinux 
    1791 0x00000000      fsync_bdev      vmlinux 
    1792 0x00000000      device_for_each_child   vmlinux 
    1793 0x00000000      blk_get_queue   vmlinux 
    1794 0x00000000      blk_hw_contig_segment   vmlinux 
    1795 0x00000000      firmware_register       vmlinux 
    1796 0x00000000      device_find     vmlinux 
    1797 0x00000000      _ctype  vmlinux 
    1798 0x00000000      bd_set_size     vmlinux 
    1799 0x00000000      udp_proc_unregister     vmlinux 
    1800 0x00000000      pci_set_dma_mask        vmlinux 
    1801 0x00000000      skb_copy        vmlinux 
    1802 0x00000000      pci_bus_read_config_dword       vmlinux 
    1803 0x00000000      memparse        vmlinux 
    1804 0x00000000      block_truncate_page     vmlinux 
    1805 0x00000000      generic_write_checks    vmlinux 
    1806 0x00000000      do_settimeofday vmlinux 
    1807 0x00000000      do_gettimeofday vmlinux 
    1808 0x00000000      destroy_8023_client     vmlinux 
    1809 0x00000000      flow_cache_lookup       vmlinux 
    1810 0x00000000      alloc_tty_driver        vmlinux 
    1811 0x00000000      blk_register_region     vmlinux 
    1812 0x00000000      default_blu     vmlinux 
    1813 0x00000000      bio_put vmlinux 
    1814 0x00000000      journal_force_commit    vmlinux 
    1815 0x00000000      inode_needs_sync        vmlinux 
    1816 0x00000000      grab_cache_page_nowait  vmlinux 
    1817 0x00000000      dev_getfirstbyhwtype    vmlinux 
    1818 0x00000000      dev_base        vmlinux 
    1819 0x00000000      ide_diag_taskfile       vmlinux 
    1820 0x00000000      fs_overflowuid  vmlinux 
    1821 0x00000000      wake_up_process vmlinux 
    1822 0x00000000      skb_dequeue_tail        vmlinux 
    1823 0x00000000      init_cdrom_command      vmlinux 
    1824 0x00000000      inet_stream_ops vmlinux 
    1825 0x00000000      qdisc_reset     vmlinux 
    1826 0x00000000      register_netdevice_notifier     vmlinux 
    1827 0x00000000      end_that_request_last   vmlinux 
    1828 0x00000000      pci_get_device  vmlinux 
    1829 0x00000000      bitreverse      vmlinux 
    1830 0x00000000      bio_unmap_user  vmlinux 
    1831 0x00000000      cap_inode_removexattr   vmlinux 
    1832 0x00000000      dnotify_parent  vmlinux 
    1833 0x00000000      get_sb_single   vmlinux 
    1834 0x00000000      __delay vmlinux 
    1835 0x00000000      pm_power_off    vmlinux 
    1836 0x00000000      blk_queue_init_tags     vmlinux 
    1837 0x00000000      device_initialize       vmlinux 
    1838 0x00000000      dquot_alloc_inode       vmlinux 
    1839 0x00000000      bdput   vmlinux 
    1840 0x00000000      bdget   vmlinux 
    1841 0x00000000      dm_table_get    vmlinux 
    1842 0x00000000      ide_rate_filter vmlinux 
    1843 0x00000000      arp_broken_ops  vmlinux 
    1844 0x00000000      ide_wait_cmd    vmlinux 
    1845 0x00000000      cap_capset_set  vmlinux 
    1846 0x00000000      cdrom_ioctl     vmlinux 
    1847 0x00000000      bio_init        vmlinux 
    1848 0x00000000      strncpy_from_user       vmlinux 
    1849 0x00000000      ip_nat_helper_unregister        net/ipv4/netfilter/iptable_nat 
    1850 0x00000000      init_special_inode      vmlinux 
    1851 0x00000000      create_empty_buffers    vmlinux 
    1852 0x00000000      inet_setsockopt vmlinux 
    1853 0x00000000      sk_chk_filter   vmlinux 
    1854 0x00000000      dm_vcalloc      vmlinux 
    1855 0x00000000      __ide_dma_off   vmlinux 
    1856 0x00000000      release_resource        vmlinux 
    1857 0x00000000      brioctl_set     vmlinux 
    1858 0x00000000      __sysrq_unlock_table    vmlinux 
    1859 0x00000000      xfrm_state_alloc        vmlinux 
    1860 0x00000000      page_symlink    vmlinux 
    1861 0x00000000      __xfrm_route_forward    vmlinux 
    1862 0x00000000      udp_connect     vmlinux 
    1863 0x00000000      param_get_bool  vmlinux 
    1864 0x00000000      arp_tbl vmlinux 
    1865 0x00000000      sysctl_overcommit_ratio vmlinux 
    1866 0x00000000      ip_ftp_lock     net/ipv4/netfilter/ip_conntrack_ftp 
    1867 0x00000000      kallsyms_lookup vmlinux 
    1868 0x00000000      skb_icv_walk    vmlinux 
    1869 0x00000000      usb_deregister  vmlinux 
    1870 0x00000000      journal_callback_set    vmlinux 
    1871 0x00000000      dump_stack      vmlinux 
    1872 0x00000000      net_sysctl_strdup       vmlinux 
    1873 0x00000000      kobject_del     vmlinux 
    1874 0x00000000      poll_initwait   vmlinux 
    1875 0x00000000      unregister_console      vmlinux 
    1876 0x00000000      register_chrdev_region  vmlinux 
    1877 0x00000000      netdev_state_change     vmlinux 
    1878 0x00000000      usb_sg_cancel   vmlinux 
    1879 0x00000000      ext2_xattr_list vmlinux 
    1880 0x00000000      struct_module   vmlinux 
    1881 0x00000000      nf_register_queue_handler       vmlinux 
    1882 0x00000000      shrink_dcache_sb        vmlinux 
    1883 0x00000000      default_backing_dev_info        vmlinux 
    1884 0x00000000      cap_capget      vmlinux 
    1885 0x00000000      posix_acl_clone vmlinux 
    1886 0x00000000      find_inode_number       vmlinux 
    1887 0x00000000      vfs_permission  vmlinux 
    1888 0x00000000      udp_port_rover  vmlinux 
    1889 0x00000000      sys_tz  vmlinux 
    1890 0x00000000      blk_init_queue  vmlinux 
    1891 0x00000000      unlock_page     vmlinux 
    1892 0x00000000      idle_cpu        vmlinux 
    1893 0x00000000      xfrm_unregister_type    vmlinux 
    1894 0x00000000      printk_ratelimit        vmlinux 
    1895 0x00000000      rtnetlink_dump_ifinfo   vmlinux 
    1896 0x00000000      neigh_compat_output     vmlinux 
    1897 0x00000000      inode_get_bytes vmlinux 
    1898 0x00000000      __wake_up       vmlinux 
    1899 0x00000000      vfs_mkdir       vmlinux 
    1900 0x00000000      usb_driver_claim_interface      vmlinux 
    1901 0x00000000      max_mapnr       vmlinux 
    1902 0x00000000      tcp_bucket_create       vmlinux 
    1903 0x00000000      usb_find_device vmlinux 
    1904 0x00000000      usb_get_dev     vmlinux 
    1905 0x00000000      mb_cache_create vmlinux 
    1906 0x00000000      iunique vmlinux 
    1907 0x00000000      inet_dgram_ops  vmlinux 
    1908 0x00000000      input_release_device    vmlinux 
    1909 0x00000000      scsi_put_command        vmlinux 
    1910 0x00000000      blk_alloc_queue vmlinux 
    1911 0x00000000      bus_remove_device       vmlinux 
    1912 0x00000000      mb_cache_destroy        vmlinux 
    1913 0x00000000      get_unused_fd   vmlinux 
    1914 0x00000000      proc_doulongvec_minmax  vmlinux 
    1915 0x00000000      tcp_proc_unregister     vmlinux 
    1916 0x00000000      ip_conntrack_hash       net/ipv4/netfilter/ip_conntrack 
    1917 0x00000000      scsi_add_timer  vmlinux 
    1918 0x00000000      posix_acl_from_mode     vmlinux 
    1919 0x00000000      global_flush_tlb        vmlinux 
    1920 0x00000000      new_inode       vmlinux 
    1921 0x00000000      flagged_taskfile        vmlinux 
    1922 0x00000000      idr_get_new     vmlinux 
    1923 0x00000000      unregister_netdevice_notifier   vmlinux 
    1924 0x00000000      tty_register_driver     vmlinux 
    1925 0x00000000      driver_remove_file      vmlinux 
    1926 0x00000000      kset_unregister vmlinux 
    1927 0x00000000      __tasklet_hi_schedule   vmlinux 
    1928 0x00000000      arp_send        vmlinux 
    1929 0x00000000      zlib_inflateReset       vmlinux 
    1930 0x00000000      cdev_del        vmlinux 
    1931 0x00000000      pneigh_enqueue  vmlinux 
    1932 0x00000000      dev_alloc_name  vmlinux 
    1933 0x00000000      ide_setup_dma   vmlinux 
    1934 0x00000000      rwsem_wake      vmlinux 
    1935 0x00000000      iosched_as      vmlinux 
    1936 0x00000000      dm_unregister_target    vmlinux 
    1937 0x00000000      blk_queue_bounce        vmlinux 
    1938 0x00000000      ip_rcv  vmlinux 
    1939 0x00000000      pci_dev_put     vmlinux 
    1940 0x00000000      pci_dev_get     vmlinux 
    1941 0x00000000      read_dev_sector vmlinux 
    1942 0x00000000      usb_ifnum_to_if vmlinux 
    1943 0x00000000      journal_create  vmlinux 
    1944 0x00000000      __up_wakeup     vmlinux 
    1945 0x00000000      cdrom_mode_sense        vmlinux 
    1946 0x00000000      dqstats vmlinux 
    1947 0x00000000      mb_cache_entry_release  vmlinux 
    1948 0x00000000      execute_drive_cmd       vmlinux 
    1949 0x00000000      usb_register_bus        vmlinux 
    1950 0x00000000      radix_tree_insert       vmlinux 
    1951 0x00000000      kern_mount      vmlinux 
    1952 0x00000000      qdisc_create_dflt       vmlinux 
    1953 0x00000000      noop_qdisc_ops  vmlinux 
    1954 0x00000000      bmap    vmlinux 
    1955 0x00000000      ext2_xattr_unregister   vmlinux 
    1956 0x00000000      tcp_connect     vmlinux 
    1957 0x00000000      neigh_table_clear       vmlinux 
    1958 0x00000000      do_munmap       vmlinux 
    1959 0x00000000      xfrm_aalg_get_byname    vmlinux 
    1960 0x00000000  &nbs