From: Boaz Harrosh <bharrosh@panasas.com>
To: Matthew Wilcox <matthew@wil.cx>
Cc: linux-scsi@vger.kernel.org
Subject: Re: [PATCH] Save some bytes in scsi_cmnd by rearranging members
Date: Tue, 09 Oct 2007 11:42:43 +0200 [thread overview]
Message-ID: <470B4D13.8000705@panasas.com> (raw)
In-Reply-To: <20071008235010.GZ12049@parisc-linux.org>
On Tue, Oct 09 2007 at 1:50 +0200, Matthew Wilcox <matthew@wil.cx> wrote:
> Thanks to acme's pahole utility, I found some places where we can save
> a lot of bytes in scsi_cmnd, just by rearranging struct elements and
> reducing the size of some elements. We go from 272 to 260 bytes on x86
> and from 368 to 344 bytes on x86-64.
>
> - eh_eflags had a 4-byte hole after it on 64-bit. In fact, this has
> value 0 or 1, so reduce it to an unsigned char, and put it with the
> other chars in scsi_cmnd.
> - sc_data_direction has a value from 0-3, so make it an unsigned char
> rather than an enum. Saves at least 4 bytes.
> - Putting 'tag' with the other char elements saves another 4 bytes
> - Moving 'result' up from the end saves another 4 bytes on 64-bit
>
> Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
>
> diff --git a/include/scsi/scsi_cmnd.h b/include/scsi/scsi_cmnd.h
> index 65ab514..4a8c15f 100644
> --- a/include/scsi/scsi_cmnd.h
> +++ b/include/scsi/scsi_cmnd.h
> @@ -15,12 +15,10 @@ struct scsi_device;
> /* embedded in scsi_cmnd */
> struct scsi_pointer {
> char *ptr; /* data pointer */
> - int this_residual; /* left in this buffer */
> struct scatterlist *buffer; /* which buffer */
> + dma_addr_t dma_handle;
> + int this_residual; /* left in this buffer */
> int buffers_residual; /* how many buffers left */
> -
> - dma_addr_t dma_handle;
> -
> volatile int Status;
> volatile int Message;
> volatile int have_data_in;
> @@ -32,7 +30,6 @@ struct scsi_cmnd {
> struct scsi_device *device;
> struct list_head list; /* scsi_cmnd participates in queue lists */
> struct list_head eh_entry; /* entry for the host eh_cmd_q */
> - int eh_eflags; /* Used by error handlr */
>
> /*
> * A SCSI Command is assigned a nonzero serial_number before passed
> @@ -54,9 +51,12 @@ struct scsi_cmnd {
> int retries;
> int allowed;
> int timeout_per_command;
> + int result; /* Status code from lower level driver */
>
> unsigned char cmd_len;
> - enum dma_data_direction sc_data_direction;
> + unsigned char eh_eflags; /* Used by error handler */
> + unsigned char sc_data_direction;
> + unsigned char tag; /* SCSI-II queued command tag */
>
> /* These elements define the operation we are about to perform */
> #define MAX_COMMAND_SIZE 16
> @@ -109,10 +109,6 @@ struct scsi_cmnd {
> * to release this memory. (The memory
> * obtained by scsi_malloc is guaranteed
> * to be at an address < 16Mb). */
> -
> - int result; /* Status code from lower level driver */
> -
> - unsigned char tag; /* SCSI-II queued command tag */
> };
>
> extern struct scsi_cmnd *scsi_get_command(struct scsi_device *, gfp_t);
>
Please don't do this patch for now. This is because of the
soon to come scsi_data_buffer patch that rearages most of the members above
and puts them in a substructure. Maybe after the scsi_data_buffer patch you can
try to do this again.
Thanks
Boaz
next prev parent reply other threads:[~2007-10-09 9:42 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-08 23:50 [PATCH] Save some bytes in scsi_cmnd by rearranging members Matthew Wilcox
2007-10-09 9:42 ` Boaz Harrosh [this message]
2007-10-09 12:08 ` Matthew Wilcox
2007-10-09 18:06 ` Matthew Wilcox
2007-10-11 6:19 ` FUJITA Tomonori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=470B4D13.8000705@panasas.com \
--to=bharrosh@panasas.com \
--cc=linux-scsi@vger.kernel.org \
--cc=matthew@wil.cx \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.