This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / fs / aio.c
index bc42eb7..574eeaf 100644 (file)
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -64,14 +64,9 @@ static void aio_kick_handler(void *);
 static int __init aio_setup(void)
 {
        kiocb_cachep = kmem_cache_create("kiocb", sizeof(struct kiocb),
-                               0, SLAB_HWCACHE_ALIGN, NULL, NULL);
-       if (!kiocb_cachep)
-               panic("unable to create kiocb cache\n");
-
+                               0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
        kioctx_cachep = kmem_cache_create("kioctx", sizeof(struct kioctx),
-                               0, SLAB_HWCACHE_ALIGN, NULL, NULL);
-       if (!kioctx_cachep)
-               panic("unable to create kioctx cache");
+                               0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
 
        aio_wq = create_workqueue("aio");
 
@@ -793,7 +788,7 @@ static inline void set_timeout(long start_jiffies, struct timeout *to,
 
 static inline void clear_timeout(struct timeout *to)
 {
-       del_timer_sync(&to->timer);
+       del_singleshot_timer_sync(&to->timer);
 }
 
 static int read_events(struct kioctx *ctx,
@@ -939,7 +934,7 @@ static void io_destroy(struct kioctx *ioctx)
  *     pointer is passed for ctxp.  Will fail with -ENOSYS if not
  *     implemented.
  */
-asmlinkage long sys_io_setup(unsigned nr_events, aio_context_t *ctxp)
+asmlinkage long sys_io_setup(unsigned nr_events, aio_context_t __user *ctxp)
 {
        struct kioctx *ioctx = NULL;
        unsigned long ctx;
@@ -1099,7 +1094,7 @@ out_put_req:
  *     fail with -ENOSYS if not implemented.
  */
 asmlinkage long sys_io_submit(aio_context_t ctx_id, long nr,
-                             struct iocb __user **iocbpp)
+                             struct iocb __user * __user *iocbpp)
 {
        struct kioctx *ctx;
        long ret = 0;