]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
direct-io: use a slab cache for struct dio
authorAndi Kleen <ak@linux.intel.com>
Tue, 2 Aug 2011 04:38:06 +0000 (21:38 -0700)
committerDave Kleikamp <dave.kleikamp@oracle.com>
Thu, 1 Dec 2011 16:53:49 +0000 (10:53 -0600)
A direct slab call is slightly faster than kmalloc and can be better cached
per CPU. It also avoids rounding to the next kmalloc slab.

In addition this enforces cache line alignment for struct dio to avoid
any false sharing.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
fs/direct-io.c

index eda1a24cb8084f2a5132c42ab2c28453a59952ce..c511d34b71829fea92f9cbf84f00c832a13ffa6e 100644 (file)
@@ -140,7 +140,9 @@ struct dio {
         * 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;
 
 /*
  * How many pages are in the queue?
@@ -288,7 +290,7 @@ static void dio_bio_end_aio(struct bio *bio, int error)
 
        if (remaining == 0) {
                dio_complete(dio, dio->iocb->ki_pos, 0, true);
-               kfree(dio);
+               kmem_cache_free(dio_cache, dio);
        }
 }
 
@@ -1141,7 +1143,7 @@ direct_io_worker(int rw, struct kiocb *iocb, struct inode *inode,
 
        if (ret2 == 0) {
                ret = dio_complete(dio, offset, ret, false);
-               kfree(dio);
+               kmem_cache_free(dio_cache, dio);
        } else
                BUG_ON(ret != -EIOCBQUEUED);
 
@@ -1212,7 +1214,7 @@ __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode,
                }
        }
 
-       dio = kmalloc(sizeof(*dio), GFP_KERNEL);
+       dio = kmem_cache_alloc(dio_cache, GFP_KERNEL);
        retval = -ENOMEM;
        if (!dio)
                goto out;
@@ -1237,7 +1239,7 @@ __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode,
                                                              end - 1);
                        if (retval) {
                                mutex_unlock(&inode->i_mutex);
-                               kfree(dio);
+                               kmem_cache_free(dio_cache, dio);
                                goto out;
                        }
                }
@@ -1266,3 +1268,10 @@ 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)