search for: blktap_fop

Displaying 1 result from an estimated 1 matches for "blktap_fop".

Did you mean: blktap_fops
2007 Mar 05
0
[PATCH 3/10] linux 2.6.18: constify instances of ''struct file_operations''
...7-02-27/drivers/xen/blktap/blktap.c 2007-02-27 16:27:37.000000000 +0100 @@ -335,7 +335,7 @@ static int blktap_ioctl(struct inode *in unsigned int cmd, unsigned long arg); static unsigned int blktap_poll(struct file *file, poll_table *wait); -static struct file_operations blktap_fops = { +static const struct file_operations blktap_fops = { .owner = THIS_MODULE, .poll = blktap_poll, .ioctl = blktap_ioctl, Index: head-2007-02-27/drivers/xen/char/mem.c =================================================================== --- head-2007-02-27.orig/drivers/xen/char/mem.c...