diff -uprNX dontdiff 2.6-clean/drivers/media/video/zr36120.c 2.6-zoran-inc/drivers/media/video/zr36120.c
--- 2.6-clean/drivers/media/video/zr36120.c	2004-05-09 23:32:37.000000000 -0300
+++ 2.6-zoran-inc/drivers/media/video/zr36120.c	2004-06-22 15:02:44.000000000 -0300
@@ -29,6 +29,7 @@
 #include <linux/vmalloc.h>
 #include <linux/mm.h>
 #include <linux/pci.h>
+#include <linux/interrupt.h>
 #include <linux/signal.h>
 #include <asm/io.h>
 #include <asm/pgtable.h>
@@ -38,8 +39,8 @@
 
 #include <asm/uaccess.h>
 
-#include "tuner.h"
 #include "zr36120.h"
+#include <media/tuner.h>
 #include "zr36120_mem.h"
 
 /* mark an required function argument unused - lintism */
@@ -111,7 +112,7 @@ static struct tvcard tvcards[] = {
 #undef F
 #define NRTVCARDS (sizeof(tvcards)/sizeof(tvcards[0]))
 
-#ifdef __sparc__
+#ifdef __BIG_ENDIAN
 #define	ENDIANESS	0
 #else
 #define	ENDIANESS	ZORAN_VFEC_LE
@@ -337,7 +338,7 @@ DEBUG(printk(CARD_DEBUG "turning off\n",
 }
 
 static
-void zoran_irq(int irq, void *dev_id, struct pt_regs * regs)
+irqreturn_t zoran_irq(int irq, void *dev_id, struct pt_regs * regs)
 {
 	u32 stat,estat;
 	int count = 0;
@@ -349,7 +350,7 @@ void zoran_irq(int irq, void *dev_id, st
 		stat=zrread(ZORAN_ISR);
 		estat=stat & zrread(ZORAN_ICR);
 		if (!estat)
-			return;
+			break;
 		zrwrite(estat,ZORAN_ISR);
 		IDEBUG(printk(CARD_DEBUG "estat %08x\n",CARD,estat));
 		IDEBUG(printk(CARD_DEBUG " stat %08x\n",CARD,stat));
@@ -380,6 +381,7 @@ void zoran_irq(int irq, void *dev_id, st
 			printk(CARD_ERR "IRQ lockup, cleared int mask\n",CARD);
 		}
 	}
+	return IRQ_HANDLED;
 }
 
 static
@@ -388,7 +390,7 @@ int zoran_muxsel(struct zoran* ztv, int 
 	int	rv;
 
 	/* set the new video norm */
-	rv = i2c_control_device(&(ztv->i2c), I2C_DRIVERID_VIDEODECODER, DECODER_SET_NORM, &norm);
+	rv = zoran_i2c_command(ztv, DECODER_SET_NORM, &norm);
 	if (rv)
 		return rv;
 	ztv->norm = norm;
@@ -397,7 +399,7 @@ int zoran_muxsel(struct zoran* ztv, int 
 	channel = ztv->card->video_mux[channel] & CHANNEL_MASK;
 
 	/* set the new channel */
-	rv = i2c_control_device(&(ztv->i2c), I2C_DRIVERID_VIDEODECODER, DECODER_SET_INPUT, &channel);
+	rv = zoran_i2c_command(ztv, DECODER_SET_INPUT, &channel);
 	return rv;
 }
 
@@ -734,7 +736,7 @@ void zoran_common_open(struct zoran* ztv
 	ztv->picture.brightness=128<<8;
 	ztv->picture.hue=128<<8;
 	ztv->picture.contrast=216<<7;
-	i2c_control_device(&ztv->i2c, I2C_DRIVERID_VIDEODECODER, DECODER_SET_PICTURE, &ztv->picture);
+	zoran_i2c_command(ztv, DECODER_SET_PICTURE, &ztv->picture);
 
 	/* default to the composite input since my camera is there */
 	zoran_muxsel(ztv, 0, VIDEO_MODE_PAL);
@@ -756,11 +758,46 @@ void zoran_common_close(struct zoran* zt
 /*
  * Open a zoran card. Right now the flags are just a hack
  */
-static int zoran_open(struct video_device *dev, int flags)
+static int zoran_open(struct inode *inode, struct file *file)
 {
-	struct zoran *ztv = (struct zoran*)dev;
+	unsigned int minor = iminor(inode);
+	struct zoran *ztv = NULL;
 	struct vidinfo* item;
 	char* pos;
+	int i, retval;
+
+	if (!try_module_get(THIS_MODULE)) {
+		printk(KERN_ERR "failed to acquire lock on myself\n");
+		retval = -EIO;
+		goto exit;
+	}
+
+	/* find the device */
+	for (i = 0; i < zoran_cards; i++) {
+		if (zorans[i].video_dev->minor == minor) {
+			ztv = &zorans[i];
+			break;
+		}
+	}
+	if (!ztv) {
+		retval = -ENODEV;
+		goto free_module;
+	}
+
+	if (ztv->have_decoder &&
+			!try_module_get(ztv->decoder->driver->owner)) {
+		printk(KERN_ERR "Failed to acquire lock on TV decoder\n");
+		retval = -EIO;
+		goto free_module;
+	}
+	if (ztv->have_tuner &&
+			!try_module_get(ztv->tuner->driver->owner)) {
+		printk(KERN_ERR "Failed to acquire lock on TV tuner\n");
+
+		retval = -EIO;
+
+		goto free_decoder;
+	}
 
 	DEBUG(printk(CARD_DEBUG "open(dev,%d)\n",CARD,flags));
 
@@ -772,7 +809,8 @@ static int zoran_open(struct video_devic
 		ztv->fbuffer = bmalloc(ZORAN_MAX_FBUFSIZE);
 	if (!ztv->fbuffer) {
 		/* could not get a buffer, bail out */
-		return -ENOBUFS;
+		retval = -ENOBUFS;
+		goto free_tuner;
 	}
 	/* at this time we _always_ have a framebuffer */
 	memset(ztv->fbuffer,0,ZORAN_MAX_FBUFSIZE);
@@ -781,8 +819,8 @@ static int zoran_open(struct video_devic
 		ztv->overinfo.overlay = (void*)kmalloc(1024*1024/8, GFP_KERNEL);
 	if (!ztv->overinfo.overlay) {
 		/* could not get an overlay buffer, bail out */
-		bfree(ztv->fbuffer, ZORAN_MAX_FBUFSIZE);
-		return -ENOBUFS;
+		retval = -ENOBUFS;
+		goto free_fbuffer;
 	}
 	/* at this time we _always_ have a overlay */
 
@@ -797,15 +835,37 @@ static int zoran_open(struct video_devic
 	}
 
 	/* do the common part of all open's */
-	zoran_common_open(ztv, flags);
+	zoran_common_open(ztv, file->f_flags);
 
-	return 0;
+	file->private_data = ztv;
+
+	retval = 0;
+
+exit:
+	return retval;
+
+free_fbuffer:
+	bfree(ztv->fbuffer, ZORAN_MAX_FBUFSIZE);
+
+free_tuner:
+	if (ztv->have_tuner)
+		module_put(ztv->tuner->driver->owner);
+
+free_decoder:
+	if (ztv->have_decoder)
+		module_put(ztv->decoder->driver->owner);
+
+free_module:
+	module_put(THIS_MODULE);
+	goto exit;
 }
 
 static
-void zoran_close(struct video_device* dev)
+int zoran_close(struct inode *inode, struct file *file)
 {
-	struct zoran *ztv = (struct zoran*)dev;
+	struct zoran *ztv = (struct zoran *)file->private_data;
+
+	UNUSED(inode);
 
 	DEBUG(printk(CARD_DEBUG "close(dev)\n",CARD));
 
@@ -813,6 +873,7 @@ void zoran_close(struct video_device* de
 	clear_bit(STATE_OVERLAY, &ztv->state);
 
 	zoran_common_close(ztv);
+	file->private_data = NULL;
 
         /*
          *      This is sucky but right now I can't find a good way to
@@ -830,6 +891,13 @@ void zoran_close(struct video_device* de
 		kfree( ztv->overinfo.overlay );
 	ztv->overinfo.overlay = 0;
 
+	module_put(THIS_MODULE);
+	if (ztv->have_decoder)
+		module_put(ztv->decoder->driver->owner);
+	if (ztv->have_tuner)
+		module_put(ztv->tuner->driver->owner);
+
+	return 0;
 }
 
 /*
@@ -840,12 +908,15 @@ void zoran_close(struct video_device* de
  * be released as soon as possible to prevent lock contention.
  */
 static
-long zoran_read(struct video_device* dev, char* buf, unsigned long count, int nonblock)
+ssize_t zoran_read(struct file *file, char* buf, size_t count, loff_t *offset)
 {
-	struct zoran *ztv = (struct zoran*)dev;
+	struct zoran *ztv = (struct zoran *)file->private_data;
 	unsigned long max;
 	struct vidinfo* unused = 0;
 	struct vidinfo* done = 0;
+	int nonblock = file->f_flags & O_NONBLOCK;
+
+	UNUSED(offset);
 
 	DEBUG(printk(CARD_DEBUG "zoran_read(%p,%ld,%d)\n",CARD,buf,count,nonblock));
 
@@ -934,18 +1005,18 @@ long zoran_read(struct video_device* dev
 }
 
 static
-long zoran_write(struct video_device* dev, const char* buf, unsigned long count, int nonblock)
+ssize_t zoran_write(struct file *file, const char* buf, size_t count, loff_t *offset)
 {
-	struct zoran *ztv = (struct zoran *)dev;
-	UNUSED(ztv); UNUSED(dev); UNUSED(buf); UNUSED(count); UNUSED(nonblock);
+	struct zoran *ztv = (struct zoran *)file->private_data;
+	UNUSED(ztv); UNUSED(file); UNUSED(buf); UNUSED(count); UNUSED(offset);
 	DEBUG(printk(CARD_DEBUG "zoran_write\n",CARD));
 	return -EINVAL;
 }
 
 static
-unsigned int zoran_poll(struct video_device *dev, struct file *file, poll_table *wait)
+unsigned int zoran_poll(struct file *file, poll_table *wait)
 {
-	struct zoran *ztv = (struct zoran *)dev;
+	struct zoran *ztv = (struct zoran *)file->private_data;
 	struct vidinfo* item;
 	unsigned int mask = 0;
 
@@ -975,9 +1046,11 @@ void new_clip(struct video_window* vw, s
 }
 
 static
-int zoran_ioctl(struct video_device* dev, unsigned int cmd, void *arg)
+int zoran_do_ioctl(struct inode *inode, struct file *file, unsigned int cmd, void *arg)
 {
-	struct zoran* ztv = (struct zoran*)dev;
+	struct zoran* ztv = (struct zoran *)file->private_data;
+
+	UNUSED(inode);
 
 	switch (cmd) {
 	 case VIDIOCGCAP:
@@ -985,7 +1058,7 @@ int zoran_ioctl(struct video_device* dev
 		struct video_capability c;
 		DEBUG(printk(CARD_DEBUG "VIDIOCGCAP\n",CARD));
 
-		strcpy(c.name,ztv->video_dev.name);
+		strcpy(c.name,ztv->video_dev->name);
 		c.type = VID_TYPE_CAPTURE|
 			 VID_TYPE_OVERLAY|
 			 VID_TYPE_CLIPPING|
@@ -1160,7 +1233,7 @@ int zoran_ioctl(struct video_device* dev
 		write_unlock_irq(&ztv->lock);
 
 		/* tell the decoder */
-		i2c_control_device(&ztv->i2c, I2C_DRIVERID_VIDEODECODER, DECODER_SET_PICTURE, &p);
+		zoran_i2c_command(ztv, DECODER_SET_PICTURE, &p);
 		break;
 	 }
 
@@ -1407,8 +1480,8 @@ int zoran_ioctl(struct video_device* dev
 	 {
 		struct video_unit vu;
 		DEBUG(printk(CARD_DEBUG "VIDIOCGUNIT\n",CARD));
-		vu.video = ztv->video_dev.minor;
-		vu.vbi = ztv->vbi_dev.minor;
+		vu.video = ztv->video_dev->minor;
+		vu.vbi = ztv->vbi_dev->minor;
 		vu.radio = VIDEO_NO_UNIT;
 		vu.audio = VIDEO_NO_UNIT;
 		vu.teletext = VIDEO_NO_UNIT;
@@ -1434,7 +1507,7 @@ int zoran_ioctl(struct video_device* dev
 
 		if (ztv->have_tuner) {
 			int fixme = v;
-			if (i2c_control_device(&(ztv->i2c), I2C_DRIVERID_TUNER, TUNER_SET_TVFREQ, &fixme) < 0)
+			if (zoran_i2c_command(ztv, TUNER_SET_TVFREQ, &fixme) < 0)
 				return -EAGAIN;
 		}
 		ztv->tuner_freq = v;
@@ -1459,11 +1532,17 @@ int zoran_ioctl(struct video_device* dev
 	return 0;
 }
 
+static int zoran_ioctl (struct inode* inode, struct file* file, unsigned int cmd, unsigned long arg)
+{
+	return video_usercopy(inode, file, cmd, arg, zoran_do_ioctl);
+}
+
 static
-int zoran_mmap(struct vm_area_struct *vma, struct video_device* dev, const char* adr, unsigned long size)
+int zoran_mmap(struct file *file, struct vm_area_struct *vma)
 {
-	struct zoran* ztv = (struct zoran*)dev;
-	unsigned long start = (unsigned long)adr;
+	struct zoran* ztv = (struct zoran *)file->private_data;
+	unsigned long start = vma->vm_start;
+	unsigned int size = (vma->vm_end - vma->vm_start);
 	unsigned long pos;
 
 	DEBUG(printk(CARD_DEBUG "zoran_mmap(0x%p,%ld)\n",CARD,adr,size));
@@ -1485,27 +1564,54 @@ int zoran_mmap(struct vm_area_struct *vm
 	return 0;
 }
 
+static
+void zoran_vdev_release(struct video_device* vdev)
+{
+	kfree(vdev);
+}
+
+static struct file_operations zoran_fops = {
+	.open           = zoran_open,
+	.release        = zoran_close,
+	.ioctl          = zoran_ioctl,
+	.llseek         = no_llseek,
+	.read           = zoran_read,
+	.write          = zoran_write,
+	.mmap           = zoran_mmap,
+	.poll           = zoran_poll,
+};
+
 static struct video_device zr36120_template=
 {
-	.owner		= THIS_MODULE,
-	.name		= "UNSET",
-	.type		= VID_TYPE_TUNER|VID_TYPE_CAPTURE|VID_TYPE_OVERLAY,
-	.hardware	= VID_HARDWARE_ZR36120,
-	.open		= zoran_open,
-	.close		= zoran_close,
-	.read		= zoran_read,
-	.write		= zoran_write,
-	.poll		= zoran_poll,
-	.ioctl		= zoran_ioctl,
-	.mmap		= zoran_mmap,
+	.owner          = THIS_MODULE,
+	.name           = "UNSET",
+	.type           = VID_TYPE_TUNER|VID_TYPE_CAPTURE|VID_TYPE_OVERLAY,
+	.hardware       = VID_HARDWARE_ZR36120,
+	.fops           = &zoran_fops,
+	.release        = zoran_vdev_release,
 	.minor		= -1,
 };
 
 static
-int vbi_open(struct video_device *dev, int flags)
+int vbi_open(struct inode *inode, struct file *file)
 {
-	struct zoran *ztv = (struct zoran*)dev->priv;
+	struct zoran *ztv = NULL;
+	unsigned int minor = iminor(inode);
 	struct vidinfo* item;
+	int i;
+
+	if (!try_module_get(THIS_MODULE)) {
+		printk(KERN_ERR "failed to acquire lock on myself\n");
+		return -EIO;
+	}
+
+	/* find the device */
+	for (i = 0; i < zoran_cards; i++) {
+		if (zorans[i].video_dev->minor == minor) {
+			ztv = &zorans[i];
+			break;
+		}
+	}
 
 	DEBUG(printk(CARD_DEBUG "vbi_open(dev,%d)\n",CARD,flags));
 
@@ -1532,6 +1638,7 @@ int vbi_open(struct video_device *dev, i
 					item->memadr = 0;
 					item->busadr = 0;
 				}
+				module_put(THIS_MODULE);
 				return -ENOBUFS;
 			}
 		}
@@ -1541,7 +1648,7 @@ int vbi_open(struct video_device *dev, i
 	}
 
 	/* do the common part of all open's */
-	zoran_common_open(ztv, flags);
+	zoran_common_open(ztv, file->f_flags);
 
 	set_bit(STATE_VBI, &ztv->state);
 	/* start read-ahead */
@@ -1551,11 +1658,13 @@ int vbi_open(struct video_device *dev, i
 }
 
 static
-void vbi_close(struct video_device *dev)
+int vbi_close(struct inode *inode, struct file *file)
 {
-	struct zoran *ztv = (struct zoran*)dev->priv;
+	struct zoran *ztv = (struct zoran *)file->private_data;
 	struct vidinfo* item;
 
+	UNUSED(inode);
+
 	DEBUG(printk(CARD_DEBUG "vbi_close(dev)\n",CARD));
 
 	/* driver specific closure */
@@ -1578,6 +1687,9 @@ void vbi_close(struct video_device *dev)
 		item->memadr = 0;
 	}
 
+	module_put(THIS_MODULE);
+
+	return 0;
 }
 
 /*
@@ -1588,12 +1700,15 @@ void vbi_close(struct video_device *dev)
  * be released as soon as possible to prevent lock contention.
  */
 static
-long vbi_read(struct video_device* dev, char* buf, unsigned long count, int nonblock)
+ssize_t vbi_read(struct file *file, char* buf, size_t count, loff_t *offset)
 {
-	struct zoran *ztv = (struct zoran*)dev->priv;
+	struct zoran *ztv = (struct zoran *)file->private_data;
 	unsigned long max;
 	struct vidinfo* unused = 0;
 	struct vidinfo* done = 0;
+	int nonblock = file->f_flags & O_NONBLOCK;
+
+	UNUSED(offset);
 
 	DEBUG(printk(CARD_DEBUG "vbi_read(0x%p,%ld,%d)\n",CARD,buf,count,nonblock));
 
@@ -1674,6 +1789,7 @@ long vbi_read(struct video_device* dev, 
 	{
 	unsigned char* optr = buf;
 	unsigned char* eptr = buf+count;
+	unsigned long* lptr = --((unsigned long*)eptr);
 
 	/* are we beeing accessed from an old driver? */
 	if (count == 2*19*2048) {
@@ -1726,7 +1842,7 @@ long vbi_read(struct video_device* dev, 
 	/* API compliance:
 	 * place the framenumber (half fieldnr) in the last long
 	 */
-	__put_user(done->fieldnr/2, ((ulong*)eptr)[-1]);
+	__put_user(done->fieldnr/2, lptr);
 	}
 
 	/* keep the engine running */
@@ -1743,9 +1859,9 @@ out:
 }
 
 static
-unsigned int vbi_poll(struct video_device *dev, struct file *file, poll_table *wait)
+unsigned int vbi_poll(struct file *file, poll_table *wait)
 {
-	struct zoran *ztv = (struct zoran*)dev->priv;
+	struct zoran *ztv = (struct zoran *)file->private_data;
 	struct vidinfo* item;
 	unsigned int mask = 0;
 
@@ -1764,9 +1880,11 @@ unsigned int vbi_poll(struct video_devic
 }
 
 static
-int vbi_ioctl(struct video_device *dev, unsigned int cmd, void *arg)
+int vbi_do_ioctl(struct inode *inode, struct file *file, unsigned int cmd, void *arg)
 {
-	struct zoran* ztv = (struct zoran*)dev->priv;
+	struct zoran* ztv = (struct zoran *)file->private_data;
+
+	UNUSED(inode);
 
 	switch (cmd) {
 	 case VIDIOCGVBIFMT:
@@ -1819,18 +1937,30 @@ int vbi_ioctl(struct video_device *dev, 
 	return 0;
 }
 
-static struct video_device vbi_template=
+static
+int vbi_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
+{
+	return video_usercopy(inode, file, cmd, arg, vbi_do_ioctl);
+}
+
+static struct file_operations vbi_fops =
 {
-	.owner		= THIS_MODULE,
-	.name		= "UNSET",
-	.type		= VID_TYPE_CAPTURE|VID_TYPE_TELETEXT,
-	.hardware	= VID_HARDWARE_ZR36120,
 	.open		= vbi_open,
-	.close		= vbi_close,
+	.release	= vbi_close,
 	.read		= vbi_read,
 	.write		= zoran_write,
+	.llseek		= no_llseek,
 	.poll		= vbi_poll,
 	.ioctl		= vbi_ioctl,
+};
+
+static struct video_device vbi_template=
+{
+	.name		= "UNSET",
+	.type		= VID_TYPE_CAPTURE|VID_TYPE_TELETEXT,
+	.hardware	= VID_HARDWARE_ZR36120,
+	.fops		= &vbi_fops,
+	.release	= zoran_vdev_release,
 	.minor		= -1,
 };
 
@@ -1894,6 +2024,7 @@ int __init init_zoran(int card)
 {
 	struct zoran *ztv = &zorans[card];
 	int	i;
+	void *alloc_mem1, *alloc_mem2; 
 
 	/* if the given cardtype valid? */
 	if (cardtype[card]>=NRTVCARDS) {
@@ -1901,6 +2032,14 @@ int __init init_zoran(int card)
 		return -1;
 	}
 
+	if (!(alloc_mem1 = kmalloc(sizeof(struct video_device), GFP_KERNEL)) ||
+	    !(alloc_mem2 = kmalloc(sizeof(struct video_device), GFP_KERNEL))) {
+		printk(KERN_ERR "failed to kmalloc data for video_device entries\n");
+		if (alloc_mem1)
+			kfree(alloc_mem1);
+		return -1;
+	}
+
 	/* reset the zoran */
 	zrand(~ZORAN_PCI_SOFTRESET,ZORAN_PCI);
 	udelay(10);
@@ -1983,34 +2122,35 @@ int __init init_zoran(int card)
 	zrwrite(~0, ZORAN_ISR);
 
 	/*
-	 * i2c template
-	 */
-	ztv->i2c = zoran_i2c_bus_template;
-	sprintf(ztv->i2c.name,"zoran-%d",card);
-	ztv->i2c.data = ztv;
-
-	/*
 	 * Now add the template and register the device unit
 	 */
-	ztv->video_dev = zr36120_template;
-	strcpy(ztv->video_dev.name, ztv->i2c.name);
-	ztv->video_dev.priv = ztv;
-	if (video_register_device(&ztv->video_dev, VFL_TYPE_GRABBER, video_nr) < 0)
+	ztv->video_dev = alloc_mem1;
+	memcpy(ztv->video_dev, &zr36120_template, sizeof(struct video_device));
+	strcpy(ztv->video_dev->name, ztv->i2c_adapter.name);
+	ztv->video_dev->priv = ztv;
+	if (video_register_device(ztv->video_dev, VFL_TYPE_GRABBER, video_nr) < 0) {
+		kfree(alloc_mem1);
+		kfree(alloc_mem2);
 		return -1;
+	}
 
-	ztv->vbi_dev = vbi_template;
-	strcpy(ztv->vbi_dev.name, ztv->i2c.name);
-	ztv->vbi_dev.priv = ztv;
-	if (video_register_device(&ztv->vbi_dev, VFL_TYPE_VBI, vbi_nr) < 0) {
-		video_unregister_device(&ztv->video_dev);
+	ztv->vbi_dev = alloc_mem2;
+	memcpy(ztv->vbi_dev, &vbi_template, sizeof(struct video_device));
+	strcpy(ztv->vbi_dev->name, ztv->i2c_adapter.name);
+	ztv->vbi_dev->priv = ztv;
+	if (video_register_device(ztv->vbi_dev, VFL_TYPE_VBI, vbi_nr) < 0) {
+		video_unregister_device(ztv->video_dev);
+		kfree(alloc_mem1);
+		kfree(alloc_mem2);
 		return -1;
 	}
-	i2c_register_bus(&ztv->i2c);
+	ztv->i2cbr = 0;
+	zoran_i2c_load(ztv);
 
 	/* set interrupt mask - the PIN enable will be set later */
 	zrwrite(ZORAN_ICR_GIRQ0|ZORAN_ICR_GIRQ1|ZORAN_ICR_CODE, ZORAN_ICR);
 
-	printk(KERN_INFO "%s: installed %s\n",ztv->i2c.name,ztv->card->name);
+	printk(KERN_INFO "%s: installed %s\n",ztv->i2c_adapter.name,ztv->card->name);
 	return 0;
 }
 
@@ -2038,15 +2178,14 @@ void release_zoran(int max)
 		/* free it */
 		free_irq(ztv->dev->irq,ztv);
  
-    		/* unregister i2c_bus */
-		i2c_unregister_bus((&ztv->i2c));
+		zoran_i2c_unload(ztv);
 
 		/* unmap and free memory */
 		if (ztv->zoran_mem)
 			iounmap(ztv->zoran_mem);
 
-		video_unregister_device(&ztv->video_dev);
-		video_unregister_device(&ztv->vbi_dev);
+		video_unregister_device(ztv->video_dev);
+		video_unregister_device(ztv->vbi_dev);
 	}
 }
 
diff -uprNX dontdiff 2.6-clean/drivers/media/video/zr36120.h 2.6-zoran-inc/drivers/media/video/zr36120.h
--- 2.6-clean/drivers/media/video/zr36120.h	2004-05-09 23:33:19.000000000 -0300
+++ 2.6-zoran-inc/drivers/media/video/zr36120.h	2004-06-21 15:01:08.000000000 -0300
@@ -26,7 +26,8 @@
 #include <linux/types.h>
 #include <linux/wait.h>
 
-#include <linux/i2c-old.h>
+#include <linux/i2c.h>
+#include <linux/i2c-algo-bit.h>
 #include <linux/videodev.h>
 
 #include <asm/io.h>
@@ -39,9 +40,6 @@
 #define IDEBUG(x...)			/* Debug interrupt handler */
 #define PDEBUG		0		/* Debug PCI writes */
 
-/* defined in zr36120_i2c */
-extern struct i2c_bus zoran_i2c_bus_template;
-
 #define	ZORAN_MAX_FBUFFERS	2
 #define	ZORAN_MAX_FBUFFER	(768*576*2)
 #define	ZORAN_MAX_FBUFSIZE	(ZORAN_MAX_FBUFFERS*ZORAN_MAX_FBUFFER)
@@ -91,14 +89,19 @@ struct vidinfo {
 
 struct zoran 
 {
-	struct video_device video_dev;
+	struct video_device *video_dev;
 #define CARD_DEBUG	KERN_DEBUG "%s(%lu): "
 #define CARD_INFO	KERN_INFO "%s(%lu): "
 #define CARD_ERR	KERN_ERR "%s(%lu): "
-#define CARD		ztv->video_dev.name,ztv->fieldnr
+#define CARD		ztv->video_dev->name,ztv->fieldnr
 
 	/* zoran chip specific details */
-	struct i2c_bus	i2c;		/* i2c registration data	*/
+	struct i2c_adapter i2c_adapter; /* i2c registration data        */
+	struct i2c_algo_bit_data
+			i2c_algo;       /* i2c bit-banging algorithm    */
+	unsigned int    i2cbr;		/* i2c state cache              */
+	struct i2c_client* decoder,
+			* tuner;	/* pointer to the decoder+tuner */
 	struct pci_dev*	dev;		/* ptr to PCI device		*/
 	ulong		zoran_adr;	/* bus address of IO memory	*/
 	char*		zoran_mem;	/* kernel address of IO memory	*/
@@ -119,7 +122,7 @@ struct zoran 
 	wait_queue_head_t grabq;	/* grabbers queue		*/
 
 	/* VBI details */
-	struct video_device vbi_dev;
+	struct video_device *vbi_dev;
 	struct vidinfo	readinfo[2];	/* VBI data - flip buffers	*/
 	wait_queue_head_t vbiq;		/* vbi queue			*/
 
@@ -146,6 +149,12 @@ struct zoran 
 #define zrwrite(dat,adr)    writel((dat),(char *) (ztv->zoran_mem+(adr)))
 #define zrread(adr)         readl(ztv->zoran_mem+(adr))
 
+/* defined in zr36120_i2c */
+extern int zoran_i2c_load(struct zoran *ztv);
+extern void zoran_i2c_unload(struct zoran *ztv);
+extern int zoran_i2c_command(struct zoran *ztv, int cmd, void *data);
+extern int zoran_i2c_tuner_command(struct zoran *ztv, int cmd, void *data);
+
 #if PDEBUG == 0
 #define zrand(dat,adr)      zrwrite((dat) & zrread(adr), adr)
 #define zror(dat,adr)       zrwrite((dat) | zrread(adr), adr)
diff -uprNX dontdiff 2.6-clean/drivers/media/video/zr36120_i2c.c 2.6-zoran-inc/drivers/media/video/zr36120_i2c.c
--- 2.6-clean/drivers/media/video/zr36120_i2c.c	2004-05-09 23:33:22.000000000 -0300
+++ 2.6-zoran-inc/drivers/media/video/zr36120_i2c.c	2004-06-22 15:02:44.000000000 -0300
@@ -25,8 +25,8 @@
 #include <linux/video_decoder.h>
 #include <asm/uaccess.h>
 
-#include "tuner.h"
 #include "zr36120.h"
+#include <media/tuner.h>
 
 /* ----------------------------------------------------------------------- */
 /* I2C functions							   */
@@ -36,37 +36,61 @@
 
 #define I2C_DELAY   10
 
-static void i2c_setlines(struct i2c_bus *bus,int ctrl,int data)
+/* software I2C functions */
+static int zoran_i2c_getsda (void* data)
+{
+	struct zoran* ztv = (struct zoran*)data;
+	return zrread(ZORAN_I2C) & (ztv->card->swapi2c ? ZORAN_I2C_SCL : ZORAN_I2C_SDA);
+}
+
+static
+int zoran_i2c_getscl (void* data)
+{
+	struct zoran* ztv = (struct zoran*)data;
+	return zrread(ZORAN_I2C) & (ztv->card->swapi2c ? ZORAN_I2C_SDA : ZORAN_I2C_SCL);
+}
+
+static
+void zoran_i2c_setsda (void* data, int state)
 {
-	struct zoran *ztv = (struct zoran*)bus->data;
-	unsigned int b = 0;
-	if (data) b |= ztv->card->swapi2c ? ZORAN_I2C_SCL : ZORAN_I2C_SDA;
-	if (ctrl) b |= ztv->card->swapi2c ? ZORAN_I2C_SDA : ZORAN_I2C_SCL;
-	zrwrite(b, ZORAN_I2C);
-	udelay(I2C_DELAY);
-}
-
-static int i2c_getdataline(struct i2c_bus *bus)
-{
-	struct zoran *ztv = (struct zoran*)bus->data;
-	if (ztv->card->swapi2c)
-		return zrread(ZORAN_I2C) & ZORAN_I2C_SCL;
-	return zrread(ZORAN_I2C) & ZORAN_I2C_SDA;
+	struct zoran* ztv = (struct zoran*)data;
+	if (state)
+		ztv->i2cbr |= (ztv->card->swapi2c ? ZORAN_I2C_SCL : ZORAN_I2C_SDA);
+	else
+		ztv->i2cbr &= ~(ztv->card->swapi2c ? ZORAN_I2C_SCL : ZORAN_I2C_SDA);
+	zrwrite(ztv->i2cbr, ZORAN_I2C);
 }
 
 static
-void attach_inform(struct i2c_bus *bus, int id)
+void zoran_i2c_setscl (void* data, int state)
 {
-	struct zoran *ztv = (struct zoran*)bus->data;
+	struct zoran* ztv = (struct zoran*)data;
+	if (state)
+		ztv->i2cbr |= (ztv->card->swapi2c ? ZORAN_I2C_SDA : ZORAN_I2C_SCL);
+	else
+		ztv->i2cbr &= ~(ztv->card->swapi2c ? ZORAN_I2C_SDA : ZORAN_I2C_SCL);
+	zrwrite(ztv->i2cbr, ZORAN_I2C);
+}
+
+static
+int attach_inform(struct i2c_client *client)
+{
+	struct zoran *ztv = (struct zoran*)i2c_get_adapdata(client->adapter);
 	struct video_decoder_capability dc;
 	int rv;
 
-	switch (id) {
-	 case I2C_DRIVERID_VIDEODECODER:
+	if (ztv->users > 0) {
+		printk(KERN_ERR "zr36120: cannot connect i2c devices while "
+			       "running");
+		return -EBUSY;
+	}
+
+	switch (client->driver->id) {
+	 case I2C_DRIVERID_SAA7110:
 		DEBUG(printk(CARD_INFO "decoder attached\n",CARD));
 
 		/* fetch the capabilites of the decoder */
-		rv = i2c_control_device(&ztv->i2c, I2C_DRIVERID_VIDEODECODER, DECODER_GET_CAPABILITIES, &dc);
+		rv = zoran_i2c_command(ztv, DECODER_GET_CAPABILITIES, &dc);
 		if (rv) {
 			DEBUG(printk(CARD_DEBUG "decoder is not V4L aware!\n",CARD));
 			break;
@@ -84,23 +108,25 @@ void attach_inform(struct i2c_bus *bus, 
 		DEBUG(printk(CARD_INFO "tuner attached\n",CARD));
 		if (ztv->tuner_type >= 0)
 		{
-			if (i2c_control_device(&ztv->i2c,I2C_DRIVERID_TUNER,TUNER_SET_TYPE,&ztv->tuner_type)<0)
+			if (zoran_i2c_command(ztv, TUNER_SET_TYPE, &ztv->tuner_type)<0)
 			DEBUG(printk(CARD_INFO "attach_inform; tuner won't be set to type %d\n",CARD,ztv->tuner_type));
 		}
 		break;
 	 default:
 		DEBUG(printk(CARD_INFO "attach_inform; unknown device id=%d\n",CARD,id));
-		break;
+		return -1;
 	}
+
+	return 0;
 }
 
 static
-void detach_inform(struct i2c_bus *bus, int id)
+int detach_inform(struct i2c_client *client)
 {
-	struct zoran *ztv = (struct zoran*)bus->data;
+	struct zoran *ztv = (struct zoran *)i2c_get_adapdata(client->adapter);
 
-	switch (id) {
-	 case I2C_DRIVERID_VIDEODECODER:
+	switch (client->driver->id) {
+	 case I2C_DRIVERID_SAA7110:
 		ztv->have_decoder = 0;
 		DEBUG(printk(CARD_INFO "decoder detached\n",CARD));
 		break;
@@ -112,21 +138,61 @@ void detach_inform(struct i2c_bus *bus, 
 		DEBUG(printk(CARD_INFO "detach_inform; unknown device id=%d\n",CARD,id));
 		break;
 	}
+
+	return 0;
 }
 
-struct i2c_bus zoran_i2c_bus_template =
+static struct i2c_algo_bit_data zoran_i2c_bit_data_template = {
+	.setsda = zoran_i2c_setsda,
+	.setscl = zoran_i2c_setscl,
+	.getsda = zoran_i2c_getsda,
+	.getscl = zoran_i2c_getscl,
+	.udelay = I2C_DELAY,
+	.mdelay = 0,
+	.timeout = 100,
+};
+
+static struct i2c_adapter zoran_i2c_adapter_template = {
+	.name = "ZR36120",
+	.id = I2C_HW_B_ZR36120,
+	.algo = NULL,
+	.client_register = attach_inform,
+	.client_unregister = detach_inform,
+};
+
+int zoran_i2c_load (struct zoran *ztv)
 {
-	"ZR36120",
-	I2C_BUSID_ZORAN,
-	NULL,
+	memcpy(&ztv->i2c_algo, &zoran_i2c_bit_data_template,
+		sizeof(struct i2c_algo_bit_data));
+	ztv->i2c_algo.data = ztv;
 
-	SPIN_LOCK_UNLOCKED,
+	memcpy(&ztv->i2c_adapter, &zoran_i2c_adapter_template,
+		sizeof(struct i2c_adapter));
+	i2c_set_adapdata(&ztv->i2c_adapter, ztv);
 
-	attach_inform,
-	detach_inform,
+	ztv->i2c_adapter.algo_data = &ztv->i2c_algo;
+
+	return i2c_bit_add_bus(&ztv->i2c_adapter);
+}
+
+void zoran_i2c_unload (struct zoran *ztv)
+{
+	i2c_bit_del_bus(&ztv->i2c_adapter);
+}
+
+int zoran_i2c_command (struct zoran *ztv, int cmd, void *data)
+{
+	if (!ztv->decoder)
+		return -EIO;
+
+	return ztv->decoder->driver->command(ztv->decoder, cmd, data);
+}
+
+int zoran_i2c_tuner_command (struct zoran *ztv, int cmd, void *data)
+{
+	if (!ztv->tuner)
+		return -EIO;
+
+	return ztv->tuner->driver->command(ztv->tuner, cmd, data);
+}
 
-	i2c_setlines,
-	i2c_getdataline,
-	NULL,
-	NULL
-};
diff -uprNX dontdiff 2.6-clean/include/linux/i2c-id.h 2.6-zoran-inc/include/linux/i2c-id.h
--- 2.6-clean/include/linux/i2c-id.h	2004-06-16 08:16:46.000000000 -0300
+++ 2.6-zoran-inc/include/linux/i2c-id.h	2004-06-21 15:01:08.000000000 -0300
@@ -95,7 +95,6 @@
 #define I2C_DRIVERID_DS1307	47     /* DS1307 real time clock	*/
 #define I2C_DRIVERID_ADV7175	48     /* ADV 7175/7176 video encoder	*/
 #define I2C_DRIVERID_SAA7114	49	/* video decoder		*/
-#define I2C_DRIVERID_ZR36120	50     /* Zoran 36120 video encoder	*/
 #define I2C_DRIVERID_24LC32A	51	/* Microchip 24LC32A 32k EEPROM	*/
 #define I2C_DRIVERID_STM41T00	52	/* real time clock		*/
 #define I2C_DRIVERID_UDA1342	53	/* UDA1342 audio codec		*/
@@ -225,6 +224,7 @@
 #define I2C_HW_B_IXP4XX 0x17	/* GPIO on IXP4XX systems		*/
 #define I2C_HW_B_S3VIA	0x18	/* S3Via ProSavage adapter		*/
 #define I2C_HW_B_ZR36067 0x19	/* Zoran-36057/36067 based boards	*/
+#define I2C_HW_B_ZR36120 0x20	/* Zoran 36120/36125 based boards	*/
 
 /* --- PCF 8584 based algorithms					*/
 #define I2C_HW_P_LP	0x00	/* Parallel port interface		*/
diff -uprNX dontdiff 2.6-clean/Module.symvers 2.6-zoran-inc/Module.symvers
--- 2.6-clean/Module.symvers	1969-12-31 21:00:00.000000000 -0300
+++ 2.6-zoran-inc/Module.symvers	2004-06-21 15:41:21.000000000 -0300
@@ -0,0 +1,2831 @@
+0x00000000	firmware_unregister	vmlinux
+0x00000000	set_anon_super	vmlinux
+0x00000000	kmem_cache_alloc	vmlinux
+0x00000000	scsi_sense_key_string	drivers/scsi/scsi_mod
+0x00000000	i2c_put_adapter	drivers/i2c/i2c-core
+0x00000000	unblock_all_signals	vmlinux
+0x00000000	bttv_i2c_call	drivers/media/video/bttv
+0x00000000	csum_partial	vmlinux
+0x00000000	fat__get_entry	fs/fat/fat
+0x00000000	videobuf_queue_cancel	drivers/media/video/video-buf
+0x00000000	rpciod_up	net/sunrpc/sunrpc
+0x00000000	mixer_devs	sound/oss/sound
+0x00000000	cap_bset	vmlinux
+0x00000000	device_del	vmlinux
+0x00000000	device_add	vmlinux
+0x00000000	remap_page_range	vmlinux
+0x00000000	profile_event_unregister	vmlinux
+0x00000000	sound_install_audiodrv	sound/oss/sound
+0x00000000	snd_trident_clear_voices	sound/pci/trident/snd-trident
+0x00000000	i2c_add_driver	drivers/i2c/i2c-core
+0x00000000	krb5_decrypt	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	sock_no_mmap	vmlinux
+0x00000000	sockfd_lookup	vmlinux
+0x00000000	fb_validate_mode	vmlinux
+0x00000000	unregister_sound_synth	sound/soundcore
+0x00000000	scsi_get_command	drivers/scsi/scsi_mod
+0x00000000	g_token_size	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	copy_to_user	vmlinux
+0x00000000	default_wake_function	vmlinux
+0x00000000	videobuf_dma_init_overlay	drivers/media/video/video-buf
+0x00000000	atapi_input_bytes	vmlinux
+0x00000000	pci_bus_read_config_byte	vmlinux
+0x00000000	iget_locked	vmlinux
+0x00000000	class_interface_register	vmlinux
+0x00000000	test_clear_page_dirty	vmlinux
+0x00000000	enable_timer_nmi_watchdog	vmlinux
+0x00000000	rpc_new_task	net/sunrpc/sunrpc
+0x00000000	snd_ctl_new	sound/core/snd
+0x00000000	class_interface_unregister	vmlinux
+0x00000000	pnp_register_independent_option	vmlinux
+0x00000000	xdr_encode_netobj	net/sunrpc/sunrpc
+0x00000000	snd_power_wait	sound/core/snd
+0x00000000	tty_register_device	vmlinux
+0x00000000	usb_bus_list_lock	drivers/usb/core/usbcore
+0x00000000	find_bus	vmlinux
+0x00000000	steal_locks	vmlinux
+0x00000000	blk_congestion_wait	vmlinux
+0x00000000	laptop_mode	vmlinux
+0x00000000	end_page_writeback	vmlinux
+0x00000000	skb_recv_datagram	vmlinux
+0x00000000	class_get	vmlinux
+0x00000000	generic_file_readonly_mmap	vmlinux
+0x00000000	register_console	vmlinux
+0x00000000	sound_alloc_audiodev	sound/oss/sound
+0x00000000	ip_finish_output	vmlinux
+0x00000000	sock_no_socketpair	vmlinux
+0x00000000	snd_pcm_hw_param_value_max	sound/core/snd-pcm
+0x00000000	__ide_dma_timeout	vmlinux
+0x00000000	ide_abort	vmlinux
+0x00000000	pnp_register_port_resource	vmlinux
+0x00000000	task_nice	vmlinux
+0x00000000	fat_new_dir	fs/fat/fat
+0x00000000	cdrom_is_mrw	drivers/cdrom/cdrom
+0x00000000	lock_may_read	vmlinux
+0x00000000	snd_card_free	sound/core/snd
+0x00000000	ide_fix_driveid	vmlinux
+0x00000000	load_nls	vmlinux
+0x00000000	bttv_sub_register	drivers/media/video/bttv
+0x00000000	__ide_dma_test_irq	vmlinux
+0x00000000	sound_close_dma	sound/oss/sound
+0x00000000	posix_locks_deadlock	vmlinux
+0x00000000	free_dma	vmlinux
+0x00000000	xdr_init_decode	net/sunrpc/sunrpc
+0x00000000	device_unregister	vmlinux
+0x00000000	videobuf_mmap_free	drivers/media/video/video-buf
+0x00000000	ezusb_set_reset	drivers/usb/serial/usbserial
+0x00000000	DMAbuf_outputintr	sound/oss/sound
+0x00000000	scsicam_bios_param	drivers/scsi/scsi_mod
+0x00000000	I_BDEV	vmlinux
+0x00000000	find_or_create_page	vmlinux
+0x00000000	usbvideo_register	drivers/usb/media/usbvideo
+0x00000000	usb_sg_wait	drivers/usb/core/usbcore
+0x00000000	usb_sg_init	drivers/usb/core/usbcore
+0x00000000	usb_buffer_unmap_sg	drivers/usb/core/usbcore
+0x00000000	scsi_reset_provider	drivers/scsi/scsi_mod
+0x00000000	invalidate_bdev	vmlinux
+0x00000000	scsi_extd_sense_format	drivers/scsi/scsi_mod
+0x00000000	num_registered_fb	vmlinux
+0x00000000	xdr_buf_from_iov	net/sunrpc/sunrpc
+0x00000000	class_device_initialize	vmlinux
+0x00000000	pci_bus_write_config_dword	vmlinux
+0x00000000	parport_wait_peripheral	drivers/parport/parport
+0x00000000	blk_cleanup_queue	vmlinux
+0x00000000	tty_hung_up_p	vmlinux
+0x00000000	__blk_attempt_remerge	vmlinux
+0x00000000	usb_driver_release_interface	drivers/usb/core/usbcore
+0x00000000	ide_dma_intr	vmlinux
+0x00000000	mpage_writepages	vmlinux
+0x00000000	write_one_page	vmlinux
+0x00000000	nlmsvc_ops	fs/lockd/lockd
+0x00000000	inet_add_protocol	vmlinux
+0x00000000	pnp_find_dev	vmlinux
+0x00000000	sync_blockdev	vmlinux
+0x00000000	rtnl_unlock	vmlinux
+0x00000000	sock_rfree	vmlinux
+0x00000000	freeze_bdev	vmlinux
+0x00000000	bd_release	vmlinux
+0x00000000	param_get_long	vmlinux
+0x00000000	cpia_unregister_camera	drivers/media/video/cpia
+0x00000000	posix_acl_alloc	vmlinux
+0x00000000	num_synths	sound/oss/sound
+0x00000000	parport_daisy_init	drivers/parport/parport
+0x00000000	skb_copy_datagram_iovec	vmlinux
+0x00000000	__kfree_skb	vmlinux
+0x00000000	pci_find_parent_resource	vmlinux
+0x00000000	snd_info_unregister	sound/core/snd
+0x00000000	scsi_allocate_request	drivers/scsi/scsi_mod
+0x00000000	ip_defrag	vmlinux
+0x00000000	skb_copy_datagram	vmlinux
+0x00000000	generic_file_aio_read	vmlinux
+0x00000000	init_module	vmlinux
+0x00000000	free_netdev	vmlinux
+0x00000000	fb_move_buf_aligned	vmlinux
+0x00000000	register_binfmt	vmlinux
+0x00000000	zlib_inflateIncomp	lib/zlib_inflate/zlib_inflate
+0x00000000	scsi_host_get	drivers/scsi/scsi_mod
+0x00000000	gss_mech_get_by_pseudoflavor	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	__serio_unregister_port	vmlinux
+0x00000000	idr_pre_get	vmlinux
+0x00000000	sigprocmask	vmlinux
+0x00000000	parport_ieee1284_epp_write_addr	drivers/parport/parport
+0x00000000	parport_ieee1284_ecp_write_addr	drivers/parport/parport
+0x00000000	ata_vlb_sync	vmlinux
+0x00000000	do_mmap_pgoff	vmlinux
+0x00000000	i2c_master_recv	drivers/i2c/i2c-core
+0x00000000	sysctl_tcp_rmem	vmlinux
+0x00000000	sock_no_sendmsg	vmlinux
+0x00000000	serio_register_device	vmlinux
+0x00000000	isapnp_write_word	vmlinux
+0x00000000	vfs_unlink	vmlinux
+0x00000000	snd_seq_device_unregister_driver	sound/core/seq/snd-seq-device
+0x00000000	bus_rescan_devices	vmlinux
+0x00000000	put_tty_driver	vmlinux
+0x00000000	ioport_resource	vmlinux
+0x00000000	rtnl_lock	vmlinux
+0x00000000	fonts	vmlinux
+0x00000000	system_state	vmlinux
+0x00000000	rpciod_down	net/sunrpc/sunrpc
+0x00000000	ac97_read_proc	sound/oss/ac97_codec
+0x00000000	csum_partial_copy_fromiovecend	vmlinux
+0x00000000	con_set_default_unimap	vmlinux
+0x00000000	btcx_align	drivers/media/video/btcx-risc
+0x00000000	dev_get_by_index	vmlinux
+0x00000000	ioctl_by_bdev	vmlinux
+0x00000000	class_device_add	vmlinux
+0x00000000	generic_delete_inode	vmlinux
+0x00000000	sound_unload_synthdev	sound/oss/sound
+0x00000000	blk_run_queue	vmlinux
+0x00000000	kref_put	vmlinux
+0x00000000	i2c_smbus_write_i2c_block_data	drivers/i2c/i2c-core
+0x00000000	tcp_unhash	vmlinux
+0x00000000	alloc_skb	vmlinux
+0x00000000	ide_set_xfer_rate	vmlinux
+0x00000000	is_sony_vaio_laptop	vmlinux
+0x00000000	snd_rawmidi_drain_output	sound/core/snd-rawmidi
+0x00000000	wait_for_ready	vmlinux
+0x00000000	bus_remove_file	vmlinux
+0x00000000	snd_ac97_pcm_open	sound/pci/ac97/snd-ac97-codec
+0x00000000	in_dev_finish_destroy	vmlinux
+0x00000000	secure_tcp_sequence_number	vmlinux
+0x00000000	bio_map_user	vmlinux
+0x00000000	videocodec_detach	drivers/media/video/videocodec
+0x00000000	__brelse	vmlinux
+0x00000000	scsi_device_set_state	drivers/scsi/scsi_mod
+0x00000000	mark_buffer_async_write	vmlinux
+0x00000000	print_msg	drivers/scsi/scsi_mod
+0x00000000	inet_sock_destruct	vmlinux
+0x00000000	blk_unregister_region	vmlinux
+0x00000000	unregister_nls	vmlinux
+0x00000000	__serio_register_port	vmlinux
+0x00000000	snd_ctl_unregister_ioctl	sound/core/snd
+0x00000000	parport_claim	drivers/parport/parport
+0x00000000	add_mouse_randomness	vmlinux
+0x00000000	malloc_sizes	vmlinux
+0x00000000	netpoll_send_skb	vmlinux
+0x00000000	netpoll_trap	vmlinux
+0x00000000	agp_remove_bridge	vmlinux
+0x00000000	radix_tree_gang_lookup	vmlinux
+0x00000000	register_nls	vmlinux
+0x00000000	probe_irq_on	vmlinux
+0x00000000	usbvideo_HexDump	drivers/usb/media/usbvideo
+0x00000000	i2c_smbus_write_block_data	drivers/i2c/i2c-core
+0x00000000	btcx_riscmem_free	drivers/media/video/btcx-risc
+0x00000000	tcp_parse_options	vmlinux
+0x00000000	EISA_bus	vmlinux
+0x00000000	elv_remove_request	vmlinux
+0x00000000	rpc_unlink	net/sunrpc/sunrpc
+0x00000000	module_refcount	vmlinux
+0x00000000	console_unblank	vmlinux
+0x00000000	SELECT_DRIVE	vmlinux
+0x00000000	pci_enable_device_bars	vmlinux
+0x00000000	snd_timer_global_new	sound/core/snd-timer
+0x00000000	___pskb_trim	vmlinux
+0x00000000	strsep	vmlinux
+0x00000000	iomem_resource	vmlinux
+0x00000000	__get_user_4	vmlinux
+0x00000000	usb_serial_register	drivers/usb/serial/usbserial
+0x00000000	DMAbuf_start_dma	sound/oss/sound
+0x00000000	snd_ctl_add	sound/core/snd
+0x00000000	vfs_create	vmlinux
+0x00000000	send_sigqueue	vmlinux
+0x00000000	RingQueue_Dequeue	drivers/usb/media/usbvideo
+0x00000000	ide_driveid_update	vmlinux
+0x00000000	sb_min_blocksize	vmlinux
+0x00000000	scsi_device_types	drivers/scsi/scsi_mod
+0x00000000	register_module_notifier	vmlinux
+0x00000000	serial8250_resume_port	vmlinux
+0x00000000	__sysrq_put_key_op	vmlinux
+0x00000000	__sysrq_get_key_op	vmlinux
+0x00000000	i2c_control	drivers/i2c/i2c-core
+0x00000000	unregister_sysctl_table	vmlinux
+0x00000000	del_gendisk	vmlinux
+0x00000000	isapnp_write_dword	vmlinux
+0x00000000	dcache_lock	vmlinux
+0x00000000	block_write_full_page	vmlinux
+0x00000000	videobuf_dma_pci_map	drivers/media/video/video-buf
+0x00000000	snd_pcm_format_unsigned	sound/core/snd-pcm
+0x00000000	lockd_up	fs/lockd/lockd
+0x00000000	__skb_linearize	vmlinux
+0x00000000	ide_add_setting	vmlinux
+0x00000000	sock_no_setsockopt	vmlinux
+0x00000000	sock_no_getsockopt	vmlinux
+0x00000000	__blockdev_direct_IO	vmlinux
+0x00000000	snd_device_new	sound/core/snd
+0x00000000	i2c_adapter_id	drivers/i2c/i2c-core
+0x00000000	generic_block_bmap	vmlinux
+0x00000000	__symbol_get	vmlinux
+0x00000000	snd_pcm_hw_constraint_list	sound/core/snd-pcm
+0x00000000	kmem_cache_free	vmlinux
+0x00000000	lookup_hash	vmlinux
+0x00000000	__request_region	vmlinux
+0x00000000	prepare_to_wait	vmlinux
+0x00000000	bdev_read_only	vmlinux
+0x00000000	agp_memory_reserved	vmlinux
+0x00000000	fat_date_unix2dos	fs/fat/fat
+0x00000000	sock_wfree	vmlinux
+0x00000000	eisa_driver_unregister	vmlinux
+0x00000000	test_set_page_writeback	vmlinux
+0x00000000	snd_ac97_pcm_assign	sound/pci/ac97/snd-ac97-codec
+0x00000000	inet_family_ops	vmlinux
+0x00000000	qdisc_destroy	vmlinux
+0x00000000	files_stat	vmlinux
+0x00000000	truncate_inode_pages	vmlinux
+0x00000000	snd_util_mem_alloc	sound/synth/snd-util-mem
+0x00000000	input_flush_device	vmlinux
+0x00000000	num_physpages	vmlinux
+0x00000000	class_device_register	vmlinux
+0x00000000	sysfs_create_file	vmlinux
+0x00000000	seq_lseek	vmlinux
+0x00000000	strpbrk	vmlinux
+0x00000000	midi_synth_set_instr	sound/oss/sound
+0x00000000	snd_info_get_str	sound/core/snd
+0x00000000	cdrom_get_last_written	drivers/cdrom/cdrom
+0x00000000	cache_fresh	net/sunrpc/sunrpc
+0x00000000	cache_flush	net/sunrpc/sunrpc
+0x00000000	recal_intr	vmlinux
+0x00000000	set_disk_ro	vmlinux
+0x00000000	journal_invalidatepage	vmlinux
+0x00000000	do_softirq	vmlinux
+0x00000000	abi_traceflg	vmlinux
+0x00000000	video_device_release	drivers/media/video/videodev
+0x00000000	tcp_create_openreq_child	vmlinux
+0x00000000	qdisc_tree_lock	vmlinux
+0x00000000	scsi_io_completion	drivers/scsi/scsi_mod
+0x00000000	skb_queue_head	vmlinux
+0x00000000	sk_reset_timer	vmlinux
+0x00000000	videobuf_querybuf	drivers/media/video/video-buf
+0x00000000	mii_ethtool_sset	drivers/net/mii
+0x00000000	mii_ethtool_gset	drivers/net/mii
+0x00000000	release_sock	vmlinux
+0x00000000	class_remove_file	vmlinux
+0x00000000	agp_backend_acquire	vmlinux
+0x00000000	drive_info	vmlinux
+0x00000000	snd_pcm_hw_constraint_msbits	sound/core/snd-pcm
+0x00000000	sync_inode	vmlinux
+0x00000000	unmap_underlying_metadata	vmlinux
+0x00000000	input_register_device	vmlinux
+0x00000000	__invalidate_device	vmlinux
+0x00000000	snd_midi_event_reset_encode	sound/core/seq/snd-seq-midi-event
+0x00000000	sysctl_tcp_low_latency	vmlinux
+0x00000000	blk_queue_free_tags	vmlinux
+0x00000000	blk_max_low_pfn	vmlinux
+0x00000000	simple_sync_file	vmlinux
+0x00000000	notifier_chain_unregister	vmlinux
+0x00000000	register_sysctl_table	vmlinux
+0x00000000	csum_partial_copy_generic	vmlinux
+0x00000000	request_irq	vmlinux
+0x00000000	tty_flip_buffer_push	vmlinux
+0x00000000	cap_task_reparent_to_init	vmlinux
+0x00000000	swapper_space	vmlinux
+0x00000000	midi_synth_close	sound/oss/sound
+0x00000000	uart_get_divisor	vmlinux
+0x00000000	msleep	vmlinux
+0x00000000	unregister_netdev	vmlinux
+0x00000000	__bforget	vmlinux
+0x00000000	xdr_reserve_space	net/sunrpc/sunrpc
+0x00000000	sock_no_listen	vmlinux
+0x00000000	task_out_intr	vmlinux
+0x00000000	get_random_bytes	vmlinux
+0x00000000	probe_irq_off	vmlinux
+0x00000000	rpcauth_unregister	net/sunrpc/sunrpc
+0x00000000	sock_no_poll	vmlinux
+0x00000000	kmem_find_general_cachep	vmlinux
+0x00000000	snd_pcm_format_size	sound/core/snd-pcm
+0x00000000	vlan_ioctl_set	vmlinux
+0x00000000	iov_shorten	vmlinux
+0x00000000	cap_inode_setxattr	vmlinux
+0x00000000	remove_arg_zero	vmlinux
+0x00000000	snd_opl3_create	sound/drivers/opl3/snd-opl3-lib
+0x00000000	nvram_check_checksum	drivers/char/nvram
+0x00000000	i2c_attach_client	drivers/i2c/i2c-core
+0x00000000	device_bind_driver	vmlinux
+0x00000000	snd_pcm_playback_ready	sound/core/snd-pcm
+0x00000000	mb_cache_entry_alloc	vmlinux
+0x00000000	rpc_wake_up_status	net/sunrpc/sunrpc
+0x00000000	sound_class	sound/soundcore
+0x00000000	snd_seq_kernel_client_dispatch	sound/core/seq/snd-seq
+0x00000000	put_cmsg	vmlinux
+0x00000000	skb_free_datagram	vmlinux
+0x00000000	filp_close	vmlinux
+0x00000000	svcauth_gss_register_pseudoflavor	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	tty_std_termios	vmlinux
+0x00000000	ether_setup	vmlinux
+0x00000000	elv_requeue_request	vmlinux
+0x00000000	device_create_file	vmlinux
+0x00000000	isapnp_read_dword	vmlinux
+0x00000000	__break_lease	vmlinux
+0x00000000	param_set_bool	vmlinux
+0x00000000	force_sig	vmlinux
+0x00000000	parport_ieee1284_read_nibble	drivers/parport/parport
+0x00000000	fat_truncate	fs/fat/fat
+0x00000000	d_path	vmlinux
+0x00000000	fsync_buffers_list	vmlinux
+0x00000000	ac97_register_driver	sound/oss/ac97_codec
+0x00000000	system_bus_clock	vmlinux
+0x00000000	ide_pci_setup_ports	vmlinux
+0x00000000	igrab	vmlinux
+0x00000000	snd_pcm_open_substream	sound/core/snd-pcm
+0x00000000	ir_codes_empty	drivers/media/common/ir-common
+0x00000000	per_cpu__softnet_data	vmlinux
+0x00000000	sock_recvmsg	vmlinux
+0x00000000	system_utsname	vmlinux
+0x00000000	snd_device_free	sound/core/snd
+0x00000000	snd_ac97_update	sound/pci/ac97/snd-ac97-codec
+0x00000000	linkwatch_fire_event	vmlinux
+0x00000000	snd_pcm_hw_constraints_complete	sound/core/snd-pcm
+0x00000000	rpc_queue_upcall	net/sunrpc/sunrpc
+0x00000000	page_follow_link	vmlinux
+0x00000000	snd_pcm_period_elapsed	sound/core/snd-pcm
+0x00000000	__ide_dma_begin	vmlinux
+0x00000000	uart_write_wakeup	vmlinux
+0x00000000	pci_dac_set_dma_mask	vmlinux
+0x00000000	pci_bus_read_config_word	vmlinux
+0x00000000	skb_append	vmlinux
+0x00000000	bitmap_shift_left	vmlinux
+0x00000000	sget	vmlinux
+0x00000000	memset	vmlinux
+0x00000000	cdrom_media_changed	drivers/cdrom/cdrom
+0x00000000	blk_queue_max_hw_segments	vmlinux
+0x00000000	videobuf_dma_free	drivers/media/video/video-buf
+0x00000000	print_command	drivers/scsi/scsi_mod
+0x00000000	snd_seq_simple_id	sound/core/seq/instr/snd-ainstr-simple
+0x00000000	unregister_cdrom	drivers/cdrom/cdrom
+0x00000000	__dev_get_by_flags	vmlinux
+0x00000000	register_chrdev	vmlinux
+0x00000000	agp3_generic_tlbflush	vmlinux
+0x00000000	idr_get_new_above	vmlinux
+0x00000000	cap_capable	vmlinux
+0x00000000	rpc_create_client	net/sunrpc/sunrpc
+0x00000000	sound_unload_mididev	sound/oss/sound
+0x00000000	scsi_logging_level	drivers/scsi/scsi_mod
+0x00000000	__ide_do_rw_disk	vmlinux
+0x00000000	ide_unregister_subdriver	vmlinux
+0x00000000	register_sound_dsp	sound/soundcore
+0x00000000	__dev_get	vmlinux
+0x00000000	misc_register	vmlinux
+0x00000000	may_umount_tree	vmlinux
+0x00000000	block_invalidatepage	vmlinux
+0x00000000	synth_devs	sound/oss/sound
+0x00000000	__release_sock	vmlinux
+0x00000000	mtrr_add	vmlinux
+0x00000000	loop_unregister_transfer	drivers/block/loop
+0x00000000	unregister_serial	vmlinux
+0x00000000	xdr_decode_netobj	net/sunrpc/sunrpc
+0x00000000	ethtool_op_set_tso	vmlinux
+0x00000000	pci_restore_state	vmlinux
+0x00000000	do_generic_mapping_read	vmlinux
+0x00000000	pcibios_get_irq_routing_table	vmlinux
+0x00000000	midi_synth_open	sound/oss/sound
+0x00000000	inode_set_bytes	vmlinux
+0x00000000	inode_sub_bytes	vmlinux
+0x00000000	videobuf_queue_init	drivers/media/video/video-buf
+0x00000000	arp_xmit	vmlinux
+0x00000000	neigh_add	vmlinux
+0x00000000	__dev_get_by_index	vmlinux
+0x00000000	__dev_getfirstbyhwtype	vmlinux
+0x00000000	agp_enable	vmlinux
+0x00000000	__create_workqueue	vmlinux
+0x00000000	securebits	vmlinux
+0x00000000	qword_add	net/sunrpc/sunrpc
+0x00000000	snd_timer_interrupt	sound/core/snd-timer
+0x00000000	pci_proc_attach_device	vmlinux
+0x00000000	sysctl_tcp_ecn	vmlinux
+0x00000000	ethtool_op_set_tx_csum	vmlinux
+0x00000000	generic_mii_ioctl	drivers/net/mii
+0x00000000	usb_bulk_msg	drivers/usb/core/usbcore
+0x00000000	blk_attempt_remerge	vmlinux
+0x00000000	videobuf_mmap_mapper	drivers/media/video/video-buf
+0x00000000	midi_synth_send_sysex	sound/oss/sound
+0x00000000	parport_find_class	drivers/parport/parport
+0x00000000	unregister_framebuffer	vmlinux
+0x00000000	rb_prev	vmlinux
+0x00000000	snd_malloc_pages_fallback	sound/core/snd-page-alloc
+0x00000000	__const_udelay	vmlinux
+0x00000000	snd_ac97_resume	sound/pci/ac97/snd-ac97-codec
+0x00000000	handle_sysrq	vmlinux
+0x00000000	utf8_mbstowcs	vmlinux
+0x00000000	register_reboot_notifier	vmlinux
+0x00000000	tcp_sockets_allocated	vmlinux
+0x00000000	scsi_device_quiesce	drivers/scsi/scsi_mod
+0x00000000	snd_pcm_hw_param_first	sound/core/snd-pcm
+0x00000000	snd_pcm_new	sound/core/snd-pcm
+0x00000000	con_copy_unimap	vmlinux
+0x00000000	block_commit_write	vmlinux
+0x00000000	class_device_remove_file	vmlinux
+0x00000000	journal_get_undo_access	vmlinux
+0x00000000	snd_midi_channel_init	sound/core/seq/snd-seq-midi-emul
+0x00000000	fb_set_suspend	vmlinux
+0x00000000	ide_spin_wait_hwgroup	vmlinux
+0x00000000	dput	vmlinux
+0x00000000	__usb_reset_device	drivers/usb/core/usbcore
+0x00000000	rpc_proc_unregister	net/sunrpc/sunrpc
+0x00000000	rpc_delay	net/sunrpc/sunrpc
+0x00000000	tcp_v4_remember_stamp	vmlinux
+0x00000000	device_power_up	vmlinux
+0x00000000	nobh_commit_write	vmlinux
+0x00000000	sk_free	vmlinux
+0x00000000	pnp_assign_resources	vmlinux
+0x00000000	abi_defhandler_lcall7	vmlinux
+0x00000000	__down_failed_trylock	vmlinux
+0x00000000	sound_timer_init	sound/oss/sound
+0x00000000	parport_set_timeout	drivers/parport/parport
+0x00000000	pci_bus_max_busnr	vmlinux
+0x00000000	kobject_init	vmlinux
+0x00000000	flush_workqueue	vmlinux
+0x00000000	sleep_on	vmlinux
+0x00000000	scsi_wait_req	drivers/scsi/scsi_mod
+0x00000000	parport_read	drivers/parport/parport
+0x00000000	proc_bus	vmlinux
+0x00000000	simple_lookup	vmlinux
+0x00000000	usb_match_id	drivers/usb/core/usbcore
+0x00000000	netlink_register_notifier	vmlinux
+0x00000000	unlock_rename	vmlinux
+0x00000000	__copy_from_user_ll	vmlinux
+0x00000000	snd_opl3_timer_new	sound/drivers/opl3/snd-opl3-lib
+0x00000000	simple_rmdir	vmlinux
+0x00000000	do_execve	vmlinux
+0x00000000	scsi_block_requests	drivers/scsi/scsi_mod
+0x00000000	i2c_del_adapter	drivers/i2c/i2c-core
+0x00000000	unregister_sound_special	sound/soundcore
+0x00000000	fat_dir_empty	fs/fat/fat
+0x00000000	cdev_alloc	vmlinux
+0x00000000	__getblk	vmlinux
+0x00000000	svc_exit_thread	net/sunrpc/sunrpc
+0x00000000	rpc_clnt_sigunmask	net/sunrpc/sunrpc
+0x00000000	rtc_register	vmlinux
+0x00000000	current_kernel_time	vmlinux
+0x00000000	usb_reset_device	drivers/usb/core/usbcore
+0x00000000	netlink_set_nonroot	vmlinux
+0x00000000	locks_copy_lock	vmlinux
+0x00000000	netpoll_poll	vmlinux
+0x00000000	sock_create_kern	vmlinux
+0x00000000	sound_unload_mixerdev	sound/oss/sound
+0x00000000	snd_trident_synth_bzero	sound/pci/trident/snd-trident
+0x00000000	eisa_bus_type	vmlinux
+0x00000000	snd_timer_open	sound/core/snd-timer
+0x00000000	snd_rawmidi_transmit_empty	sound/core/snd-rawmidi
+0x00000000	fb_set_cmap	vmlinux
+0x00000000	pci_unregister_driver	vmlinux
+0x00000000	radix_tree_tagged	vmlinux
+0x00000000	unload_nls	vmlinux
+0x00000000	pnp_register_card_driver	vmlinux
+0x00000000	__scsi_device_lookup	drivers/scsi/scsi_mod
+0x00000000	gss_mech_get	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	lock_sock	vmlinux
+0x00000000	ide_dma_enable	vmlinux
+0x00000000	memcpy	vmlinux
+0x00000000	bttv_gpio_enable	drivers/media/video/bttv
+0x00000000	__ide_dma_lostirq	vmlinux
+0x00000000	iosched_cfq	vmlinux
+0x00000000	bdevname	vmlinux
+0x00000000	cdev_init	vmlinux
+0x00000000	request_resource	vmlinux
+0x00000000	snd_unregister_oss_device	sound/core/snd
+0x00000000	snd_interval_muldivk	sound/core/snd-pcm
+0x00000000	inet_getname	vmlinux
+0x00000000	default_hwif_iops	vmlinux
+0x00000000	agp_generic_insert_memory	vmlinux
+0x00000000	i2c_smbus_write_quick	drivers/i2c/i2c-core
+0x00000000	i2c_smbus_process_call	drivers/i2c/i2c-core
+0x00000000	iput	vmlinux
+0x00000000	sleep_on_timeout	vmlinux
+0x00000000	create_proc_entry	vmlinux
+0x00000000	proc_doulongvec_ms_jiffies_minmax	vmlinux
+0x00000000	register_blkdev	vmlinux
+0x00000000	wake_up_buffer	vmlinux
+0x00000000	neigh_event_ns	vmlinux
+0x00000000	kref_get	vmlinux
+0x00000000	generic_commit_write	vmlinux
+0x00000000	i2c_probe	drivers/i2c/i2c-core
+0x00000000	dst_destroy	vmlinux
+0x00000000	journal_errno	vmlinux
+0x00000000	videobuf_read_stream	drivers/media/video/video-buf
+0x00000000	svc_wake_up	net/sunrpc/sunrpc
+0x00000000	scsi_mode_sense	drivers/scsi/scsi_mod
+0x00000000	journal_check_available_features	vmlinux
+0x00000000	snd_pcm_lib_ioctl	sound/core/snd-pcm
+0x00000000	dst_alloc	vmlinux
+0x00000000	single_release	vmlinux
+0x00000000	get_user_pages	vmlinux
+0x00000000	sysctl_optmem_max	vmlinux
+0x00000000	__might_sleep	vmlinux
+0x00000000	cfb_copyarea	vmlinux
+0x00000000	__clear_user	vmlinux
+0x00000000	video_exclusive_open	drivers/media/video/videodev
+0x00000000	v4l2_ioctl_names	drivers/media/video/v4l2-common
+0x00000000	netlink_detach	vmlinux
+0x00000000	netlink_attach	vmlinux
+0x00000000	__dev_remove_pack	vmlinux
+0x00000000	posix_acl_to_xattr	vmlinux
+0x00000000	auth_unix_forget_old	net/sunrpc/sunrpc
+0x00000000	ide_raw_taskfile	vmlinux
+0x00000000	iget5_locked	vmlinux
+0x00000000	mii_check_media	drivers/net/mii
+0x00000000	dcache_dir_lseek	vmlinux
+0x00000000	__nvram_set_checksum	drivers/char/nvram
+0x00000000	bttv_sub_unregister	drivers/media/video/bttv
+0x00000000	pci_scan_bus_parented	vmlinux
+0x00000000	ei_open	drivers/net/8390
+0x00000000	d_splice_alias	vmlinux
+0x00000000	do_sync_read	vmlinux
+0x00000000	mem_map	vmlinux
+0x00000000	register_sound_midi	sound/soundcore
+0x00000000	kobject_rename	vmlinux
+0x00000000	rpc_mkpipe	net/sunrpc/sunrpc
+0x00000000	snd_trident_stop_voice	sound/pci/trident/snd-trident
+0x00000000	blk_rq_prep_restart	vmlinux
+0x00000000	agp_put_bridge	vmlinux
+0x00000000	zlib_inflateSync	lib/zlib_inflate/zlib_inflate
+0x00000000	snd_component_add	sound/core/snd
+0x00000000	do_special	vmlinux
+0x00000000	netif_receive_skb	vmlinux
+0x00000000	alloc_netdev	vmlinux
+0x00000000	journal_update_format	vmlinux
+0x00000000	recalc_sigpending	vmlinux
+0x00000000	ac97_set_dac_rate	sound/oss/ac97_codec
+0x00000000	ip_dev_find	vmlinux
+0x00000000	do_midi_msg	sound/oss/sound
+0x00000000	path_lookup	vmlinux
+0x00000000	rpcauth_init_credcache	net/sunrpc/sunrpc
+0x00000000	snd_iprintf	sound/core/snd
+0x00000000	xdr_shift_buf	net/sunrpc/sunrpc
+0x00000000	ide_raw_build_sglist	vmlinux
+0x00000000	device_register	vmlinux
+0x00000000	pnp_request_card_device	vmlinux
+0x00000000	dentry_open	vmlinux
+0x00000000	sysctl_overcommit_memory	vmlinux
+0x00000000	dma_free_coherent	vmlinux
+0x00000000	rpc_clnt_sigmask	net/sunrpc/sunrpc
+0x00000000	skb_checksum_help	vmlinux
+0x00000000	class_device_unregister	vmlinux
+0x00000000	tasklet_init	vmlinux
+0x00000000	tcp_close_state	vmlinux
+0x00000000	device_power_down	vmlinux
+0x00000000	sock_no_recvmsg	vmlinux
+0x00000000	midi_synth_ioctl	sound/oss/sound
+0x00000000	set_transfer	vmlinux
+0x00000000	SELECT_INTERRUPT	vmlinux
+0x00000000	pnp_register_irq_resource	vmlinux
+0x00000000	usb_hcd_pci_remove	drivers/usb/core/usbcore
+0x00000000	rtc_control	vmlinux
+0x00000000	complete	vmlinux
+0x00000000	class_put	vmlinux
+0x00000000	sigqueue_free	vmlinux
+0x00000000	snd_pcm_new_stream	sound/core/snd-pcm
+0x00000000	snd_ac97_pcm_close	sound/pci/ac97/snd-ac97-codec
+0x00000000	subsys_remove_file	vmlinux
+0x00000000	high_memory	vmlinux
+0x00000000	next_thread	vmlinux
+0x00000000	usb_serial_deregister	drivers/usb/serial/usbserial
+0x00000000	destroy_proc_ide_interfaces	vmlinux
+0x00000000	simple_link	vmlinux
+0x00000000	sysdev_remove_file	vmlinux
+0x00000000	isapnp_read_byte	vmlinux
+0x00000000	journal_blocks_per_page	vmlinux
+0x00000000	mempool_create	vmlinux
+0x00000000	pci_siig20x_fn	vmlinux
+0x00000000	pci_siig10x_fn	vmlinux
+0x00000000	send_sig_info	vmlinux
+0x00000000	iounmap	vmlinux
+0x00000000	__neigh_event_send	vmlinux
+0x00000000	unregister_netdevice	vmlinux
+0x00000000	allow_signal	vmlinux
+0x00000000	rpc_call_setup	net/sunrpc/sunrpc
+0x00000000	snd_timer_global_register	sound/core/snd-timer
+0x00000000	snd_rawmidi_info_select	sound/core/snd-rawmidi
+0x00000000	kill_anon_super	vmlinux
+0x00000000	snd_ac97_update_bits	sound/pci/ac97/snd-ac97-codec
+0x00000000	blk_queue_hardsect_size	vmlinux
+0x00000000	xdr_buf_subsegment	net/sunrpc/sunrpc
+0x00000000	usbvideo_RegisterVideoDevice	drivers/usb/media/usbvideo
+0x00000000	inet_dgram_connect	vmlinux
+0x00000000	end_that_request_first	vmlinux
+0x00000000	driver_unregister	vmlinux
+0x00000000	kobject_put	vmlinux
+0x00000000	kobject_get	vmlinux
+0x00000000	param_set_copystring	vmlinux
+0x00000000	video_exclusive_release	drivers/media/video/videodev
+0x00000000	usb_reset_configuration	drivers/usb/core/usbcore
+0x00000000	d_validate	vmlinux
+0x00000000	sis_free	vmlinux
+0x00000000	subsystem_init	vmlinux
+0x00000000	fasync_helper	vmlinux
+0x00000000	dcookie_register	vmlinux
+0x00000000	locks_mandatory_area	vmlinux
+0x00000000	sock_alloc_send_pskb	vmlinux
+0x00000000	pm_find	vmlinux
+0x00000000	pm_send	vmlinux
+0x00000000	inet_register_protosw	vmlinux
+0x00000000	mempool_destroy	vmlinux
+0x00000000	snd_pcm_sgbuf_ops_page	sound/core/snd-pcm
+0x00000000	scsi_ioctl	drivers/scsi/scsi_mod
+0x00000000	netpoll_cleanup	vmlinux
+0x00000000	set_binfmt	vmlinux
+0x00000000	cap_ptrace	vmlinux
+0x00000000	slab_reclaim_pages	vmlinux
+0x00000000	snd_seq_kernel_client_write_poll	sound/core/seq/snd-seq
+0x00000000	dlci_ioctl_set	vmlinux
+0x00000000	scsi_report_device_reset	drivers/scsi/scsi_mod
+0x00000000	isapnp_present	vmlinux
+0x00000000	kobject_unregister	vmlinux
+0x00000000	register_sound_mixer	sound/soundcore
+0x00000000	usb_submit_urb	drivers/usb/core/usbcore
+0x00000000	page_symlink_inode_operations	vmlinux
+0x00000000	vunmap	vmlinux
+0x00000000	refrigerator	vmlinux
+0x00000000	snd_seq_device_new	sound/core/seq/snd-seq-device
+0x00000000	shrink_dcache_anon	vmlinux
+0x00000000	snd_seq_create_kernel_client	sound/core/seq/snd-seq
+0x00000000	set_page_dirty_lock	vmlinux
+0x00000000	usb_get_descriptor	drivers/usb/core/usbcore
+0x00000000	parport_find_device	drivers/parport/parport
+0x00000000	tcp_v4_conn_request	vmlinux
+0x00000000	batch_entropy_store	vmlinux
+0x00000000	usb_put_dev	drivers/usb/core/usbcore
+0x00000000	sound_timer_interrupt	sound/oss/sound
+0x00000000	tcp_v4_syn_recv_sock	vmlinux
+0x00000000	kmem_cache_shrink	vmlinux
+0x00000000	mii_check_link	drivers/net/mii
+0x00000000	icmp_err_convert	vmlinux
+0x00000000	ata_input_data	vmlinux
+0x00000000	snd_midi_event_init	sound/core/seq/snd-seq-midi-event
+0x00000000	scsi_unregister	drivers/scsi/scsi_mod
+0x00000000	parport_daisy_deselect_all	drivers/parport/parport
+0x00000000	tcp_hashinfo	vmlinux
+0x00000000	fd_install	vmlinux
+0x00000000	parport_release	drivers/parport/parport
+0x00000000	__ide_dma_good_drive	vmlinux
+0x00000000	__cond_resched	vmlinux
+0x00000000	disable_irq	vmlinux
+0x00000000	snd_midi_event_decode	sound/core/seq/snd-seq-midi-event
+0x00000000	scsi_host_alloc	drivers/scsi/scsi_mod
+0x00000000	cdrom_get_media_event	drivers/cdrom/cdrom
+0x00000000	sysfs_remove_file	vmlinux
+0x00000000	video_register_device	drivers/media/video/videodev
+0x00000000	print_Scsi_Cmnd	drivers/scsi/scsi_mod
+0x00000000	invalidate_partition	vmlinux
+0x00000000	pci_get_subsys	vmlinux
+0x00000000	do_brk	vmlinux
+0x00000000	notify_parent	vmlinux
+0x00000000	register_sound_synth	sound/soundcore
+0x00000000	snd_ctl_notify	sound/core/snd
+0x00000000	uart_get_baud_rate	vmlinux
+0x00000000	pci_proc_detach_bus	vmlinux
+0x00000000	i8253_lock	vmlinux
+0x00000000	snd_pcm_hw_constraint_step	sound/core/snd-pcm
+0x00000000	set_user_nice	vmlinux
+0x00000000	rpc_new_child	net/sunrpc/sunrpc
+0x00000000	gss_pseudoflavor_to_service	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	ac97_restore_state	sound/oss/ac97_codec
+0x00000000	rpc_release_client	net/sunrpc/sunrpc
+0x00000000	tcp_openreq_cachep	vmlinux
+0x00000000	sock_setsockopt	vmlinux
+0x00000000	fb_find_mode	vmlinux
+0x00000000	unlock_buffer	vmlinux
+0x00000000	find_task_by_pid	vmlinux
+0x00000000	notifier_chain_register	vmlinux
+0x00000000	snd_card_set_dev_pm_callback	sound/core/snd
+0x00000000	scsi_sleep	drivers/scsi/scsi_mod
+0x00000000	v4l_compat_translate_ioctl	drivers/media/video/v4l1-compat
+0x00000000	snd_pcm_devices	sound/core/snd-pcm
+0x00000000	skb_copy_expand	vmlinux
+0x00000000	posix_acl_permission	vmlinux
+0x00000000	d_lookup	vmlinux
+0x00000000	cap_task_post_setuid	vmlinux
+0x00000000	sys_read	vmlinux
+0x00000000	serio_unregister_port	vmlinux
+0x00000000	drive_cmd_intr	vmlinux
+0x00000000	zone_table	vmlinux
+0x00000000	ioremap_nocache	vmlinux
+0x00000000	snd_pcm_format_physical_width	sound/core/snd-pcm
+0x00000000	scsi_remove_host	drivers/scsi/scsi_mod
+0x00000000	radix_tree_gang_lookup_tag	vmlinux
+0x00000000	posix_acl_masq_nfs_mode	vmlinux
+0x00000000	taskfile_output_data	vmlinux
+0x00000000	sync_dirty_buffer	vmlinux
+0x00000000	pci_remove_bus_device	vmlinux
+0x00000000	kill_proc_info	vmlinux
+0x00000000	usb_alloc_urb	drivers/usb/core/usbcore
+0x00000000	__snd_util_memblk_new	sound/synth/snd-util-mem
+0x00000000	add_disk_randomness	vmlinux
+0x00000000	inode_init_once	vmlinux
+0x00000000	snd_timer_system_resolution	sound/core/snd-timer
+0x00000000	scsi_cmd_ioctl	vmlinux
+0x00000000	fb_prepare_logo	vmlinux
+0x00000000	pnp_device_attach	vmlinux
+0x00000000	neigh_table_init	vmlinux
+0x00000000	blk_insert_request	vmlinux
+0x00000000	blk_stop_queue	vmlinux
+0x00000000	blk_queue_segment_boundary	vmlinux
+0x00000000	isapnp_device	vmlinux
+0x00000000	sysfs_create_link	vmlinux
+0x00000000	tcp_reset_keepalive_timer	vmlinux
+0x00000000	ide_init_drive_cmd	vmlinux
+0x00000000	qword_get	net/sunrpc/sunrpc
+0x00000000	midi_synth_bender	sound/oss/sound
+0x00000000	snd_pcm_lib_preallocate_pages_for_all	sound/core/snd-pcm
+0x00000000	ethtool_op_set_sg	vmlinux
+0x00000000	journal_revoke	vmlinux
+0x00000000	seq_release	vmlinux
+0x00000000	hotplug_path	vmlinux
+0x00000000	parport_register_driver	drivers/parport/parport
+0x00000000	ide_task_ioctl	vmlinux
+0x00000000	agp_num_entries	vmlinux
+0x00000000	sysfs_create_bin_file	vmlinux
+0x00000000	is_unsafe_smbus	vmlinux
+0x00000000	cpu_khz	vmlinux
+0x00000000	midi_synth_reset	sound/oss/sound
+0x00000000	auth_domain_put	net/sunrpc/sunrpc
+0x00000000	snd_rawmidi_kernel_open	sound/core/snd-rawmidi
+0x00000000	free_buffer_head	vmlinux
+0x00000000	fget	vmlinux
+0x00000000	send_group_sigqueue	vmlinux
+0x00000000	ide_config_drive_speed	vmlinux
+0x00000000	match_token	vmlinux
+0x00000000	vmtruncate	vmlinux
+0x00000000	videocodec_unregister	drivers/media/video/videocodec
+0x00000000	pnp_resource_change	vmlinux
+0x00000000	posix_test_lock	vmlinux
+0x00000000	kill_block_super	vmlinux
+0x00000000	flush_signals	vmlinux
+0x00000000	mb_cache_entry_insert	vmlinux
+0x00000000	snd_mixer_oss_ioctl_card	sound/core/oss/snd-mixer-oss
+0x00000000	blk_put_request	vmlinux
+0x00000000	pnp_init_resource_table	vmlinux
+0x00000000	cdrom_mode_select	drivers/cdrom/cdrom
+0x00000000	snd_pcm_lib_preallocate_free_for_all	sound/core/snd-pcm
+0x00000000	__mntput	vmlinux
+0x00000000	mapping_tagged	vmlinux
+0x00000000	rpc_setbufsize	net/sunrpc/sunrpc
+0x00000000	midi_synth_aftertouch	sound/oss/sound
+0x00000000	sound_install_mixer	sound/oss/sound
+0x00000000	serio_interrupt	vmlinux
+0x00000000	put_disk	vmlinux
+0x00000000	color_table	vmlinux
+0x00000000	files_lock	vmlinux
+0x00000000	vm_committed_space	vmlinux
+0x00000000	auth_unix_add_addr	net/sunrpc/sunrpc
+0x00000000	usb_alloc_dev	drivers/usb/core/usbcore
+0x00000000	proc_root_fs	vmlinux
+0x00000000	rpc_debug	net/sunrpc/sunrpc
+0x00000000	bus_create_file	vmlinux
+0x00000000	console_conditional_schedule	vmlinux
+0x00000000	svc_destroy	net/sunrpc/sunrpc
+0x00000000	audio_release	sound/oss/sound
+0x00000000	snd_unregister_device	sound/core/snd
+0x00000000	fat_detach	fs/fat/fat
+0x00000000	ei_poll	drivers/net/8390
+0x00000000	abi_defhandler_libcso	vmlinux
+0x00000000	pcibios_penalize_isa_irq	vmlinux
+0x00000000	vc_cons_allocated	vmlinux
+0x00000000	ide_unregister_driver	vmlinux
+0x00000000	elevator_noop	vmlinux
+0x00000000	rtc_unregister	vmlinux
+0x00000000	rb_erase	vmlinux
+0x00000000	__nvram_check_checksum	drivers/char/nvram
+0x00000000	__netdev_watchdog_up	vmlinux
+0x00000000	video_usercopy	drivers/media/video/videodev
+0x00000000	usb_check_bandwidth	drivers/usb/core/usbcore
+0x00000000	cache_check	net/sunrpc/sunrpc
+0x00000000	set_blocksize	vmlinux
+0x00000000	btcx_calc_skips	drivers/media/video/btcx-risc
+0x00000000	uart_unregister_driver	vmlinux
+0x00000000	copy_from_user	vmlinux
+0x00000000	blk_execute_rq	vmlinux
+0x00000000	rpc_call_sync	net/sunrpc/sunrpc
+0x00000000	vsscanf	vmlinux
+0x00000000	panic	vmlinux
+0x00000000	note_to_freq	sound/oss/sound
+0x00000000	ide_hwifs	vmlinux
+0x00000000	__vmalloc	vmlinux
+0x00000000	__kmalloc	vmlinux
+0x00000000	put_files_struct	vmlinux
+0x00000000	ov511_register_decomp_module	drivers/usb/media/ov511
+0x00000000	dev_new_index	vmlinux
+0x00000000	rpc_wake_up_next	net/sunrpc/sunrpc
+0x00000000	seq_input_event	sound/oss/sound
+0x00000000	__ip_select_ident	vmlinux
+0x00000000	journal_load	vmlinux
+0x00000000	locks_init_lock	vmlinux
+0x00000000	memcmp	vmlinux
+0x00000000	serio_reconnect	vmlinux
+0x00000000	ide_end_request	vmlinux
+0x00000000	parport_poll_peripheral	drivers/parport/parport
+0x00000000	bttv_write_gpio	drivers/media/video/bttv
+0x00000000	vfs_readdir	vmlinux
+0x00000000	zlib_inflate	lib/zlib_inflate/zlib_inflate
+0x00000000	vscnprintf	vmlinux
+0x00000000	simple_statfs	vmlinux
+0x00000000	buffer_insert_list	vmlinux
+0x00000000	kmem_cache_alloc_node	vmlinux
+0x00000000	param_set_long	vmlinux
+0x00000000	usb_string	drivers/usb/core/usbcore
+0x00000000	ip_mc_join_group	vmlinux
+0x00000000	agp_generic_free_gatt_table	vmlinux
+0x00000000	journal_update_superblock	vmlinux
+0x00000000	skb_clone_fraglist	vmlinux
+0x00000000	cpu_sysdev_class	vmlinux
+0x00000000	class_simple_set_hotplug	vmlinux
+0x00000000	mb_cache_entry_dup	vmlinux
+0x00000000	snd_pcm_capture_ready	sound/core/snd-pcm
+0x00000000	snd_pcm_hw_constraint_ratdens	sound/core/snd-pcm
+0x00000000	strlcpy	vmlinux
+0x00000000	acpi_disabled	vmlinux
+0x00000000	fb_invert_cmaps	vmlinux
+0x00000000	ideprobe_init	vmlinux
+0x00000000	driver_create_file	vmlinux
+0x00000000	fb_dealloc_cmap	vmlinux
+0x00000000	blk_requeue_request	vmlinux
+0x00000000	agp_bind_memory	vmlinux
+0x00000000	scsi_scan_host	drivers/scsi/scsi_mod
+0x00000000	sys_open	vmlinux
+0x00000000	tcp_sendpage	vmlinux
+0x00000000	allocate_resource	vmlinux
+0x00000000	block_prepare_write	vmlinux
+0x00000000	remove_suid	vmlinux
+0x00000000	kill_pg	vmlinux
+0x00000000	fat_notify_change	fs/fat/fat
+0x00000000	vfs_rmdir	vmlinux
+0x00000000	generic_shutdown_super	vmlinux
+0x00000000	get_jiffies_64	vmlinux
+0x00000000	svc_create_thread	net/sunrpc/sunrpc
+0x00000000	scsi_track_queue_full	drivers/scsi/scsi_mod
+0x00000000	cap_bprm_set_security	vmlinux
+0x00000000	init_buffer	vmlinux
+0x00000000	videobuf_read_one	drivers/media/video/video-buf
+0x00000000	snd_card_new	sound/core/snd
+0x00000000	____request_resource	vmlinux
+0x00000000	rpcauth_create	net/sunrpc/sunrpc
+0x00000000	snd_pcm_lib_readv	sound/core/snd-pcm
+0x00000000	sock_no_getname	vmlinux
+0x00000000	vfs_link	vmlinux
+0x00000000	usb_buffer_alloc	drivers/usb/core/usbcore
+0x00000000	tcp_send_synack	vmlinux
+0x00000000	isa_dma_bridge_buggy	vmlinux
+0x00000000	journal_flush	vmlinux
+0x00000000	panic_notifier_list	vmlinux
+0x00000000	ide_dump_atapi_status	vmlinux
+0x00000000	d_delete	vmlinux
+0x00000000	mod_timer	vmlinux
+0x00000000	idr_remove	vmlinux
+0x00000000	param_get_invbool	vmlinux
+0x00000000	nfsd_debug	net/sunrpc/sunrpc
+0x00000000	snd_ac97_set_rate	sound/pci/ac97/snd-ac97-codec
+0x00000000	tty_hangup	vmlinux
+0x00000000	pci_disable_device	vmlinux
+0x00000000	init_mm	vmlinux
+0x00000000	zlib_inflateSyncPoint	lib/zlib_inflate/zlib_inflate
+0x00000000	read_cache_page	vmlinux
+0x00000000	snd_pcm_hw_constraints_init	sound/core/snd-pcm
+0x00000000	__strncpy_from_user	vmlinux
+0x00000000	scsi_set_medium_removal	drivers/scsi/scsi_mod
+0x00000000	__kill_fasync	vmlinux
+0x00000000	sound_timer_devs	sound/oss/sound
+0x00000000	snd_timer_resolution	sound/core/snd-timer
+0x00000000	gss_service_to_auth_domain_name	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	sysfs_create_dir	vmlinux
+0x00000000	fb_set_var	vmlinux
+0x00000000	generic_unplug_device	vmlinux
+0x00000000	pm_unregister	vmlinux
+0x00000000	snd_pcm_hw_rule_add	sound/core/snd-pcm
+0x00000000	usb_init_urb	drivers/usb/core/usbcore
+0x00000000	snd_card_file_remove	sound/core/snd
+0x00000000	snd_free_pages	sound/core/snd-page-alloc
+0x00000000	__get_user_2	vmlinux
+0x00000000	videobuf_dma_pci_unmap	drivers/media/video/video-buf
+0x00000000	snd_interval_ratnum	sound/core/snd-pcm
+0x00000000	snd_ac97_read	sound/pci/ac97/snd-ac97-codec
+0x00000000	scsi_device_put	drivers/scsi/scsi_mod
+0x00000000	scsi_device_get	drivers/scsi/scsi_mod
+0x00000000	tcp_accept	vmlinux
+0x00000000	__check_region	vmlinux
+0x00000000	scsi_delete_timer	drivers/scsi/scsi_mod
+0x00000000	print_status	drivers/scsi/scsi_mod
+0x00000000	sysctl_ip_default_ttl	vmlinux
+0x00000000	snd_malloc_pages	sound/core/snd-page-alloc
+0x00000000	sock_sendmsg	vmlinux
+0x00000000	usb_hcd_pci_suspend	drivers/usb/core/usbcore
+0x00000000	snd_hwdep_new	sound/core/snd-hwdep
+0x00000000	class_register	vmlinux
+0x00000000	lease_get_mtime	vmlinux
+0x00000000	sb_set_blocksize	vmlinux
+0x00000000	kernel_fpu_begin	vmlinux
+0x00000000	parport_ieee1284_epp_read_addr	drivers/parport/parport
+0x00000000	bttv_get_id	drivers/media/video/bttv
+0x00000000	ide_register_hw	vmlinux
+0x00000000	crypto_unregister_alg	vmlinux
+0x00000000	exit_mm	vmlinux
+0x00000000	dump_fpu	vmlinux
+0x00000000	get_empty_filp	vmlinux
+0x00000000	filp_open	vmlinux
+0x00000000	generic_file_aio_write	vmlinux
+0x00000000	snd_rawmidi_set_ops	sound/core/snd-rawmidi
+0x00000000	snd_pcm_link_rwlock	sound/core/snd-pcm
+0x00000000	ir_extract_bits	drivers/media/common/ir-common
+0x00000000	agp_allocate_memory	vmlinux
+0x00000000	get_disk	vmlinux
+0x00000000	__free_pages	vmlinux
+0x00000000	parport_put_port	drivers/parport/parport
+0x00000000	parport_get_port	drivers/parport/parport
+0x00000000	inet_bind	vmlinux
+0x00000000	pci_assign_resource	vmlinux
+0x00000000	raise_softirq	vmlinux
+0x00000000	input_grab_device	vmlinux
+0x00000000	journal_try_to_free_buffers	vmlinux
+0x00000000	netlink_broadcast	vmlinux
+0x00000000	shmem_file_setup	vmlinux
+0x00000000	in_group_p	vmlinux
+0x00000000	udp_sendmsg	vmlinux
+0x00000000	snd_timer_stop	sound/core/snd-timer
+0x00000000	ide_unregister	vmlinux
+0x00000000	nvram_read_byte	drivers/char/nvram
+0x00000000	sk_wait_data	vmlinux
+0x00000000	sock_alloc_inode	vmlinux
+0x00000000	pci_enable_wake	vmlinux
+0x00000000	highmem_start_page	vmlinux
+0x00000000	unshare_files	vmlinux
+0x00000000	snd_midi_event_encode_byte	sound/core/seq/snd-seq-midi-event
+0x00000000	blk_phys_contig_segment	vmlinux
+0x00000000	end_buffer_read_sync	vmlinux
+0x00000000	inter_module_get_request	vmlinux
+0x00000000	usb_calc_bus_time	drivers/usb/core/usbcore
+0x00000000	param_get_ushort	vmlinux
+0x00000000	usb_find_interface	drivers/usb/core/usbcore
+0x00000000	pci_add_new_bus	vmlinux
+0x00000000	monotonic_clock	vmlinux
+0x00000000	parport_register_port	drivers/parport/parport
+0x00000000	netdev_boot_setup_check	vmlinux
+0x00000000	close_private_file	vmlinux
+0x00000000	snd_register_device	sound/core/snd
+0x00000000	_snd_pcm_hw_param_min	sound/core/snd-pcm
+0x00000000	register_gifconf	vmlinux
+0x00000000	mempool_alloc	vmlinux
+0x00000000	snd_rawmidi_info	sound/core/snd-rawmidi
+0x00000000	pci_max_busnr	vmlinux
+0x00000000	fat_statfs	fs/fat/fat
+0x00000000	inet_getsockopt	vmlinux
+0x00000000	proc_dointvec_minmax	vmlinux
+0x00000000	ide_setup_pci_device	vmlinux
+0x00000000	uart_unregister_port	vmlinux
+0x00000000	daemonize	vmlinux
+0x00000000	blk_queue_make_request	vmlinux
+0x00000000	class_simple_device_add	vmlinux
+0x00000000	put_driver	vmlinux
+0x00000000	inter_module_register	vmlinux
+0x00000000	vfs_getattr	vmlinux
+0x00000000	tcp_inherit_port	vmlinux
+0x00000000	inet_del_protocol	vmlinux
+0x00000000	neigh_update	vmlinux
+0x00000000	nobh_truncate_page	vmlinux
+0x00000000	snd_seq_instr_free_use	sound/core/seq/snd-seq-instr
+0x00000000	end_that_request_chunk	vmlinux
+0x00000000	snd_card_pci_resume	sound/core/snd
+0x00000000	icmp_send	vmlinux
+0x00000000	rtattr_parse	vmlinux
+0x00000000	usb_deregister_dev	drivers/usb/core/usbcore
+0x00000000	journal_recover	vmlinux
+0x00000000	snd_remove_proc_entry	sound/core/snd
+0x00000000	snd_cards	sound/core/snd
+0x00000000	dev_open	vmlinux
+0x00000000	ilookup	vmlinux
+0x00000000	free_pages	vmlinux
+0x00000000	btcx_screen_clips	drivers/media/video/btcx-risc
+0x00000000	unlock_new_inode	vmlinux
+0x00000000	sigqueue_alloc	vmlinux
+0x00000000	scsi_ioctl_send_command	drivers/scsi/scsi_mod
+0x00000000	sock_unregister	vmlinux
+0x00000000	kset_register	vmlinux
+0x00000000	kobject_hotplug	vmlinux
+0x00000000	fput	vmlinux
+0x00000000	__down_failed_interruptible	vmlinux
+0x00000000	eighty_ninty_three	vmlinux
+0x00000000	journal_set_features	vmlinux
+0x00000000	is_console_locked	vmlinux
+0x00000000	get_cmos_time	vmlinux
+0x00000000	task_mulin_intr	vmlinux
+0x00000000	add_disk	vmlinux
+0x00000000	sysctl_max_map_count	vmlinux
+0x00000000	inet_shutdown	vmlinux
+0x00000000	sis_dispinfo	vmlinux
+0x00000000	ide_register_subdriver	vmlinux
+0x00000000	uart_remove_one_port	vmlinux
+0x00000000	pnp_manual_config_dev	vmlinux
+0x00000000	pnp_register_dependent_option	vmlinux
+0x00000000	strnicmp	vmlinux
+0x00000000	vmalloc_to_page	vmlinux
+0x00000000	snd_pcm_format_signed	sound/core/snd-pcm
+0x00000000	ide_pci_register_driver	vmlinux
+0x00000000	bus_add_device	vmlinux
+0x00000000	journal_start_commit	vmlinux
+0x00000000	usb_hcd_giveback_urb	drivers/usb/core/usbcore
+0x00000000	sock_release	vmlinux
+0x00000000	pci_find_device	vmlinux
+0x00000000	add_wait_queue_exclusive	vmlinux
+0x00000000	usb_claim_bandwidth	drivers/usb/core/usbcore
+0x00000000	nlmclnt_proc	fs/lockd/lockd
+0x00000000	utf8_wcstombs	vmlinux
+0x00000000	kill_sl	vmlinux
+0x00000000	netdev_set_master	vmlinux
+0x00000000	idr_init	vmlinux
+0x00000000	mpage_readpage	vmlinux
+0x00000000	vmalloc	vmlinux
+0x00000000	snd_trident_synth_alloc	sound/pci/trident/snd-trident
+0x00000000	pci_request_region	vmlinux
+0x00000000	scsi_adjust_queue_depth	drivers/scsi/scsi_mod
+0x00000000	mb_cache_entry_find_first	vmlinux
+0x00000000	parport_device_proc_unregister	drivers/parport/parport
+0x00000000	gss_mech_get_by_name	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	agp_generic_alloc_page	vmlinux
+0x00000000	isapnp_read_word	vmlinux
+0x00000000	cap_capset_check	vmlinux
+0x00000000	lock_rename	vmlinux
+0x00000000	bio_split	vmlinux
+0x00000000	i2c_bit_add_bus	drivers/i2c/algos/i2c-algo-bit
+0x00000000	xdr_inline_decode	net/sunrpc/sunrpc
+0x00000000	tcp_check_req	vmlinux
+0x00000000	netlink_unicast	vmlinux
+0x00000000	neigh_sysctl_register	vmlinux
+0x00000000	snd_timer_start	sound/core/snd-timer
+0x00000000	sys_close	vmlinux
+0x00000000	fat_build_inode	fs/fat/fat
+0x00000000	bttv_gpio_inout	drivers/media/video/bttv
+0x00000000	global_cache_flush	vmlinux
+0x00000000	seq_read	vmlinux
+0x00000000	is_bad_inode	vmlinux
+0x00000000	param_get_int	vmlinux
+0x00000000	start_tty	vmlinux
+0x00000000	pci_remove_device_safe	vmlinux
+0x00000000	snd_pcm_notify	sound/core/snd-pcm
+0x00000000	pnp_unregister_card_driver	vmlinux
+0x00000000	notify_change	vmlinux
+0x00000000	follow_up	vmlinux
+0x00000000	param_get_short	vmlinux
+0x00000000	_snd_pcm_hw_param_set	sound/core/snd-pcm
+0x00000000	skb_copy_and_csum_datagram_iovec	vmlinux
+0x00000000	sock_no_ioctl	vmlinux
+0x00000000	close_bdev_excl	vmlinux
+0x00000000	dma_alloc_coherent	vmlinux
+0x00000000	snd_rawmidi_transmit_ack	sound/core/snd-rawmidi
+0x00000000	scsi_remove_device	drivers/scsi/scsi_mod
+0x00000000	simple_empty	vmlinux
+0x00000000	usb_hcd_irq	drivers/usb/core/usbcore
+0x00000000	usb_hub_tt_clear_buffer	drivers/usb/core/usbcore
+0x00000000	ir_input_init	drivers/media/common/ir-common
+0x00000000	blk_queue_merge_bvec	vmlinux
+0x00000000	pci_find_class	vmlinux
+0x00000000	journal_lock_updates	vmlinux
+0x00000000	xdr_decode_string_inplace	net/sunrpc/sunrpc
+0x00000000	svc_seq_show	net/sunrpc/sunrpc
+0x00000000	scsi_free_host_dev	drivers/scsi/scsi_mod
+0x00000000	driver_register	vmlinux
+0x00000000	agp_free_key	vmlinux
+0x00000000	pnp_device_detach	vmlinux
+0x00000000	rwsem_down_write_failed	vmlinux
+0x00000000	find_lock_page	vmlinux
+0x00000000	snd_interval_div	sound/core/snd-pcm
+0x00000000	param_array_get	vmlinux
+0x00000000	param_array_set	vmlinux
+0x00000000	remove_wait_queue	vmlinux
+0x00000000	kset_find_obj	vmlinux
+0x00000000	usb_buffer_free	drivers/usb/core/usbcore
+0x00000000	i2c_smbus_write_word_data	drivers/i2c/i2c-core
+0x00000000	tcp_sendmsg	vmlinux
+0x00000000	ide_fops	vmlinux
+0x00000000	sock_map_fd	vmlinux
+0x00000000	isapnp_wake	vmlinux
+0x00000000	snd_util_mem_avail	sound/synth/snd-util-mem
+0x00000000	default_hwif_mmiops	vmlinux
+0x00000000	d_prune_aliases	vmlinux
+0x00000000	memcpy_fromiovecend	vmlinux
+0x00000000	rtc_lock	vmlinux
+0x00000000	videobuf_read_start	drivers/media/video/video-buf
+0x00000000	ilookup5	vmlinux
+0x00000000	journal_release_buffer	vmlinux
+0x00000000	per_cpu__kstat	vmlinux
+0x00000000	find_trylock_page	vmlinux
+0x00000000	simple_fill_super	vmlinux
+0x00000000	have_submounts	vmlinux
+0x00000000	__user_walk	vmlinux
+0x00000000	__tasklet_schedule	vmlinux
+0x00000000	dev_load	vmlinux
+0x00000000	bio_add_page	vmlinux
+0x00000000	kernel_thread	vmlinux
+0x00000000	zlib_inflateEnd	lib/zlib_inflate/zlib_inflate
+0x00000000	fb_get_monitor_limits	vmlinux
+0x00000000	agp_device_command	vmlinux
+0x00000000	open_by_devnum	vmlinux
+0x00000000	contig_page_data	vmlinux
+0x00000000	snd_midi_channel_alloc_set	sound/core/seq/snd-seq-midi-emul
+0x00000000	console_blanked	vmlinux
+0x00000000	MCA_bus	vmlinux
+0x00000000	rpc_run_child	net/sunrpc/sunrpc
+0x00000000	netpoll_set_trap	vmlinux
+0x00000000	bitmap_empty	vmlinux
+0x00000000	ext2_xattr_register	vmlinux
+0x00000000	mempool_free_slab	vmlinux
+0x00000000	DMAbuf_open_dma	sound/oss/sound
+0x00000000	krb5_encrypt	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	pci_scan_slot	vmlinux
+0x00000000	gss_mech_register	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	mpage_readpages	vmlinux
+0x00000000	parport_device_coords	drivers/parport/parport
+0x00000000	pci_request_regions	vmlinux
+0x00000000	__wait_on_buffer	vmlinux
+0x00000000	nr_swap_pages	vmlinux
+0x00000000	sock_create	vmlinux
+0x00000000	kill_litter_super	vmlinux
+0x00000000	usb_free_urb	drivers/usb/core/usbcore
+0x00000000	snd_seq_expand_var_event	sound/core/seq/snd-seq
+0x00000000	agp_generic_enable	vmlinux
+0x00000000	cdrom_number_of_slots	drivers/cdrom/cdrom
+0x00000000	skb_copy_bits	vmlinux
+0x00000000	sysfs_remove_link	vmlinux
+0x00000000	tcp_make_synack	vmlinux
+0x00000000	proc_root	vmlinux
+0x00000000	cdev_put	vmlinux
+0x00000000	find_get_page	vmlinux
+0x00000000	invalidate_inodes	vmlinux
+0x00000000	dev_mc_delete	vmlinux
+0x00000000	get_driver	vmlinux
+0x00000000	request_dma	vmlinux
+0x00000000	snd_mpu401_uart_new	sound/drivers/mpu401/snd-mpu401-uart
+0x00000000	fat_attach	fs/fat/fat
+0x00000000	ip_mc_inc_group	vmlinux
+0x00000000	sysfs_remove_bin_file	vmlinux
+0x00000000	snd_midi_event_resize_buffer	sound/core/seq/snd-seq-midi-event
+0x00000000	ac97_alloc_codec	sound/oss/ac97_codec
+0x00000000	snprintf	vmlinux
+0x00000000	snd_dma_program	sound/core/snd
+0x00000000	__bread	vmlinux
+0x00000000	tcp_tw_deschedule	vmlinux
+0x00000000	memcpy_toiovec	vmlinux
+0x00000000	agp3_generic_configure	vmlinux
+0x00000000	snd_card_register	sound/core/snd
+0x00000000	crc32c_be	lib/libcrc32c
+0x00000000	crc32c_le	lib/libcrc32c
+0x00000000	in_aton	vmlinux
+0x00000000	neigh_resolve_output	vmlinux
+0x00000000	cfb_imageblit	vmlinux
+0x00000000	journal_init_dev	vmlinux
+0x00000000	posix_unblock_lock	vmlinux
+0x00000000	usb_register_dev	drivers/usb/core/usbcore
+0x00000000	fat_put_super	fs/fat/fat
+0x00000000	tcp_close	vmlinux
+0x00000000	__scm_send	vmlinux
+0x00000000	blk_queue_activity_fn	vmlinux
+0x00000000	pnp_register_driver	vmlinux
+0x00000000	try_to_free_buffers	vmlinux
+0x00000000	rpc_destroy_client	net/sunrpc/sunrpc
+0x00000000	register_framebuffer	vmlinux
+0x00000000	ide_wait_cmd_task	vmlinux
+0x00000000	make_8023_client	vmlinux
+0x00000000	snd_pcm_hw_param_value_min	sound/core/snd-pcm
+0x00000000	scsi_unblock_requests	drivers/scsi/scsi_mod
+0x00000000	register_cdrom	drivers/cdrom/cdrom
+0x00000000	bd_claim	vmlinux
+0x00000000	nfs_debug	net/sunrpc/sunrpc
+0x00000000	sound_free_dma	sound/oss/sound
+0x00000000	snd_interval_mulkdiv	sound/core/snd-pcm
+0x00000000	call_rcu	vmlinux
+0x00000000	pnp_add_device	vmlinux
+0x00000000	snd_pcm_release_substream	sound/core/snd-pcm
+0x00000000	parport_remove_port	drivers/parport/parport
+0x00000000	mb_cache_entry_takeout	vmlinux
+0x00000000	snd_trident_alloc_voice	sound/pci/trident/snd-trident
+0x00000000	snd_opl3_regmap	sound/drivers/opl3/snd-opl3-lib
+0x00000000	i2c_master_send	drivers/i2c/i2c-core
+0x00000000	snd_ctl_new1	sound/core/snd
+0x00000000	journal_abort	vmlinux
+0x00000000	seq_open	vmlinux
+0x00000000	snd_device_free_all	sound/core/snd
+0x00000000	pci_bus_type	vmlinux
+0x00000000	pci_enable_bridges	vmlinux
+0x00000000	simple_readpage	vmlinux
+0x00000000	__lock_page	vmlinux
+0x00000000	usb_altnum_to_altsetting	drivers/usb/core/usbcore
+0x00000000	sysctl_max_syn_backlog	vmlinux
+0x00000000	follow_down	vmlinux
+0x00000000	rpcauth_lookupcred	net/sunrpc/sunrpc
+0x00000000	find_exported_dentry	fs/exportfs/exportfs
+0x00000000	ide_error	vmlinux
+0x00000000	probe_irq_mask	vmlinux
+0x00000000	redraw_screen	vmlinux
+0x00000000	tty_unregister_driver	vmlinux
+0x00000000	get_write_access	vmlinux
+0x00000000	v4l2_prio_change	drivers/media/video/v4l2-common
+0x00000000	isapnp_protocol	vmlinux
+0x00000000	force_sig_info	vmlinux
+0x00000000	bttv_get_pcidev	drivers/media/video/bttv
+0x00000000	devinet_ioctl	vmlinux
+0x00000000	class_simple_device_remove	vmlinux
+0x00000000	class_device_put	vmlinux
+0x00000000	class_device_get	vmlinux
+0x00000000	del_timer	vmlinux
+0x00000000	usb_get_current_frame_number	drivers/usb/core/usbcore
+0x00000000	scsi_command_size	vmlinux
+0x00000000	snd_pcm_lib_free_pages	sound/core/snd-pcm
+0x00000000	tcp_v4_send_check	vmlinux
+0x00000000	dev_close	vmlinux
+0x00000000	isa_bridge	vmlinux
+0x00000000	__mark_inode_dirty	vmlinux
+0x00000000	v4l2_field_names	drivers/media/video/v4l2-common
+0x00000000	usbvideo_Deregister	drivers/usb/media/usbvideo
+0x00000000	snd_card_disconnect	sound/core/snd
+0x00000000	kernel_scsi_ioctl	drivers/scsi/scsi_mod
+0x00000000	i2c_get_functionality	drivers/i2c/i2c-core
+0x00000000	noop_qdisc	vmlinux
+0x00000000	sock_alloc_send_skb	vmlinux
+0x00000000	serio_unregister_device	vmlinux
+0x00000000	unregister_filesystem	vmlinux
+0x00000000	adjust_resource	vmlinux
+0x00000000	bitmap_or	vmlinux
+0x00000000	crypto_alg_available	vmlinux
+0x00000000	__ide_dma_verbose	vmlinux
+0x00000000	nobh_prepare_write	vmlinux
+0x00000000	snd_midi_process_event	sound/core/seq/snd-seq-midi-emul
+0x00000000	i2c_check_addr	drivers/i2c/i2c-core
+0x00000000	blk_rq_unmap_user	vmlinux
+0x00000000	blk_plug_device	vmlinux
+0x00000000	pci_bus_add_devices	vmlinux
+0x00000000	snd_rawmidi_drop_output	sound/core/snd-rawmidi
+0x00000000	acquire_console_sem	vmlinux
+0x00000000	audio_open	sound/oss/sound
+0x00000000	__printk_ratelimit	vmlinux
+0x00000000	usb_alloc_bus	drivers/usb/core/usbcore
+0x00000000	xdr_encode_pages	net/sunrpc/sunrpc
+0x00000000	xdr_read_pages	net/sunrpc/sunrpc
+0x00000000	snd_pcm_hw_param_near	sound/core/snd-pcm
+0x00000000	paste_selection	vmlinux
+0x00000000	journal_get_create_access	vmlinux
+0x00000000	open_private_file	vmlinux
+0x00000000	usb_control_msg	drivers/usb/core/usbcore
+0x00000000	scsi_do_req	drivers/scsi/scsi_mod
+0x00000000	fb_load_cursor_image	vmlinux
+0x00000000	__ide_set_handler	vmlinux
+0x00000000	snd_dma_free_pages	sound/core/snd-page-alloc
+0x00000000	sock_rmalloc	vmlinux
+0x00000000	pci_do_scan_bus	vmlinux
+0x00000000	v4l2_prio_max	drivers/media/video/v4l2-common
+0x00000000	pnp_add_card_device	vmlinux
+0x00000000	panic_timeout	vmlinux
+0x00000000	mtrr_del	vmlinux
+0x00000000	sound_unload_audiodev	sound/oss/sound
+0x00000000	videobuf_mmap_setup	drivers/media/video/video-buf
+0x00000000	generic_file_direct_IO	vmlinux
+0x00000000	snd_ctl_remove_id	sound/core/snd
+0x00000000	i2c_add_adapter	drivers/i2c/i2c-core
+0x00000000	ac97_set_adc_rate	sound/oss/ac97_codec
+0x00000000	dev_set_allmulti	vmlinux
+0x00000000	kobject_set_name	vmlinux
+0x00000000	icmp_statistics	vmlinux
+0x00000000	set_device_ro	vmlinux
+0x00000000	ide_lock	vmlinux
+0x00000000	pci_clear_mwi	vmlinux
+0x00000000	pcibios_set_irq_routing	vmlinux
+0x00000000	tasklet_kill	vmlinux
+0x00000000	i2c_use_client	drivers/i2c/i2c-core
+0x00000000	bio_endio	vmlinux
+0x00000000	reserve_lapic_nmi	vmlinux
+0x00000000	btcx_riscmem_alloc	drivers/media/video/btcx-risc
+0x00000000	sk_stop_timer	vmlinux
+0x00000000	locks_remove_posix	vmlinux
+0x00000000	preempt_schedule	vmlinux
+0x00000000	process_that_request_first	vmlinux
+0x00000000	radix_tree_delete	vmlinux
+0x00000000	snd_pcm_set_sync	sound/core/snd-pcm
+0x00000000	parport_find_number	drivers/parport/parport
+0x00000000	agp3_generic_sizes	vmlinux
+0x00000000	open_softirq	vmlinux
+0x00000000	names_cachep	vmlinux
+0x00000000	qword_addhex	net/sunrpc/sunrpc
+0x00000000	snd_info_create_card_entry	sound/core/snd
+0x00000000	xrlim_allow	vmlinux
+0x00000000	crypto_register_alg	vmlinux
+0x00000000	single_open	vmlinux
+0x00000000	put_filp	vmlinux
+0x00000000	snd_request_card	sound/core/snd
+0x00000000	snd_pcm_capture_poll	sound/core/snd-pcm
+0x00000000	snd_ac97_suspend	sound/pci/ac97/snd-ac97-codec
+0x00000000	kthread_stop	vmlinux
+0x00000000	snd_seq_kernel_client_ctl	sound/core/seq/snd-seq
+0x00000000	lockd_down	fs/lockd/lockd
+0x00000000	sysfs_update_file	vmlinux
+0x00000000	inter_module_unregister	vmlinux
+0x00000000	v4l2_prio_close	drivers/media/video/v4l2-common
+0x00000000	ext2_xattr_set	vmlinux
+0x00000000	ezusb_writememory	drivers/usb/serial/usbserial
+0x00000000	__snd_util_mem_free	sound/synth/snd-util-mem
+0x00000000	groups_free	vmlinux
+0x00000000	unregister_reboot_notifier	vmlinux
+0x00000000	dev_mc_upload	vmlinux
+0x00000000	sysfs_remove_dir	vmlinux
+0x00000000	copy_fs_struct	vmlinux
+0x00000000	generic_ide_ioctl	vmlinux
+0x00000000	usb_disabled	drivers/usb/core/usbcore
+0x00000000	neigh_parms_alloc	vmlinux
+0x00000000	subsystem_register	vmlinux
+0x00000000	interruptible_sleep_on	vmlinux
+0x00000000	usb_buffer_map_sg	drivers/usb/core/usbcore
+0x00000000	snd_pcm_format_set_silence	sound/core/snd-pcm
+0x00000000	blk_queue_invalidate_tags	vmlinux
+0x00000000	io_schedule	vmlinux
+0x00000000	usb_hcd_pci_resume	drivers/usb/core/usbcore
+0x00000000	cfb_fillrect	vmlinux
+0x00000000	isapnp_write_byte	vmlinux
+0x00000000	bitmap_and	vmlinux
+0x00000000	__pagevec_lru_add	vmlinux
+0x00000000	netlink_set_err	vmlinux
+0x00000000	agp_bridge	vmlinux
+0x00000000	inet_listen	vmlinux
+0x00000000	skb_queue_purge	vmlinux
+0x00000000	inode_update_time	vmlinux
+0x00000000	get_unmapped_area	vmlinux
+0x00000000	dmi_broken	vmlinux
+0x00000000	blk_rq_map_user	vmlinux
+0x00000000	platform_bus_type	vmlinux
+0x00000000	pnp_unregister_protocol	vmlinux
+0x00000000	subsystem_unregister	vmlinux
+0x00000000	d_find_alias	vmlinux
+0x00000000	yield	vmlinux
+0x00000000	print_sense	drivers/scsi/scsi_mod
+0x00000000	fb_destroy_modedb	vmlinux
+0x00000000	d_invalidate	vmlinux
+0x00000000	vmalloc_32	vmlinux
+0x00000000	input_register_handler	vmlinux
+0x00000000	dma_pool_free	vmlinux
+0x00000000	ipv4_config	vmlinux
+0x00000000	nr_pagecache	vmlinux
+0x00000000	__rta_fill	vmlinux
+0x00000000	__dst_free	vmlinux
+0x00000000	udp_hash_lock	vmlinux
+0x00000000	ide_stall_queue	vmlinux
+0x00000000	snd_pcm_format_little_endian	sound/core/snd-pcm
+0x00000000	crc32_le	lib/crc32
+0x00000000	sock_kfree_s	vmlinux
+0x00000000	export_op_default	fs/exportfs/exportfs
+0x00000000	ethtool_op_get_link	vmlinux
+0x00000000	input_unregister_device	vmlinux
+0x00000000	cap_bprm_secureexec	vmlinux
+0x00000000	read_cache_pages	vmlinux
+0x00000000	nlm_debug	net/sunrpc/sunrpc
+0x00000000	mii_nway_restart	drivers/net/mii
+0x00000000	fat_add_entries	fs/fat/fat
+0x00000000	ip_generic_getfrag	vmlinux
+0x00000000	call_netdevice_notifiers	vmlinux
+0x00000000	thaw_bdev	vmlinux
+0x00000000	generic_file_write	vmlinux
+0x00000000	videobuf_poll_stream	drivers/media/video/video-buf
+0x00000000	sk_run_filter	vmlinux
+0x00000000	bitmap_parse	vmlinux
+0x00000000	snd_pcm_format_width	sound/core/snd-pcm
+0x00000000	neigh_sysctl_unregister	vmlinux
+0x00000000	snd_mixer_oss_notify_callback	sound/core/snd
+0x00000000	__scm_destroy	vmlinux
+0x00000000	start_request	vmlinux
+0x00000000	d_move	vmlinux
+0x00000000	serio_register_port_delayed	vmlinux
+0x00000000	sock_wmalloc	vmlinux
+0x00000000	strstr	vmlinux
+0x00000000	pm_idle	vmlinux
+0x00000000	disable_hlt	vmlinux
+0x00000000	pnp_release_card_device	vmlinux
+0x00000000	pskb_expand_head	vmlinux
+0x00000000	ide_toggle_bounce	vmlinux
+0x00000000	pci_match_device	vmlinux
+0x00000000	i2c_release_client	drivers/i2c/i2c-core
+0x00000000	tcp_delete_keepalive_timer	vmlinux
+0x00000000	take_over_console	vmlinux
+0x00000000	i2c_pcf_add_bus	drivers/i2c/algos/i2c-algo-pcf
+0x00000000	proc_bus_pci_dir	vmlinux
+0x00000000	lock_may_write	vmlinux
+0x00000000	nmi_watchdog	vmlinux
+0x00000000	xdr_buf_read_netobj	net/sunrpc/sunrpc
+0x00000000	sock_wake_async	vmlinux
+0x00000000	neigh_dump_info	vmlinux
+0x00000000	eisa_driver_register	vmlinux
+0x00000000	__set_page_dirty_buffers	vmlinux
+0x00000000	synchronize_kernel	vmlinux
+0x00000000	dev_queue_xmit_nit	vmlinux
+0x00000000	scnprintf	vmlinux
+0x00000000	snd_seq_kernel_client_enqueue_blocking	sound/core/seq/snd-seq
+0x00000000	d_alloc_anon	vmlinux
+0x00000000	copy_strings_kernel	vmlinux
+0x00000000	arp_create	vmlinux
+0x00000000	no_llseek	vmlinux
+0x00000000	tcp_statistics	vmlinux
+0x00000000	rwsem_down_read_failed	vmlinux
+0x00000000	dev_ethtool	vmlinux
+0x00000000	ivideo	vmlinux
+0x00000000	atapi_output_bytes	vmlinux
+0x00000000	pm_send_all	vmlinux
+0x00000000	notifier_call_chain	vmlinux
+0x00000000	snd_util_memhdr_new	sound/synth/snd-util-mem
+0x00000000	fat_delete_inode	fs/fat/fat
+0x00000000	proc_root_driver	vmlinux
+0x00000000	autoremove_wake_function	vmlinux
+0x00000000	__wake_up_sync	vmlinux
+0x00000000	give_up_console	vmlinux
+0x00000000	getname	vmlinux
+0x00000000	snd_seq_root	sound/core/snd
+0x00000000	usb_hc_died	drivers/usb/core/usbcore
+0x00000000	ide_end_drive_cmd	vmlinux
+0x00000000	__ioremap	vmlinux
+0x00000000	free_irq	vmlinux
+0x00000000	usb_serial_probe	drivers/usb/serial/usbserial
+0x00000000	inetdev_lock	vmlinux
+0x00000000	filemap_fdatawait	vmlinux
+0x00000000	rpcauth_register	net/sunrpc/sunrpc
+0x00000000	snd_pcm_format_big_endian	sound/core/snd-pcm
+0x00000000	rpc_wake_up	net/sunrpc/sunrpc
+0x00000000	netpoll_parse_options	vmlinux
+0x00000000	pci_proc_attach_bus	vmlinux
+0x00000000	input_event	vmlinux
+0x00000000	simple_pin_fs	vmlinux
+0x00000000	schedule_delayed_work	vmlinux
+0x00000000	sock_no_sendpage	vmlinux
+0x00000000	midi_synth_load_patch	sound/oss/sound
+0x00000000	bitmap_scnprintf	vmlinux
+0x00000000	posix_block_lock	vmlinux
+0x00000000	snd_ecards_limit	sound/core/snd
+0x00000000	snd_midi_event_no_status	sound/core/seq/snd-seq-midi-event
+0x00000000	snd_ac97_write_cache	sound/pci/ac97/snd-ac97-codec
+0x00000000	uart_register_driver	vmlinux
+0x00000000	tasklist_lock	vmlinux
+0x00000000	ata_output_data	vmlinux
+0x00000000	dev_remove_pack	vmlinux
+0x00000000	pnp_auto_config_dev	vmlinux
+0x00000000	posix_lock_file	vmlinux
+0x00000000	set_page_dirty	vmlinux
+0x00000000	video_device_alloc	drivers/media/video/videodev
+0x00000000	set_fs_root	vmlinux
+0x00000000	totalram_pages	vmlinux
+0x00000000	generic_file_writev	vmlinux
+0x00000000	udp_disconnect	vmlinux
+0x00000000	install_page	vmlinux
+0x00000000	fb_pan_display	vmlinux
+0x00000000	fb_show_logo	vmlinux
+0x00000000	journal_get_write_access	vmlinux
+0x00000000	xdr_encode_opaque	net/sunrpc/sunrpc
+0x00000000	snd_timer_global_unregister	sound/core/snd-timer
+0x00000000	snd_rawmidi_new	sound/core/snd-rawmidi
+0x00000000	taskfile_lib_get_identify	vmlinux
+0x00000000	blk_queue_stack_limits	vmlinux
+0x00000000	sysdev_unregister	vmlinux
+0x00000000	pci_pci_problems	vmlinux
+0x00000000	usbvideo_DeinterlaceFrame	drivers/usb/media/usbvideo
+0x00000000	sk_send_sigurg	vmlinux
+0x00000000	pnp_is_active	vmlinux
+0x00000000	drop_super	vmlinux
+0x00000000	printk	vmlinux
+0x00000000	sk_alloc	vmlinux
+0x00000000	remove_inode_hash	vmlinux
+0x00000000	try_to_release_page	vmlinux
+0x00000000	rpcauth_lookup_credcache	net/sunrpc/sunrpc
+0x00000000	net_random	vmlinux
+0x00000000	kobject_add	vmlinux
+0x00000000	parport_register_device	drivers/parport/parport
+0x00000000	cdev_get	vmlinux
+0x00000000	usb_get_urb	drivers/usb/core/usbcore
+0x00000000	pci_scan_single_device	vmlinux
+0x00000000	simple_dir_operations	vmlinux
+0x00000000	agp_generic_remove_memory	vmlinux
+0x00000000	snd_info_get_line	sound/core/snd
+0x00000000	snd_dma_pointer	sound/core/snd
+0x00000000	snd_register_oss_device	sound/core/snd
+0x00000000	ip_statistics	vmlinux
+0x00000000	elv_add_request	vmlinux
+0x00000000	serial8250_suspend_port	vmlinux
+0x00000000	fg_console	vmlinux
+0x00000000	kernel_read	vmlinux
+0x00000000	vfs_read	vmlinux
+0x00000000	parport_write	drivers/parport/parport
+0x00000000	__nvram_write_byte	drivers/char/nvram
+0x00000000	memcpy_fromiovec	vmlinux
+0x00000000	blk_queue_prep_rq	vmlinux
+0x00000000	pci_bus_find_capability	vmlinux
+0x00000000	cache_clean	net/sunrpc/sunrpc
+0x00000000	sysdev_class_register	vmlinux
+0x00000000	journal_unlock_updates	vmlinux
+0x00000000	videobuf_streamon	drivers/media/video/video-buf
+0x00000000	agp_collect_device_status	vmlinux
+0x00000000	bio_alloc	vmlinux
+0x00000000	__get_free_pages	vmlinux
+0x00000000	disallow_signal	vmlinux
+0x00000000	DMAbuf_inputintr	sound/oss/sound
+0x00000000	tcp_write_wakeup	vmlinux
+0x00000000	snd_kcalloc	sound/core/snd
+0x00000000	pwc_decompressor_version	drivers/usb/media/pwc
+0x00000000	parport_ieee1284_write_compat	drivers/parport/parport
+0x00000000	bttv_gpio_bits	drivers/media/video/bttv
+0x00000000	ipv4_specific	vmlinux
+0x00000000	snd_util_memhdr_free	sound/synth/snd-util-mem
+0x00000000	radix_tree_lookup	vmlinux
+0x00000000	match_strdup	vmlinux
+0x00000000	vfs_rename	vmlinux
+0x00000000	generic_ro_fops	vmlinux
+0x00000000	kthread_bind	vmlinux
+0x00000000	videobuf_alloc	drivers/media/video/video-buf
+0x00000000	usb_serial_port_softint	drivers/usb/serial/usbserial
+0x00000000	snd_midi_channel_set_clear	sound/core/seq/snd-seq-midi-emul
+0x00000000	snd_pcm_capture_empty	sound/core/snd-pcm
+0x00000000	cache_register	net/sunrpc/sunrpc
+0x00000000	inetdev_by_index	vmlinux
+0x00000000	ei_tx_timeout	drivers/net/8390
+0x00000000	filemap_fdatawrite	vmlinux
+0x00000000	dev_base_lock	vmlinux
+0x00000000	console_blank_hook	vmlinux
+0x00000000	bio_hw_segments	vmlinux
+0x00000000	get_sb_bdev	vmlinux
+0x00000000	file_fsync	vmlinux
+0x00000000	sis_malloc	vmlinux
+0x00000000	dma_pool_create	vmlinux
+0x00000000	block_all_signals	vmlinux
+0x00000000	usb_hcd_pci_probe	drivers/usb/core/usbcore
+0x00000000	dma_pool_destroy	vmlinux
+0x00000000	tty_name	vmlinux
+0x00000000	destroy_workqueue	vmlinux
+0x00000000	ac97_save_state	sound/oss/ac97_codec
+0x00000000	do_SAK	vmlinux
+0x00000000	pci_save_state	vmlinux
+0x00000000	check_disk_change	vmlinux
+0x00000000	param_get_uint	vmlinux
+0x00000000	get_wchan	vmlinux
+0x00000000	pci_find_subsys	vmlinux
+0x00000000	rpc_sleep_on	net/sunrpc/sunrpc
+0x00000000	sysctl_tcp_tw_recycle	vmlinux
+0x00000000	get_option	vmlinux
+0x00000000	snd_pcm_playback_data	sound/core/snd-pcm
+0x00000000	inet_accept	vmlinux
+0x00000000	pci_set_consistent_dma_mask	vmlinux
+0x00000000	bttv_get_cardinfo	drivers/media/video/bttv
+0x00000000	__pskb_pull_tail	vmlinux
+0x00000000	tty_wait_until_sent	vmlinux
+0x00000000	vfs_fstat	vmlinux
+0x00000000	vfs_lstat	vmlinux
+0x00000000	dma_spin_lock	vmlinux
+0x00000000	vesa_modes	vmlinux
+0x00000000	dma_ioctl	sound/oss/sound
+0x00000000	agp_try_unsupported_boot	vmlinux
+0x00000000	generic_fillattr	vmlinux
+0x00000000	mempool_alloc_slab	vmlinux
+0x00000000	param_set_invbool	vmlinux
+0x00000000	SELECT_MASK	vmlinux
+0x00000000	pci_bus_alloc_resource	vmlinux
+0x00000000	svc_drop	net/sunrpc/sunrpc
+0x00000000	ide_do_reset	vmlinux
+0x00000000	skb_clone	vmlinux
+0x00000000	setup_arg_pages	vmlinux
+0x00000000	bttv_get_gpio_queue	drivers/media/video/bttv
+0x00000000	sysctl_jiffies	vmlinux
+0x00000000	snd_seq_event_port_detach	sound/core/seq/snd-seq
+0x00000000	net_statistics	vmlinux
+0x00000000	tcp_init_xmit_timers	vmlinux
+0x00000000	vt_cons	vmlinux
+0x00000000	make_bad_inode	vmlinux
+0x00000000	videobuf_dma_init_kernel	drivers/media/video/video-buf
+0x00000000	gss_mech_unregister	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	seq_release_private	vmlinux
+0x00000000	snd_ctl_remove	sound/core/snd
+0x00000000	blk_max_pfn	vmlinux
+0x00000000	add_interrupt_randomness	vmlinux
+0x00000000	pnp_register_protocol	vmlinux
+0x00000000	auth_domain_lookup	net/sunrpc/sunrpc
+0x00000000	fb_get_mode	vmlinux
+0x00000000	update_atime	vmlinux
+0x00000000	vfs_readv	vmlinux
+0x00000000	do_sync_write	vmlinux
+0x00000000	snd_pcm_release	sound/core/snd-pcm
+0x00000000	tcp_listen_wlock	vmlinux
+0x00000000	pre_task_mulout_intr	vmlinux
+0x00000000	search_binary_handler	vmlinux
+0x00000000	videobuf_streamoff	drivers/media/video/video-buf
+0x00000000	tcp_disconnect	vmlinux
+0x00000000	put_device	vmlinux
+0x00000000	bio_pair_release	vmlinux
+0x00000000	journal_start	vmlinux
+0x00000000	register_filesystem	vmlinux
+0x00000000	loops_per_jiffy	vmlinux
+0x00000000	num_mixers	sound/oss/sound
+0x00000000	snd_create_proc_entry	sound/core/snd
+0x00000000	sound_timer_syncinterval	sound/oss/sound
+0x00000000	generic_make_request	vmlinux
+0x00000000	software_suspend	vmlinux
+0x00000000	queue_delayed_work	vmlinux
+0x00000000	parport_open	drivers/parport/parport
+0x00000000	ip_send_check	vmlinux
+0x00000000	RingQueue_WakeUpInterruptible	drivers/usb/media/usbvideo
+0x00000000	filemap_flush	vmlinux
+0x00000000	midi_synth_hw_control	sound/oss/sound
+0x00000000	snd_cards_count	sound/core/snd
+0x00000000	lookup_mnt	vmlinux
+0x00000000	unix_domain_find	net/sunrpc/sunrpc
+0x00000000	i2c_smbus_read_i2c_block_data	drivers/i2c/i2c-core
+0x00000000	strnlen_user	vmlinux
+0x00000000	snd_dma_alloc_pages_fallback	sound/core/snd-page-alloc
+0x00000000	cpia_register_camera	drivers/media/video/cpia
+0x00000000	dev_get_by_name	vmlinux
+0x00000000	unregister_sound_midi	sound/soundcore
+0x00000000	ip_options_undo	vmlinux
+0x00000000	pnp_add_id	vmlinux
+0x00000000	generic_cont_expand	vmlinux
+0x00000000	snd_ctl_register_ioctl	sound/core/snd
+0x00000000	udp_prot	vmlinux
+0x00000000	mb_cache_shrink	vmlinux
+0x00000000	v4l2_type_names	drivers/media/video/v4l2-common
+0x00000000	ir_input_nokey	drivers/media/common/ir-common
+0x00000000	mark_page_accessed	vmlinux
+0x00000000	scsi_report_bus_reset	drivers/scsi/scsi_mod
+0x00000000	pnpbios_protocol	vmlinux
+0x00000000	bitmap_equal	vmlinux
+0x00000000	cdev_add	vmlinux
+0x00000000	block_sync_page	vmlinux
+0x00000000	snd_timer_new	sound/core/snd-timer
+0x00000000	dev_mc_add	vmlinux
+0x00000000	sock_no_release	vmlinux
+0x00000000	fb_blank	vmlinux
+0x00000000	utf8_mbtowc	vmlinux
+0x00000000	open_exec	vmlinux
+0x00000000	mb_cache_entry_find_next	vmlinux
+0x00000000	usb_register_root_hub	drivers/usb/core/usbcore
+0x00000000	pnp_activate_dev	vmlinux
+0x00000000	journal_forget	vmlinux
+0x00000000	usb_epnum_to_ep_desc	drivers/usb/core/usbcore
+0x00000000	__set_page_dirty_nobuffers	vmlinux
+0x00000000	_snd_pcm_hw_param_setinteger	sound/core/snd-pcm
+0x00000000	__tcp_mem_reclaim	vmlinux
+0x00000000	scsi_bios_ptable	drivers/scsi/scsi_mod
+0x00000000	dev_set_promiscuity	vmlinux
+0x00000000	iosched_deadline	vmlinux
+0x00000000	snd_mpu401_uart_interrupt	sound/drivers/mpu401/snd-mpu401-uart
+0x00000000	neigh_connected_output	vmlinux
+0x00000000	param_set_ushort	vmlinux
+0x00000000	svc_recv	net/sunrpc/sunrpc
+0x00000000	snd_timer_notify	sound/core/snd-timer
+0x00000000	inet_peer_idlock	vmlinux
+0x00000000	netlink_kernel_create	vmlinux
+0x00000000	pci_find_slot	vmlinux
+0x00000000	schedule	vmlinux
+0x00000000	apm_info	vmlinux
+0x00000000	init_task	vmlinux
+0x00000000	video_devdata	drivers/media/video/videodev
+0x00000000	rpc_execute	net/sunrpc/sunrpc
+0x00000000	compute_finetune	sound/oss/sound
+0x00000000	snd_rawmidi_transmit_peek	sound/core/snd-rawmidi
+0x00000000	__insert_inode_hash	vmlinux
+0x00000000	fs_overflowgid	vmlinux
+0x00000000	snd_midi_event_reset_decode	sound/core/seq/snd-seq-midi-event
+0x00000000	blk_rq_bio_prep	vmlinux
+0x00000000	bio_clone	vmlinux
+0x00000000	pci_mem_start	vmlinux
+0x00000000	snd_card_proc_new	sound/core/snd
+0x00000000	end_request	vmlinux
+0x00000000	netlink_broadcast_deliver	vmlinux
+0x00000000	tcp_destroy_sock	vmlinux
+0x00000000	unregister_blkdev	vmlinux
+0x00000000	write_inode_now	vmlinux
+0x00000000	fat_search_long	fs/fat/fat
+0x00000000	seq_path	vmlinux
+0x00000000	g_verify_token_header	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	rtnl_sem	vmlinux
+0x00000000	agp_create_memory	vmlinux
+0x00000000	radix_tree_tag_clear	vmlinux
+0x00000000	generic_file_open	vmlinux
+0x00000000	default_unplug_io_fn	vmlinux
+0x00000000	abi_defhandler_coff	vmlinux
+0x00000000	subsys_create_file	vmlinux
+0x00000000	d_instantiate	vmlinux
+0x00000000	elv_completed_request	vmlinux
+0x00000000	agp_generic_create_gatt_table	vmlinux
+0x00000000	crc32_be	lib/crc32
+0x00000000	sysdev_create_file	vmlinux
+0x00000000	open_bdev_excl	vmlinux
+0x00000000	rpc_restart_call	net/sunrpc/sunrpc
+0x00000000	snd_task_name	sound/core/snd
+0x00000000	ip_rt_ioctl	vmlinux
+0x00000000	tcp_transmit_skb	vmlinux
+0x00000000	fb_con	vmlinux
+0x00000000	sound_open_dma	sound/oss/sound
+0x00000000	skb_queue_tail	vmlinux
+0x00000000	ov511_deregister_decomp_module	drivers/usb/media/ov511
+0x00000000	mark_buffer_dirty_inode	vmlinux
+0x00000000	queue_work	vmlinux
+0x00000000	release_console_sem	vmlinux
+0x00000000	elevator_init	vmlinux
+0x00000000	tty_check_change	vmlinux
+0x00000000	tty_register_ldisc	vmlinux
+0x00000000	kill_fasync	vmlinux
+0x00000000	sock_alloc	vmlinux
+0x00000000	snd_dma_set_reserved	sound/core/snd-page-alloc
+0x00000000	snd_dma_get_reserved	sound/core/snd-page-alloc
+0x00000000	schedule_timeout	vmlinux
+0x00000000	scsi_add_host	drivers/scsi/scsi_mod
+0x00000000	netlink_dump_start	vmlinux
+0x00000000	pciehp_msi_quirk	vmlinux
+0x00000000	aio_put_req	vmlinux
+0x00000000	is_subdir	vmlinux
+0x00000000	neigh_destroy	vmlinux
+0x00000000	snd_ctl_rename_id	sound/core/snd
+0x00000000	pskb_copy	vmlinux
+0x00000000	class_unregister	vmlinux
+0x00000000	scsi_host_lookup	drivers/scsi/scsi_mod
+0x00000000	i2c_smbus_read_byte_data	drivers/i2c/i2c-core
+0x00000000	pci_find_capability	vmlinux
+0x00000000	int_sqrt	vmlinux
+0x00000000	local_bh_enable	vmlinux
+0x00000000	snd_pcm_suspend	sound/core/snd-pcm
+0x00000000	journal_dirty_metadata	vmlinux
+0x00000000	call_usermodehelper	vmlinux
+0x00000000	video_unregister_device	drivers/media/video/videodev
+0x00000000	snd_card_set_pm_callback	sound/core/snd
+0x00000000	udp_protocol	vmlinux
+0x00000000	__dev_get_by_name	vmlinux
+0x00000000	skb_copy_and_csum_dev	vmlinux
+0x00000000	snd_timer_continue	sound/core/snd-timer
+0x00000000	register_netdev	vmlinux
+0x00000000	posix_acl_from_xattr	vmlinux
+0x00000000	scsi_device_lookup	drivers/scsi/scsi_mod
+0x00000000	i2c_transfer	drivers/i2c/i2c-core
+0x00000000	param_set_int	vmlinux
+0x00000000	xdr_inline_pages	net/sunrpc/sunrpc
+0x00000000	snd_card_file_add	sound/core/snd
+0x00000000	nvram_write_byte	drivers/char/nvram
+0x00000000	sysctl_local_port_range	vmlinux
+0x00000000	snd_midi_event_new	sound/core/seq/snd-seq-midi-event
+0x00000000	param_set_short	vmlinux
+0x00000000	skb_pad	vmlinux
+0x00000000	generic_file_llseek	vmlinux
+0x00000000	videobuf_dma_pci_sync	drivers/media/video/video-buf
+0x00000000	snd_info_create_module_entry	sound/core/snd
+0x00000000	snd_trident_synth_free	sound/pci/trident/snd-trident
+0x00000000	ei_interrupt	drivers/net/8390
+0x00000000	ide_xfer_verbose	vmlinux
+0x00000000	bitmap_weight	vmlinux
+0x00000000	vfree	vmlinux
+0x00000000	wait_on_page_bit	vmlinux
+0x00000000	scsi_get_host_dev	drivers/scsi/scsi_mod
+0x00000000	neigh_update_hhs	vmlinux
+0x00000000	dma_pool_alloc	vmlinux
+0x00000000	set_selection	vmlinux
+0x00000000	generic_file_sendfile	vmlinux
+0x00000000	usb_register	drivers/usb/core/usbcore
+0x00000000	tcp_v4_do_rcv	vmlinux
+0x00000000	blk_dump_rq_flags	vmlinux
+0x00000000	get_device	vmlinux
+0x00000000	sysfs_create_group	vmlinux
+0x00000000	scsi_add_device	drivers/scsi/scsi_mod
+0x00000000	g_make_token_header	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	snd_opl3_hwdep_new	sound/drivers/opl3/snd-opl3-lib
+0x00000000	ethtool_op_get_tso	vmlinux
+0x00000000	kobject_register	vmlinux
+0x00000000	xprt_destroy	net/sunrpc/sunrpc
+0x00000000	tcp_prot	vmlinux
+0x00000000	ide_pio_timings	vmlinux
+0x00000000	raise_softirq_irqoff	vmlinux
+0x00000000	blk_queue_max_phys_segments	vmlinux
+0x00000000	pci_register_driver	vmlinux
+0x00000000	simple_getattr	vmlinux
+0x00000000	mempool_free	vmlinux
+0x00000000	journal_init_inode	vmlinux
+0x00000000	tcp_rcv_state_process	vmlinux
+0x00000000	ethtool_op_get_tx_csum	vmlinux
+0x00000000	agp_alloc_bridge	vmlinux
+0x00000000	sscanf	vmlinux
+0x00000000	__breadahead	vmlinux
+0x00000000	snd_pcm_hw_constraint_integer	sound/core/snd-pcm
+0x00000000	journal_stop	vmlinux
+0x00000000	wait_for_completion	vmlinux
+0x00000000	usb_unlink_urb	drivers/usb/core/usbcore
+0x00000000	i2c_smbus_write_byte_data	drivers/i2c/i2c-core
+0x00000000	agp_add_bridge	vmlinux
+0x00000000	snd_dma_alloc_pages	sound/core/snd-page-alloc
+0x00000000	put_rpccred	net/sunrpc/sunrpc
+0x00000000	snd_card_pci_suspend	sound/core/snd
+0x00000000	sock_create_lite	vmlinux
+0x00000000	snd_seq_event_port_attach	sound/core/seq/snd-seq
+0x00000000	cdrom_release	drivers/cdrom/cdrom
+0x00000000	tcp_timewait_state_process	vmlinux
+0x00000000	mod_firmware_load	sound/soundcore
+0x00000000	parport_wait_event	drivers/parport/parport
+0x00000000	clear_page_dirty_for_io	vmlinux
+0x00000000	snd_rawmidi_kernel_write	sound/core/snd-rawmidi
+0x00000000	tty_get_baud_rate	vmlinux
+0x00000000	vfs_follow_link	vmlinux
+0x00000000	sysdev_class_unregister	vmlinux
+0x00000000	usb_bus_init	drivers/usb/core/usbcore
+0x00000000	cache_init	net/sunrpc/sunrpc
+0x00000000	bitmap_full	vmlinux
+0x00000000	serio_register_port	vmlinux
+0x00000000	request_module	vmlinux
+0x00000000	jiffies	vmlinux
+0x00000000	dev_queue_xmit	vmlinux
+0x00000000	proc_mkdir	vmlinux
+0x00000000	parport_find_base	drivers/parport/parport
+0x00000000	blk_rq_map_sg	vmlinux
+0x00000000	mark_buffer_async_read	vmlinux
+0x00000000	xtime	vmlinux
+0x00000000	proc_dointvec_jiffies	vmlinux
+0x00000000	usb_set_interface	drivers/usb/core/usbcore
+0x00000000	ide_setup_pci_devices	vmlinux
+0x00000000	get_dcookie	vmlinux
+0x00000000	strspn	vmlinux
+0x00000000	snd_pcm_kernel_capture_ioctl	sound/core/snd-pcm
+0x00000000	add_keyboard_randomness	vmlinux
+0x00000000	conf_printf2	sound/oss/sound
+0x00000000	snd_ac97_mixer	sound/pci/ac97/snd-ac97-codec
+0x00000000	parport_announce_port	drivers/parport/parport
+0x00000000	boot_cpu_data	vmlinux
+0x00000000	cleanup_module	vmlinux
+0x00000000	svc_proc_register	net/sunrpc/sunrpc
+0x00000000	snd_seq_delete_kernel_client	sound/core/seq/snd-seq
+0x00000000	default_hwif_transport	vmlinux
+0x00000000	radix_tree_tag_set	vmlinux
+0x00000000	match_int	vmlinux
+0x00000000	__generic_file_aio_read	vmlinux
+0x00000000	sysctl_string	vmlinux
+0x00000000	usb_hcd_operations	drivers/usb/core/usbcore
+0x00000000	snd_pcm_kernel_ioctl	sound/core/snd-pcm
+0x00000000	proc_sys_root	vmlinux
+0x00000000	__page_cache_release	vmlinux
+0x00000000	i2c_get_adapter	drivers/i2c/i2c-core
+0x00000000	get_options	vmlinux
+0x00000000	print_req_sense	drivers/scsi/scsi_mod
+0x00000000	bttv_sub_bus_type	drivers/media/video/bttv
+0x00000000	rtnetlink_links	vmlinux
+0x00000000	input_unregister_handler	vmlinux
+0x00000000	agp_generic_alloc_by_type	vmlinux
+0x00000000	MIDIbuf_avail	sound/oss/sound
+0x00000000	fat_fill_super	fs/fat/fat
+0x00000000	pci_remove_behind_bridge	vmlinux
+0x00000000	register_exec_domain	vmlinux
+0x00000000	ide_taskfile_ioctl	vmlinux
+0x00000000	pci_bus_write_config_word	vmlinux
+0x00000000	ptrace_notify	vmlinux
+0x00000000	dump_thread	vmlinux
+0x00000000	snd_info_free_entry	sound/core/snd
+0x00000000	print_hexl	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	pci_release_region	vmlinux
+0x00000000	proc_net	vmlinux
+0x00000000	__copy_to_user_ll	vmlinux
+0x00000000	pci_find_device_reverse	vmlinux
+0x00000000	generic_file_fcntl	vmlinux
+0x00000000	snd_pcm_set_ops	sound/core/snd-pcm
+0x00000000	tcp_v4_lookup_listener	vmlinux
+0x00000000	__ide_dma_check	vmlinux
+0x00000000	seq_printf	vmlinux
+0x00000000	neigh_delete	vmlinux
+0x00000000	pci_dev_driver	vmlinux
+0x00000000	simple_strtol	vmlinux
+0x00000000	rwsem_downgrade_wake	vmlinux
+0x00000000	parport_close	drivers/parport/parport
+0x00000000	pci_set_power_state	vmlinux
+0x00000000	remote_llseek	vmlinux
+0x00000000	pci_bus_size_bridges	vmlinux
+0x00000000	vfs_stat	vmlinux
+0x00000000	__bio_clone	vmlinux
+0x00000000	total_swap_pages	vmlinux
+0x00000000	snd_pcm_lib_malloc_pages	sound/core/snd-pcm
+0x00000000	sysdev_driver_register	vmlinux
+0x00000000	scsi_block_when_processing_errors	drivers/scsi/scsi_mod
+0x00000000	serio_unregister_port_delayed	vmlinux
+0x00000000	agp3_generic_fetch_size	vmlinux
+0x00000000	f_delown	vmlinux
+0x00000000	f_setown	vmlinux
+0x00000000	usb_clear_halt	drivers/usb/core/usbcore
+0x00000000	xdr_encode_string	net/sunrpc/sunrpc
+0x00000000	snd_seq_instr_find	sound/core/seq/snd-seq-instr
+0x00000000	submit_bh	vmlinux
+0x00000000	console_print	vmlinux
+0x00000000	ac97_probe_codec	sound/oss/ac97_codec
+0x00000000	rb_insert_color	vmlinux
+0x00000000	__inode_dir_notify	vmlinux
+0x00000000	xprt_udp_slot_table_entries	net/sunrpc/sunrpc
+0x00000000	tcp_protocol	vmlinux
+0x00000000	pnp_remove_card_device	vmlinux
+0x00000000	symbol_put_addr	vmlinux
+0x00000000	usb_buffer_unmap	drivers/usb/core/usbcore
+0x00000000	i2c_smbus_read_word_data	drivers/i2c/i2c-core
+0x00000000	ide_pci_create_host_proc	vmlinux
+0x00000000	d_alloc	vmlinux
+0x00000000	journal_extend	vmlinux
+0x00000000	usb_disconnect	drivers/usb/core/usbcore
+0x00000000	parport_ieee1284_wakeup	drivers/parport/parport
+0x00000000	udp_proc_register	vmlinux
+0x00000000	__ide_dma_end	vmlinux
+0x00000000	nr_free_pages	vmlinux
+0x00000000	clear_user	vmlinux
+0x00000000	clear_inode	vmlinux
+0x00000000	usbvideo_TestPattern	drivers/usb/media/usbvideo
+0x00000000	ir_input_keydown	drivers/media/common/ir-common
+0x00000000	neigh_parms_release	vmlinux
+0x00000000	device_release_driver	vmlinux
+0x00000000	copy_from_user_toio	sound/core/snd
+0x00000000	snd_trident_start_voice	sound/pci/trident/snd-trident
+0x00000000	scsi_register_interface	drivers/scsi/scsi_mod
+0x00000000	i2c_smbus_read_block_data	drivers/i2c/i2c-core
+0x00000000	set_current_groups	vmlinux
+0x00000000	register_profile_notifier	vmlinux
+0x00000000	update_region	vmlinux
+0x00000000	usb_deregister_bus	drivers/usb/core/usbcore
+0x00000000	scm_fp_dup	vmlinux
+0x00000000	tty_vhangup	vmlinux
+0x00000000	shrink_dcache_parent	vmlinux
+0x00000000	user_get_super	vmlinux
+0x00000000	v4l2_prio_init	drivers/media/video/v4l2-common
+0x00000000	synchronize_net	vmlinux
+0x00000000	ide_cmd	vmlinux
+0x00000000	bus_for_each_drv	vmlinux
+0x00000000	bus_for_each_dev	vmlinux
+0x00000000	parport_negotiate	drivers/parport/parport
+0x00000000	pneigh_lookup	vmlinux
+0x00000000	uart_register_port	vmlinux
+0x00000000	__udelay	vmlinux
+0x00000000	__ndelay	vmlinux
+0x00000000	snd_timer_close	sound/core/snd-timer
+0x00000000	tcp_connect_init	vmlinux
+0x00000000	blk_queue_find_tag	vmlinux
+0x00000000	in_egroup_p	vmlinux
+0x00000000	fb_alloc_cmap	vmlinux
+0x00000000	tty_termios_baud_rate	vmlinux
+0x00000000	rpc_release_task	net/sunrpc/sunrpc
+0x00000000	zlib_inflateInit_	lib/zlib_inflate/zlib_inflate
+0x00000000	tcp_child_process	vmlinux
+0x00000000	param_get_charp	vmlinux
+0x00000000	ide_wait_stat	vmlinux
+0x00000000	prepare_binprm	vmlinux
+0x00000000	__print_symbol	vmlinux
+0x00000000	ide_dump_status	vmlinux
+0x00000000	sysdev_register	vmlinux
+0x00000000	sprintf	vmlinux
+0x00000000	simple_unlink	vmlinux
+0x00000000	net_ratelimit	vmlinux
+0x00000000	posix_acl_valid	vmlinux
+0x00000000	inter_module_put	vmlinux
+0x00000000	inter_module_get	vmlinux
+0x00000000	snd_seq_instr_list_free	sound/core/seq/snd-seq-instr
+0x00000000	scsi_register	drivers/scsi/scsi_mod
+0x00000000	journal_dirty_data	vmlinux
+0x00000000	find_vma	vmlinux
+0x00000000	hcd_buffer_create	drivers/usb/core/usbcore
+0x00000000	ide_do_request	vmlinux
+0x00000000	inet_stream_connect	vmlinux
+0x00000000	screen_info	vmlinux
+0x00000000	pci_release_regions	vmlinux
+0x00000000	videobuf_reqbufs	drivers/media/video/video-buf
+0x00000000	snd_util_mem_free	sound/synth/snd-util-mem
+0x00000000	snd_seq_simple_init	sound/core/seq/instr/snd-ainstr-simple
+0x00000000	usb_get_string	drivers/usb/core/usbcore
+0x00000000	journal_ack_err	vmlinux
+0x00000000	midi_devs	sound/oss/sound
+0x00000000	tcp_rcv_established	vmlinux
+0x00000000	simple_strtoul	vmlinux
+0x00000000	balance_dirty_pages_ratelimited	vmlinux
+0x00000000	proc_symlink	vmlinux
+0x00000000	videobuf_qbuf	drivers/media/video/video-buf
+0x00000000	parport_ieee1284_epp_write_data	drivers/parport/parport
+0x00000000	parport_ieee1284_ecp_write_data	drivers/parport/parport
+0x00000000	QUIRK_LIST	vmlinux
+0x00000000	blk_queue_dma_alignment	vmlinux
+0x00000000	sysfs_rename_dir	vmlinux
+0x00000000	enable_irq	vmlinux
+0x00000000	enable_hlt	vmlinux
+0x00000000	try_to_flush_leftover_data	vmlinux
+0x00000000	agp_unbind_memory	vmlinux
+0x00000000	tcp_v4_rebuild_header	vmlinux
+0x00000000	inet_sock_release	vmlinux
+0x00000000	insert_resource	vmlinux
+0x00000000	submit_bio	vmlinux
+0x00000000	console_printk	vmlinux
+0x00000000	neigh_lookup	vmlinux
+0x00000000	machine_power_off	vmlinux
+0x00000000	snd_pcm_build_linear_format	sound/core/snd-pcm
+0x00000000	cache_purge	net/sunrpc/sunrpc
+0x00000000	inode_setattr	vmlinux
+0x00000000	alloc_buffer_head	vmlinux
+0x00000000	xdr_write_pages	net/sunrpc/sunrpc
+0x00000000	ip_route_input	vmlinux
+0x00000000	device_remove_file	vmlinux
+0x00000000	file_lock_list	vmlinux
+0x00000000	snd_pcm_lib_preallocate_free	sound/core/snd-pcm
+0x00000000	ip_options_compile	vmlinux
+0x00000000	ide_destroy_dmatable	vmlinux
+0x00000000	aio_complete	vmlinux
+0x00000000	param_get_ulong	vmlinux
+0x00000000	sysctl_intvec	vmlinux
+0x00000000	i2c_del_driver	drivers/i2c/i2c-core
+0x00000000	blk_remove_plug	vmlinux
+0x00000000	i2c_bit_del_bus	drivers/i2c/algos/i2c-algo-bit
+0x00000000	move_addr_to_kernel	vmlinux
+0x00000000	file_ra_state_init	vmlinux
+0x00000000	snd_rawmidi_kernel_release	sound/core/snd-rawmidi
+0x00000000	i2c_clients_command	drivers/i2c/i2c-core
+0x00000000	add_to_page_cache	vmlinux
+0x00000000	ROOT_DEV	vmlinux
+0x00000000	usb_get_status	drivers/usb/core/usbcore
+0x00000000	svc_auth_register	net/sunrpc/sunrpc
+0x00000000	flow_cache_genid	vmlinux
+0x00000000	input_class	vmlinux
+0x00000000	agp_backend_release	vmlinux
+0x00000000	pci_set_master	vmlinux
+0x00000000	taskfile_input_data	vmlinux
+0x00000000	vc_cons	vmlinux
+0x00000000	task_mulout_intr	vmlinux
+0x00000000	strlcat	vmlinux
+0x00000000	posix_acl_chmod_masq	vmlinux
+0x00000000	kthread_should_stop	vmlinux
+0x00000000	snd_ac97_bus	sound/pci/ac97/snd-ac97-codec
+0x00000000	sync_mapping_buffers	vmlinux
+0x00000000	__nvram_read_byte	drivers/char/nvram
+0x00000000	fat_scan	fs/fat/fat
+0x00000000	inode_change_ok	vmlinux
+0x00000000	snd_pcm_hw_constraint_minmax	sound/core/snd-pcm
+0x00000000	fat_dir_ioctl	fs/fat/fat
+0x00000000	datagram_poll	vmlinux
+0x00000000	ide_timer_expiry	vmlinux
+0x00000000	blk_queue_end_tag	vmlinux
+0x00000000	snd_midi_event_free	sound/core/seq/snd-seq-midi-event
+0x00000000	parport_device_num	drivers/parport/parport
+0x00000000	bttv_gpio_read	drivers/media/video/bttv
+0x00000000	flush_old_exec	vmlinux
+0x00000000	bttv_gpio_write	drivers/media/video/bttv
+0x00000000	inet_addr_type	vmlinux
+0x00000000	inet_recvmsg	vmlinux
+0x00000000	sock_disable_timestamp	vmlinux
+0x00000000	__sysrq_lock_table	vmlinux
+0x00000000	mii_link_ok	drivers/net/mii
+0x00000000	def_blk_fops	vmlinux
+0x00000000	midi_synth_kill_note	sound/oss/sound
+0x00000000	tcp_proc_register	vmlinux
+0x00000000	stop_tty	vmlinux
+0x00000000	lookup_create	vmlinux
+0x00000000	get_sb_nodev	vmlinux
+0x00000000	kthread_create	vmlinux
+0x00000000	usbvideo_SayAndWait	drivers/usb/media/usbvideo
+0x00000000	qdisc_restart	vmlinux
+0x00000000	loopback_dev	vmlinux
+0x00000000	snd_pcm_hw_constraint_ratnums	sound/core/snd-pcm
+0x00000000	snd_seq_fm_id	sound/core/seq/instr/snd-ainstr-fm
+0x00000000	__scsi_mode_sense	drivers/scsi/scsi_mod
+0x00000000	neigh_ifdown	vmlinux
+0x00000000	pwc_register_decompressor	drivers/usb/media/pwc
+0x00000000	pci_scan_bridge	vmlinux
+0x00000000	sound_alloc_mididev	sound/oss/sound
+0x00000000	fb_move_buf_unaligned	vmlinux
+0x00000000	svc_process	net/sunrpc/sunrpc
+0x00000000	register_sound_special	sound/soundcore
+0x00000000	snd_pcm_hw_param_mask	sound/core/snd-pcm
+0x00000000	parport_unregister_device	drivers/parport/parport
+0x00000000	alloc_chrdev_region	vmlinux
+0x00000000	rpc_killall_tasks	net/sunrpc/sunrpc
+0x00000000	arp_find	vmlinux
+0x00000000	net_srandom	vmlinux
+0x00000000	dev_getbyhwaddr	vmlinux
+0x00000000	skb_checksum	vmlinux
+0x00000000	rb_next	vmlinux
+0x00000000	finish_wait	vmlinux
+0x00000000	sock_getsockopt	vmlinux
+0x00000000	simple_strtoull	vmlinux
+0x00000000	fb_edid_to_monspecs	vmlinux
+0x00000000	default_red	vmlinux
+0x00000000	generate_random_uuid	vmlinux
+0x00000000	__ide_dma_host_on	vmlinux
+0x00000000	path_release	vmlinux
+0x00000000	vfs_statfs	vmlinux
+0x00000000	scsi_release_request	drivers/scsi/scsi_mod
+0x00000000	kill_pg_info	vmlinux
+0x00000000	udp_ioctl	vmlinux
+0x00000000	rtnetlink_put_metrics	vmlinux
+0x00000000	class_device_del	vmlinux
+0x00000000	may_umount	vmlinux
+0x00000000	mmu_cr4_features	vmlinux
+0x00000000	sequencer_timer	sound/oss/sound
+0x00000000	block_read_full_page	vmlinux
+0x00000000	fat_clear_inode	fs/fat/fat
+0x00000000	save_processor_state	vmlinux
+0x00000000	put_bus	vmlinux
+0x00000000	pm_unregister_all	vmlinux
+0x00000000	tcp_v4_connect	vmlinux
+0x00000000	tcp_sync_mss	vmlinux
+0x00000000	snd_rawmidi_input_params	sound/core/snd-rawmidi
+0x00000000	serio_rescan	vmlinux
+0x00000000	framebuffer_alloc	vmlinux
+0x00000000	bio_get_nr_vecs	vmlinux
+0x00000000	cent_tuning	sound/oss/sound
+0x00000000	set_multmode_intr	vmlinux
+0x00000000	ide_register_driver	vmlinux
+0x00000000	load_nls_default	vmlinux
+0x00000000	kmem_cache_create	vmlinux
+0x00000000	fat_write_inode	fs/fat/fat
+0x00000000	seq_escape	vmlinux
+0x00000000	dev_get_by_flags	vmlinux
+0x00000000	d_alloc_root	vmlinux
+0x00000000	skb_over_panic	vmlinux
+0x00000000	i2c_smbus_read_byte	drivers/i2c/i2c-core
+0x00000000	inet_unregister_protosw	vmlinux
+0x00000000	mb_cache_entry_free	vmlinux
+0x00000000	ei_close	drivers/net/8390
+0x00000000	__usb_get_extra_descriptor	drivers/usb/core/usbcore
+0x00000000	ide_wait_not_busy	vmlinux
+0x00000000	ide_ata66_check	vmlinux
+0x00000000	pci_bus_assign_resources	vmlinux
+0x00000000	simple_commit_write	vmlinux
+0x00000000	profile_event_register	vmlinux
+0x00000000	scsi_finish_command	drivers/scsi/scsi_mod
+0x00000000	register_netdevice	vmlinux
+0x00000000	elv_queue_empty	vmlinux
+0x00000000	blkdev_put	vmlinux
+0x00000000	blkdev_get	vmlinux
+0x00000000	kernel_map_pages	vmlinux
+0x00000000	tcp_write_xmit	vmlinux
+0x00000000	task_in_intr	vmlinux
+0x00000000	generic_osync_inode	vmlinux
+0x00000000	jiffies_64	vmlinux
+0x00000000	videocodec_register	drivers/media/video/videocodec
+0x00000000	svc_create	net/sunrpc/sunrpc
+0x00000000	videobuf_queue_is_busy	drivers/media/video/video-buf
+0x00000000	videobuf_dma_init_user	drivers/media/video/video-buf
+0x00000000	dcache_readdir	vmlinux
+0x00000000	inode_add_bytes	vmlinux
+0x00000000	generic_file_mmap	vmlinux
+0x00000000	generic_file_read	vmlinux
+0x00000000	parport_pc_probe_port	drivers/parport/parport_pc
+0x00000000	parport_device_id	drivers/parport/parport
+0x00000000	neigh_rand_reach_time	vmlinux
+0x00000000	restore_processor_state	vmlinux
+0x00000000	idr_find	vmlinux
+0x00000000	vfs_mknod	vmlinux
+0x00000000	ethtool_op_get_sg	vmlinux
+0x00000000	skb_dequeue	vmlinux
+0x00000000	disable_irq_nosync	vmlinux
+0x00000000	find_font	vmlinux
+0x00000000	alloc_etherdev	vmlinux
+0x00000000	rpc_wake_up_task	net/sunrpc/sunrpc
+0x00000000	task_no_data_intr	vmlinux
+0x00000000	proc_dostring	vmlinux
+0x00000000	pci_bus_write_config_byte	vmlinux
+0x00000000	skb_insert	vmlinux
+0x00000000	pre_task_out_intr	vmlinux
+0x00000000	isapnp_cfg_begin	vmlinux
+0x00000000	cap_vm_enough_memory	vmlinux
+0x00000000	blk_queue_max_segment_size	vmlinux
+0x00000000	log_wait_commit	vmlinux
+0x00000000	blkdev_open	vmlinux
+0x00000000	__symbol_put	vmlinux
+0x00000000	netpoll_send_udp	vmlinux
+0x00000000	get_zeroed_page	vmlinux
+0x00000000	snd_pcm_lib_read	sound/core/snd-pcm
+0x00000000	input_close_device	vmlinux
+0x00000000	snd_pcm_format_silence_64	sound/core/snd-pcm
+0x00000000	snd_dma_free_reserved	sound/core/snd-page-alloc
+0x00000000	prepare_to_wait_exclusive	vmlinux
+0x00000000	__ide_dma_read	vmlinux
+0x00000000	current_capacity	vmlinux
+0x00000000	remove_proc_entry	vmlinux
+0x00000000	__ide_dma_write	vmlinux
+0x00000000	filemap_nopage	vmlinux
+0x00000000	_snd_pcm_hw_param_setempty	sound/core/snd-pcm
+0x00000000	uart_resume_port	vmlinux
+0x00000000	snd_pcm_start	sound/core/snd-pcm
+0x00000000	parport_ieee1284_epp_read_data	drivers/parport/parport
+0x00000000	parport_ieee1284_ecp_read_data	drivers/parport/parport
+0x00000000	sysctl_wmem_max	vmlinux
+0x00000000	sysctl_rmem_max	vmlinux
+0x00000000	__ide_dma_host_off	vmlinux
+0x00000000	xprt_tcp_slot_table_entries	net/sunrpc/sunrpc
+0x00000000	rpc_clone_client	net/sunrpc/sunrpc
+0x00000000	move_addr_to_user	vmlinux
+0x00000000	fb_unregister_client	vmlinux
+0x00000000	midi_synth_setup_voice	sound/oss/sound
+0x00000000	snd_pcm_lib_buffer_bytes	sound/core/snd-pcm
+0x00000000	do_rw_taskfile	vmlinux
+0x00000000	ide_set_handler	vmlinux
+0x00000000	vfs_readlink	vmlinux
+0x00000000	complete_and_exit	vmlinux
+0x00000000	udp_hash	vmlinux
+0x00000000	fb_default_cmap	vmlinux
+0x00000000	ide_build_sglist	vmlinux
+0x00000000	ide_do_drive_cmd	vmlinux
+0x00000000	sysfs_remove_group	vmlinux
+0x00000000	ide_cmd_ioctl	vmlinux
+0x00000000	rpc_init_task	net/sunrpc/sunrpc
+0x00000000	i2c_smbus_xfer	drivers/i2c/i2c-core
+0x00000000	alloc_disk	vmlinux
+0x00000000	seq_puts	vmlinux
+0x00000000	seq_putc	vmlinux
+0x00000000	snd_pcm_hw_param_last	sound/core/snd-pcm
+0x00000000	uart_update_timeout	vmlinux
+0x00000000	d_genocide	vmlinux
+0x00000000	__module_put_and_exit	vmlinux
+0x00000000	d_rehash	vmlinux
+0x00000000	end_buffer_write_sync	vmlinux
+0x00000000	snd_pcm_lib_period_bytes	sound/core/snd-pcm
+0x00000000	ide_build_dmatable	vmlinux
+0x00000000	n_tty_ioctl	vmlinux
+0x00000000	__bdevname	vmlinux
+0x00000000	cont_prepare_write	vmlinux
+0x00000000	vfs_write	vmlinux
+0x00000000	remove_shrinker	vmlinux
+0x00000000	change_page_attr	vmlinux
+0x00000000	snd_pcm_hw_refine	sound/core/snd-pcm
+0x00000000	tcp_acceptable_seq	vmlinux
+0x00000000	netif_rx	vmlinux
+0x00000000	journal_bmap	vmlinux
+0x00000000	kernel_flag	vmlinux
+0x00000000	num_midis	sound/oss/sound
+0x00000000	tcp_cwnd_application_limited	vmlinux
+0x00000000	unregister_binfmt	vmlinux
+0x00000000	__mod_timer	vmlinux
+0x00000000	xdr_decode_string	net/sunrpc/sunrpc
+0x00000000	xdr_init_encode	net/sunrpc/sunrpc
+0x00000000	sock_no_accept	vmlinux
+0x00000000	disable_timer_nmi_watchdog	vmlinux
+0x00000000	machine_halt	vmlinux
+0x00000000	elevator_exit	vmlinux
+0x00000000	__lock_buffer	vmlinux
+0x00000000	snd_ac97_write	sound/pci/ac97/snd-ac97-codec
+0x00000000	agp_off	vmlinux
+0x00000000	tcp_ioctl	vmlinux
+0x00000000	registered_fb	vmlinux
+0x00000000	vfs_symlink	vmlinux
+0x00000000	create_proc_ide_interfaces	vmlinux
+0x00000000	unmap_mapping_range	vmlinux
+0x00000000	__alloc_pages	vmlinux
+0x00000000	overflowgid	vmlinux
+0x00000000	overflowuid	vmlinux
+0x00000000	inet_select_addr	vmlinux
+0x00000000	pci_enable_device	vmlinux
+0x00000000	generic_file_readv	vmlinux
+0x00000000	i2c_check_functionality	drivers/i2c/i2c-core
+0x00000000	fb_display	vmlinux
+0x00000000	dcache_dir_close	vmlinux
+0x00000000	sock_no_connect	vmlinux
+0x00000000	proc_ide_read_geometry	vmlinux
+0x00000000	videobuf_status	drivers/media/video/video-buf
+0x00000000	bh_waitq_head	vmlinux
+0x00000000	set_shrinker	vmlinux
+0x00000000	eth_type_trans	vmlinux
+0x00000000	mb_cache_entry_get	vmlinux
+0x00000000	send_sig	vmlinux
+0x00000000	copy_to_user_fromio	sound/core/snd
+0x00000000	tcp_shutdown	vmlinux
+0x00000000	pnp_add_card	vmlinux
+0x00000000	param_set_uint	vmlinux
+0x00000000	rpc_init_wait_queue	net/sunrpc/sunrpc
+0x00000000	cdrom_open	drivers/cdrom/cdrom
+0x00000000	snd_seq_fm_init	sound/core/seq/instr/snd-ainstr-fm
+0x00000000	scsi_partsize	drivers/scsi/scsi_mod
+0x00000000	get_bus	vmlinux
+0x00000000	groups_alloc	vmlinux
+0x00000000	kill_sl_info	vmlinux
+0x00000000	netlink_unregister_notifier	vmlinux
+0x00000000	simple_release_fs	vmlinux
+0x00000000	generic_file_aio_write_nolock	vmlinux
+0x00000000	semitone_tuning	sound/oss/sound
+0x00000000	scsi_host_put	drivers/scsi/scsi_mod
+0x00000000	snd_pcm_hw_param_set	sound/core/snd-pcm
+0x00000000	dev_ioctl	vmlinux
+0x00000000	add_wait_queue	vmlinux
+0x00000000	dev_add_pack	vmlinux
+0x00000000	dcookie_unregister	vmlinux
+0x00000000	snd_seq_device_load_drivers	sound/core/seq/snd-seq-device
+0x00000000	vsnprintf	vmlinux
+0x00000000	rb_replace_node	vmlinux
+0x00000000	journal_clear_err	vmlinux
+0x00000000	snd_pcm_hw_constraint_pow2	sound/core/snd-pcm
+0x00000000	sysctl_tcp_reordering	vmlinux
+0x00000000	__ide_dma_bad_drive	vmlinux
+0x00000000	ide_execute_command	vmlinux
+0x00000000	cdrom_is_random_writable	drivers/cdrom/cdrom
+0x00000000	class_simple_destroy	vmlinux
+0x00000000	crypto_alloc_tfm	vmlinux
+0x00000000	unset_nmi_callback	vmlinux
+0x00000000	tty_set_operations	vmlinux
+0x00000000	get_super	vmlinux
+0x00000000	mark_buffer_dirty	vmlinux
+0x00000000	flush_scheduled_work	vmlinux
+0x00000000	skb_copy_and_csum_bits	vmlinux
+0x00000000	ll_rw_block	vmlinux
+0x00000000	sound_alloc_dma	sound/oss/sound
+0x00000000	svc_proc_unregister	net/sunrpc/sunrpc
+0x00000000	set_geometry_intr	vmlinux
+0x00000000	kref_init	vmlinux
+0x00000000	__PAGE_KERNEL	vmlinux
+0x00000000	serio_open	vmlinux
+0x00000000	agp_generic_free_by_type	vmlinux
+0x00000000	cap_bprm_apply_creds	vmlinux
+0x00000000	loop_register_transfer	drivers/block/loop
+0x00000000	netlink_post	vmlinux
+0x00000000	sock_register	vmlinux
+0x00000000	serio_close	vmlinux
+0x00000000	pci_find_bus	vmlinux
+0x00000000	nmi_active	vmlinux
+0x00000000	__snd_util_mem_alloc	sound/synth/snd-util-mem
+0x00000000	__ide_dma_on	vmlinux
+0x00000000	end_buffer_async_write	vmlinux
+0x00000000	snd_midi_event_encode	sound/core/seq/snd-seq-midi-event
+0x00000000	snd_interval_ratden	sound/core/snd-pcm
+0x00000000	skb_under_panic	vmlinux
+0x00000000	vfs_writev	vmlinux
+0x00000000	videobuf_next_field	drivers/media/video/video-buf
+0x00000000	proc_dointvec	vmlinux
+0x00000000	snd_seq_instr_event	sound/core/seq/snd-seq-instr
+0x00000000	class_simple_create	vmlinux
+0x00000000	machine_restart	vmlinux
+0x00000000	unregister_profile_notifier	vmlinux
+0x00000000	zlib_inflate_workspacesize	lib/zlib_inflate/zlib_inflate
+0x00000000	usb_bus_list	drivers/usb/core/usbcore
+0x00000000	snd_pcm_limit_hw_rates	sound/core/snd-pcm
+0x00000000	tcp_recvmsg	vmlinux
+0x00000000	match_strcpy	vmlinux
+0x00000000	release_lapic_nmi	vmlinux
+0x00000000	pnp_register_dma_resource	vmlinux
+0x00000000	proc_dointvec_userhz_jiffies	vmlinux
+0x00000000	parport_unregister_driver	drivers/parport/parport
+0x00000000	tcp_simple_retransmit	vmlinux
+0x00000000	tcp_write_space	vmlinux
+0x00000000	simple_dir_inode_operations	vmlinux
+0x00000000	drive_is_ready	vmlinux
+0x00000000	ide_read_24	vmlinux
+0x00000000	dcache_dir_open	vmlinux
+0x00000000	__find_get_block	vmlinux
+0x00000000	put_unused_fd	vmlinux
+0x00000000	abi_fake_utsname	vmlinux
+0x00000000	rb_first	vmlinux
+0x00000000	unregister_module_notifier	vmlinux
+0x00000000	xprt_create_proto	net/sunrpc/sunrpc
+0x00000000	bus_register	vmlinux
+0x00000000	pci_root_buses	vmlinux
+0x00000000	videobuf_iolock	drivers/media/video/video-buf
+0x00000000	snd_dma_disable	sound/core/snd
+0x00000000	snd_rawmidi_drain_input	sound/core/snd-rawmidi
+0x00000000	input_open_device	vmlinux
+0x00000000	fsync_bdev	vmlinux
+0x00000000	cache_unregister	net/sunrpc/sunrpc
+0x00000000	device_for_each_child	vmlinux
+0x00000000	snd_midi_channel_free_set	sound/core/seq/snd-seq-midi-emul
+0x00000000	pwc_unregister_decompressor	drivers/usb/media/pwc
+0x00000000	i2c_pcf_del_bus	drivers/i2c/algos/i2c-algo-pcf
+0x00000000	device_suspend	vmlinux
+0x00000000	rpc_shutdown_client	net/sunrpc/sunrpc
+0x00000000	snd_pcm_subformat_name	sound/core/snd-pcm
+0x00000000	blk_get_queue	vmlinux
+0x00000000	blk_hw_contig_segment	vmlinux
+0x00000000	firmware_register	vmlinux
+0x00000000	device_find	vmlinux
+0x00000000	_ctype	vmlinux
+0x00000000	bd_set_size	vmlinux
+0x00000000	udp_proc_unregister	vmlinux
+0x00000000	pci_set_dma_mask	vmlinux
+0x00000000	snd_pcm_stop	sound/core/snd-pcm
+0x00000000	skb_copy	vmlinux
+0x00000000	pci_bus_read_config_dword	vmlinux
+0x00000000	memparse	vmlinux
+0x00000000	block_truncate_page	vmlinux
+0x00000000	generic_write_checks	vmlinux
+0x00000000	do_settimeofday	vmlinux
+0x00000000	do_gettimeofday	vmlinux
+0x00000000	parport_daisy_select	drivers/parport/parport
+0x00000000	destroy_8023_client	vmlinux
+0x00000000	flow_cache_lookup	vmlinux
+0x00000000	alloc_tty_driver	vmlinux
+0x00000000	blk_register_region	vmlinux
+0x00000000	default_blu	vmlinux
+0x00000000	bio_put	vmlinux
+0x00000000	journal_force_commit	vmlinux
+0x00000000	inode_needs_sync	vmlinux
+0x00000000	grab_cache_page_nowait	vmlinux
+0x00000000	snd_rawmidi_receive	sound/core/snd-rawmidi
+0x00000000	ir_codes_rc5_tv	drivers/media/common/ir-common
+0x00000000	dev_getfirstbyhwtype	vmlinux
+0x00000000	dev_base	vmlinux
+0x00000000	ide_diag_taskfile	vmlinux
+0x00000000	fs_overflowuid	vmlinux
+0x00000000	wake_up_process	vmlinux
+0x00000000	snd_seq_kernel_client_enqueue	sound/core/seq/snd-seq
+0x00000000	init_cdrom_command	drivers/cdrom/cdrom
+0x00000000	skb_dequeue_tail	vmlinux
+0x00000000	bitreverse	lib/crc32
+0x00000000	inet_stream_ops	vmlinux
+0x00000000	qdisc_reset	vmlinux
+0x00000000	register_netdevice_notifier	vmlinux
+0x00000000	end_that_request_last	vmlinux
+0x00000000	pci_get_device	vmlinux
+0x00000000	bio_unmap_user	vmlinux
+0x00000000	snd_kmalloc_strdup	sound/core/snd
+0x00000000	cap_inode_removexattr	vmlinux
+0x00000000	dnotify_parent	vmlinux
+0x00000000	get_sb_single	vmlinux
+0x00000000	__delay	vmlinux
+0x00000000	pm_power_off	vmlinux
+0x00000000	blk_queue_init_tags	vmlinux
+0x00000000	device_initialize	vmlinux
+0x00000000	bdput	vmlinux
+0x00000000	bdget	vmlinux
+0x00000000	ide_rate_filter	vmlinux
+0x00000000	arp_broken_ops	vmlinux
+0x00000000	ide_wait_cmd	vmlinux
+0x00000000	cap_capset_set	vmlinux
+0x00000000	cdrom_ioctl	drivers/cdrom/cdrom
+0x00000000	bio_init	vmlinux
+0x00000000	strncpy_from_user	vmlinux
+0x00000000	gss_mech_put	net/sunrpc/auth_gss/auth_rpcgss
+0x00000000	init_special_inode	vmlinux
+0x00000000	create_empty_buffers	vmlinux
+0x00000000	videobuf_read_stop	drivers/media/video/video-buf
+0x00000000	v4l2_video_std_fps	drivers/media/video/v4l2-common
+0x00000000	snd_major	sound/core/snd
+0x00000000	inet_setsockopt	vmlinux
+0x00000000	sk_chk_filter	vmlinux
+0x00000000	__ide_dma_off	vmlinux
+0x00000000	release_resource	vmlinux
+0x00000000	videobuf_waiton	drivers/media/video/video-buf
+0x00000000	brioctl_set	vmlinux
+0x00000000	__sysrq_unlock_table	vmlinux
+0x00000000	pnp_register_mem_resource	vmlinux
+0x00000000	page_symlink	vmlinux
+0x00000000	udp_connect	vmlinux
+0x00000000	param_get_bool	vmlinux
+0x00000000	parport_ieee1284_interrupt	drivers/parport/parport
+0x00000000	arp_tbl	vmlinux
+0x00000000	xdr_encode_opaque_fixed	net/sunrpc/sunrpc
+0x00000000	DMAbuf_close_dma	sound/oss/sound
+0x00000000	sysctl_overcommit_ratio	vmlinux
+0x00000000	RingQueue_Enqueue	drivers/usb/media/usbvideo
+0x00000000	isapnp_cfg_end	vmlinux
+0x00000000	kallsyms_lookup	vmlinux
+0x00000000	usb_deregister	drivers/usb/core/usbcore
+0x00000000	conf_printf	sound/oss/sound
+0x00000000	snd_interval_refine	sound/core/snd-pcm
+0x00000000	journal_callback_set	vmlinux
+0x00000000	atomic_dec_and_lock	vmlinux
+0x00000000	dump_stack	vmlinux
+0x00000000	net_sysctl_strdup	vmlinux
+0x00000000	kobject_del	vmlinux
+0x00000000	snd_ctl_find_numid	sound/core/snd
+0x00000000	get_EDID_from_firmware	vmlinu