]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
libata: reorder ata_queued_cmd to remove alignment padding on 64 bit builds
authorRichard Kennedy <richard@rsk.demon.co.uk>
Fri, 10 Sep 2010 11:19:43 +0000 (12:19 +0100)
committerJeff Garzik <jgarzik@redhat.com>
Fri, 22 Oct 2010 00:21:05 +0000 (20:21 -0400)
Reorder structure ata_queued_cmd to remove 8 bytes of alignment padding
on 64 bit builds & therefore reduce the size of structure ata_port by
256 bytes.

Overall this will have little impact, other than reducing the amount of
memory that is cleared when allocating ata_ports.

Signed-off-by: Richard Kennedy <richard@rsk.demon.co.uk>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
include/linux/libata.h

index 52112d39d71e5e1f8476b9edd0fce5310f3ea879..15efec05df67be3ad44f7eb78db100853749f5fc 100644 (file)
@@ -570,13 +570,13 @@ struct ata_queued_cmd {
        unsigned int            extrabytes;
        unsigned int            curbytes;
 
-       struct scatterlist      *cursg;
-       unsigned int            cursg_ofs;
-
        struct scatterlist      sgent;
 
        struct scatterlist      *sg;
 
+       struct scatterlist      *cursg;
+       unsigned int            cursg_ofs;
+
        unsigned int            err_mask;
        struct ata_taskfile     result_tf;
        ata_qc_cb_t             complete_fn;