From: Dan Carpenter <dan.carpenter@linaro.org>
To: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Cc: Jiri Kosina <jikos@kernel.org>,
Benjamin Tissoires <benjamin.tissoires@redhat.com>,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org,
linux-input@vger.kernel.org
Subject: Re: [PATCH] HID: Reorder fields in 'struct hid_field'
Date: Tue, 20 Jun 2023 08:09:03 +0300 [thread overview]
Message-ID: <658cf2e3-3da7-4dbd-977e-4722f52cd63f@kadam.mountain> (raw)
In-Reply-To: <ba1a74ba-e91a-bf12-2d4e-7157e4519478@wanadoo.fr>
On Mon, Jun 19, 2023 at 08:20:08PM +0200, Christophe JAILLET wrote:
> Le 19/06/2023 à 07:18, Dan Carpenter a écrit :
> > On Sun, Jun 18, 2023 at 10:08:07AM +0200, Christophe JAILLET wrote:
> > > diff --git a/include/linux/hid.h b/include/linux/hid.h
> > > index 39e21e3815ad..5be5e671c263 100644
> > > --- a/include/linux/hid.h
> > > +++ b/include/linux/hid.h
> > > @@ -480,9 +480,9 @@ struct hid_field {
> > > __s32 physical_maximum;
> > > __s32 unit_exponent;
> > > unsigned unit;
> > > - bool ignored; /* this field is ignored in this event */
> > > struct hid_report *report; /* associated report */
> > > unsigned index; /* index into report->field[] */
> > > + bool ignored; /* this field is ignored in this event */
> > > /* hidinput data */
> > > struct hid_input *hidinput; /* associated input structure */
> > > __u16 dpad; /* dpad input code */
> >
> > You could move the dpad next to the ignored to save another 4 bytes.
> > I think it is still grouped logically that way but I don't really know
> > what dpad is so I might be wrong.
> >
> > struct hid_report *report; /* associated report */
> > unsigned index; /* index into report->field[] */
> > bool ignored; /* this field is ignored in this event */
> > /* hidinput data */
> > __u16 dpad; /* dpad input code */
> > struct hid_input *hidinput; /* associated input structure */
> >
> > regards,
> > dan carpenter
> >
> >
>
> In fact, not really,
> It would fill a hole better, but would generate some padding at the end of
> the struct:
>
> bool ignored; /* 108 1 */
>
> /* XXX 1 byte hole, try to pack */
>
> __u16 dpad; /* 110 2 */
> struct hid_input * hidinput; /* 112 8 */
> unsigned int slot_idx; /* 120 4 */
>
> /* size: 128, cachelines: 2, members: 25 */
> /* sum members: 119, holes: 2, sum holes: 5 */
> /* padding: 4 */
> };
Ah. Right. I should have looked at that more closely.
regards,
dan carpenter
prev parent reply other threads:[~2023-06-20 5:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-18 8:08 [PATCH] HID: Reorder fields in 'struct hid_field' Christophe JAILLET
2023-06-19 5:18 ` Dan Carpenter
2023-06-19 18:20 ` Christophe JAILLET
2023-06-20 5:09 ` Dan Carpenter [this message]
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=658cf2e3-3da7-4dbd-977e-4722f52cd63f@kadam.mountain \
--to=dan.carpenter@linaro.org \
--cc=benjamin.tissoires@redhat.com \
--cc=christophe.jaillet@wanadoo.fr \
--cc=jikos@kernel.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox