[patch] dm: reorder dm_io to remove padding on 64 bit builds

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Richard Kennedy
Date: Monday, June 9, 2008 - 4:41 am

shrinks size from 40 -> 32 allowing more objects/slab
    
Signed-off-by: Richard Kennedy <richard@rsk.demon.co.uk>

---

This change looks safe AFAICT, but I have not tested it other than
compiling it.
Compiled on 2.6.26-rc5 AMD64.
HTH
Richard


diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index 372369b..efe9690 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -37,8 +37,8 @@ static DEFINE_SPINLOCK(_minor_lock);
 struct dm_io {
 	struct mapped_device *md;
 	int error;
-	struct bio *bio;
 	atomic_t io_count;
+	struct bio *bio;
 	unsigned long start_time;
 };
 


--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[patch] dm: reorder dm_io to remove padding on 64 bit builds, Richard Kennedy, (Mon Jun 9, 4:41 am)