* wish that they not be zeroed.
         */
        struct page *pages[DIO_PAGES];  /* page buffer */
-};
+} ____cacheline_aligned_in_smp;
+
+static struct kmem_cache *dio_cache __read_mostly;
 
 static void __inode_dio_wait(struct inode *inode)
 {
 
        if (remaining == 0) {
                dio_complete(dio, dio->iocb->ki_pos, 0, true);
-               kfree(dio);
+               kmem_cache_free(dio_cache, dio);
        }
 }
 
 
        if (ret2 == 0) {
                ret = dio_complete(dio, offset, ret, false);
-               kfree(dio);
+               kmem_cache_free(dio_cache, dio);
        } else
                BUG_ON(ret != -EIOCBQUEUED);
 
        if (rw == READ && end == offset)
                return 0;
 
-       dio = kmalloc(sizeof(*dio), GFP_KERNEL);
+       dio = kmem_cache_alloc(dio_cache, GFP_KERNEL);
        retval = -ENOMEM;
        if (!dio)
                goto out;
                                                              end - 1);
                        if (retval) {
                                mutex_unlock(&inode->i_mutex);
-                               kfree(dio);
+                               kmem_cache_free(dio_cache, dio);
                                goto out;
                        }
                }
        return retval;
 }
 EXPORT_SYMBOL(__blockdev_direct_IO);
+
+static __init int dio_init(void)
+{
+       dio_cache = KMEM_CACHE(dio, SLAB_PANIC);
+       return 0;
+}
+module_init(dio_init)