From: Jarkko Sakkinen <jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
To: Dmitry Torokhov <dtor-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Cc: Christophe Ricard
<christophe.ricard-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
"linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH] tpm: fix cacheline alignment for DMA-able buffers
Date: Wed, 10 Aug 2016 13:36:45 +0300 [thread overview]
Message-ID: <20160810103645.GA12832@intel.com> (raw)
In-Reply-To: <CAE_wzQ95LAm7JkfB=V2VZVc4Vha4GcRyOBH_J8ZEh1gG+ZjEAA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
On Tue, Aug 09, 2016 at 08:18:00AM -0700, Dmitry Torokhov wrote:
> On Tue, Aug 9, 2016 at 8:01 AM, Jarkko Sakkinen
> <jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org> wrote:
>
> On Tue, Aug 09, 2016 at 12:46:10PM +0300, Jarkko Sakkinen wrote:
> > On Fri, Jul 29, 2016 at 10:30:22AM -0700, Dmitry Torokhov wrote:
> > >Â Â On Fri, Jul 29, 2016 at 10:27 AM, Jason Gunthorpe
> > >Â Â <jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> wrote:
> > >
> > >Â Â Â On Thu, Jul 28, 2016 at 07:59:13PM -0700, Andrey Pronin
> wrote:
> > >Â Â Â > Annotate buffers used in spi transactions as
> ____cacheline_aligned
> > >Â Â Â > to use in DMA transfers.
> > >Â Â Â >
> > >Â Â Â > Signed-off-by: Andrey Pronin <apronin@chromium.org>
> > >Â Â Â >Â drivers/char/tpm/st33zp24/spi.c | 4 ++--
> > >   > drivers/char/tpm/tpm_tis_spi.c | 4 ++--
> > >Â Â Â >Â 2 files changed, 4 insertions(+), 4 deletions(-)
> > >Â Â Â >
> > >Â Â Â > diff --git a/drivers/char/tpm/st33zp24/spi.c
> > >Â Â Â b/drivers/char/tpm/st33zp24/spi.c
> > >Â Â Â > index 9f5a011..0e9aad9 100644
> > >Â Â Â > +++ b/drivers/char/tpm/st33zp24/spi.c
> > >Â Â Â > @@ -70,8 +70,8 @@
> > >Â Â Â >Â struct st33zp24_spi_phy {
> > >Â Â Â >Â Â Â Â struct spi_device *spi_device;
> > >Â Â Â >
> > >Â Â Â > -Â Â Â u8 tx_buf[ST33ZP24_SPI_BUFFER_SIZE];
> > >Â Â Â > -Â Â Â u8 rx_buf[ST33ZP24_SPI_BUFFER_SIZE];
> > >Â Â Â > +Â Â Â u8 tx_buf[ST33ZP24_SPI_BUFFER_SIZE]
> ____cacheline_aligned;
> > >Â Â Â > +Â Â Â u8 rx_buf[ST33ZP24_SPI_BUFFER_SIZE]
> ____cacheline_aligned;
> > >Â Â Â >
> > >Â Â Â >Â Â Â Â int io_lpcpd;
> > >Â Â Â >Â Â Â Â int latency;
> > >
> > >Â Â Â Hurm, this still looks wrong to me. Aligning the start of
> buffers is
> > >Â Â Â not enough, the DMA'able space must also end on a cache line
> as well.
> > >
> > >Â Â Â So, the buffers must also always be placed at the end of the
> struct.
> > >
> > >Â Â Â IMHO It would be cleaner and safer to always kmalloc the DMA
> buffer
> > >Â Â Â alone than to try and optimize like this.
> > >
> > >Â Â In this case moving them to the end of the structure and
> commenting why
> > >Â Â they have to be at the end might be less invasive change. More
> > >Â Â performance-efficient and resilient in low memory situations
> too.
> >
> > kmallocs would be done in the driver initialization:
> >
> > * you rarely are in low memory situation
> > * performance gain/loss is insignificant
> >
> > I really don't see your point.
>
> I'm fine having them at the end of the structure mainly for simplicity
> reasons but those arguments just didn't hold at all.
>
> Well, the main reason was simplicity and invasiveness of the change.
> But I still maintain that doing 3 memory allocations instead of 1 is less
> performant and puts more pressure on the kernel. Yes, it is at bind time,
> but you do not have to do 3 times work when one allocation will suffice.
> Also, driver binding does not necessarily happen at boot time. I can
> always unbind and rebind the driver or reload the module.
I'm fine with either approach.
> Thanks,
> Dmitry
/Jarkko
------------------------------------------------------------------------------
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are
consuming the most bandwidth. Provides multi-vendor support for NetFlow,
J-Flow, sFlow and other flows. Make informed decisions using capacity
planning reports. http://sdm.link/zohodev2dev
WARNING: multiple messages have this Message-ID (diff)
From: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
To: Dmitry Torokhov <dtor@chromium.org>
Cc: Christophe Ricard <christophe.ricard@gmail.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
tpmdd-devel@lists.sourceforge.net
Subject: Re: [tpmdd-devel] [PATCH] tpm: fix cacheline alignment for DMA-able buffers
Date: Wed, 10 Aug 2016 13:36:45 +0300 [thread overview]
Message-ID: <20160810103645.GA12832@intel.com> (raw)
In-Reply-To: <CAE_wzQ95LAm7JkfB=V2VZVc4Vha4GcRyOBH_J8ZEh1gG+ZjEAA@mail.gmail.com>
On Tue, Aug 09, 2016 at 08:18:00AM -0700, Dmitry Torokhov wrote:
> On Tue, Aug 9, 2016 at 8:01 AM, Jarkko Sakkinen
> <jarkko.sakkinen@linux.intel.com> wrote:
>
> On Tue, Aug 09, 2016 at 12:46:10PM +0300, Jarkko Sakkinen wrote:
> > On Fri, Jul 29, 2016 at 10:30:22AM -0700, Dmitry Torokhov wrote:
> > >Â Â On Fri, Jul 29, 2016 at 10:27 AM, Jason Gunthorpe
> > >Â Â <jgunthorpe@obsidianresearch.com> wrote:
> > >
> > >Â Â Â On Thu, Jul 28, 2016 at 07:59:13PM -0700, Andrey Pronin
> wrote:
> > >Â Â Â > Annotate buffers used in spi transactions as
> ____cacheline_aligned
> > >Â Â Â > to use in DMA transfers.
> > >Â Â Â >
> > >Â Â Â > Signed-off-by: Andrey Pronin <apronin@chromium.org>
> > >Â Â Â >Â drivers/char/tpm/st33zp24/spi.c | 4 ++--
> > >   > drivers/char/tpm/tpm_tis_spi.c | 4 ++--
> > >Â Â Â >Â 2 files changed, 4 insertions(+), 4 deletions(-)
> > >Â Â Â >
> > >Â Â Â > diff --git a/drivers/char/tpm/st33zp24/spi.c
> > >Â Â Â b/drivers/char/tpm/st33zp24/spi.c
> > >Â Â Â > index 9f5a011..0e9aad9 100644
> > >Â Â Â > +++ b/drivers/char/tpm/st33zp24/spi.c
> > >Â Â Â > @@ -70,8 +70,8 @@
> > >Â Â Â >Â struct st33zp24_spi_phy {
> > >Â Â Â >Â Â Â Â struct spi_device *spi_device;
> > >Â Â Â >
> > >Â Â Â > -Â Â Â u8 tx_buf[ST33ZP24_SPI_BUFFER_SIZE];
> > >Â Â Â > -Â Â Â u8 rx_buf[ST33ZP24_SPI_BUFFER_SIZE];
> > >Â Â Â > +Â Â Â u8 tx_buf[ST33ZP24_SPI_BUFFER_SIZE]
> ____cacheline_aligned;
> > >Â Â Â > +Â Â Â u8 rx_buf[ST33ZP24_SPI_BUFFER_SIZE]
> ____cacheline_aligned;
> > >Â Â Â >
> > >Â Â Â >Â Â Â Â int io_lpcpd;
> > >Â Â Â >Â Â Â Â int latency;
> > >
> > >Â Â Â Hurm, this still looks wrong to me. Aligning the start of
> buffers is
> > >Â Â Â not enough, the DMA'able space must also end on a cache line
> as well.
> > >
> > >Â Â Â So, the buffers must also always be placed at the end of the
> struct.
> > >
> > >Â Â Â IMHO It would be cleaner and safer to always kmalloc the DMA
> buffer
> > >Â Â Â alone than to try and optimize like this.
> > >
> > >Â Â In this case moving them to the end of the structure and
> commenting why
> > >Â Â they have to be at the end might be less invasive change. More
> > >Â Â performance-efficient and resilient in low memory situations
> too.
> >
> > kmallocs would be done in the driver initialization:
> >
> > * you rarely are in low memory situation
> > * performance gain/loss is insignificant
> >
> > I really don't see your point.
>
> I'm fine having them at the end of the structure mainly for simplicity
> reasons but those arguments just didn't hold at all.
>
> Well, the main reason was simplicity and invasiveness of the change.
> But I still maintain that doing 3 memory allocations instead of 1 is less
> performant and puts more pressure on the kernel. Yes, it is at bind time,
> but you do not have to do 3 times work when one allocation will suffice.
> Also, driver binding does not necessarily happen at boot time. I can
> always unbind and rebind the driver or reload the module.
I'm fine with either approach.
> Thanks,
> Dmitry
/Jarkko
next prev parent reply other threads:[~2016-08-10 10:36 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-29 2:59 [PATCH] tpm: fix cacheline alignment for DMA-able buffers Andrey Pronin
2016-07-29 2:59 ` Andrey Pronin
2016-07-29 17:27 ` Jason Gunthorpe
[not found] ` <20160729172702.GB7020-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-07-29 17:30 ` Dmitry Torokhov
2016-08-09 9:46 ` Jarkko Sakkinen
2016-08-09 15:01 ` [tpmdd-devel] " Jarkko Sakkinen
[not found] ` <20160809150114.GA9672-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-08-09 15:18 ` Dmitry Torokhov
2016-08-09 22:08 ` [tpmdd-devel] " Jason Gunthorpe
[not found] ` <CAE_wzQ95LAm7JkfB=V2VZVc4Vha4GcRyOBH_J8ZEh1gG+ZjEAA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-08-10 10:36 ` Jarkko Sakkinen [this message]
2016-08-10 10:36 ` Jarkko Sakkinen
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=20160810103645.GA12832@intel.com \
--to=jarkko.sakkinen-vuqaysv1563yd54fqh9/ca@public.gmane.org \
--cc=christophe.ricard-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=dtor-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.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 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.