Displaying 1 result from an estimated 1 matches for "aio_queue_fd_poll".
2007 Mar 05
0
[PATCH 3/10] linux 2.6.18: constify instances of ''struct file_operations''
...patches/linux-2.6.18/blktap-aio-16_03_06.patch
===================================================================
--- head-2007-02-27.orig/../patches/linux-2.6.18/blktap-aio-16_03_06.patch
+++ head-2007-02-27/../patches/linux-2.6.18/blktap-aio-16_03_06.patch
@@ -106,7 +106,7 @@ static unsigned int aio_queue_fd_poll(st
+ return pollflags;
+}
+
-+static struct file_operations aioq_fops = {
++static const struct file_operations aioq_fops = {
+ .release = aio_queue_fd_close,
+ .poll = aio_queue_fd_poll
+};
@@ -201,7 +201,7 @@ static int ep_events_transfer(struct eve
int maxevents, long timeout);
s...