* [PATCH] tpm: fix cacheline alignment for DMA-able buffers @ 2016-07-29 2:59 Andrey Pronin 2016-07-29 17:27 ` Jason Gunthorpe 0 siblings, 1 reply; 8+ messages in thread From: Andrey Pronin @ 2016-07-29 2:59 UTC (permalink / raw) To: Jarkko Sakkinen Cc: Christophe Ricard, linux-kernel-u79uwXL29TY76Z2rM5mHXA, tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, dtor-F7+t8E8rja9g9hUCZPvPmw Annotate buffers used in spi transactions as ____cacheline_aligned to use in DMA transfers. Signed-off-by: Andrey Pronin <apronin-F7+t8E8rja9g9hUCZPvPmw@public.gmane.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 --- a/drivers/char/tpm/st33zp24/spi.c +++ 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; diff --git a/drivers/char/tpm/tpm_tis_spi.c b/drivers/char/tpm/tpm_tis_spi.c index dbaad9c..58d7758 100644 --- a/drivers/char/tpm/tpm_tis_spi.c +++ b/drivers/char/tpm/tpm_tis_spi.c @@ -48,8 +48,8 @@ struct tpm_tis_spi_phy { struct tpm_tis_data priv; struct spi_device *spi_device; - u8 tx_buf[MAX_SPI_FRAMESIZE + 4]; - u8 rx_buf[MAX_SPI_FRAMESIZE + 4]; + u8 tx_buf[MAX_SPI_FRAMESIZE + 4] ____cacheline_aligned; + u8 rx_buf[MAX_SPI_FRAMESIZE + 4] ____cacheline_aligned; }; static inline struct tpm_tis_spi_phy *to_tpm_tis_spi_phy(struct tpm_tis_data *data) -- 2.6.6 ------------------------------------------------------------------------------ ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] tpm: fix cacheline alignment for DMA-able buffers 2016-07-29 2:59 [PATCH] tpm: fix cacheline alignment for DMA-able buffers Andrey Pronin @ 2016-07-29 17:27 ` Jason Gunthorpe [not found] ` <20160729172702.GB7020-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> 0 siblings, 1 reply; 8+ messages in thread From: Jason Gunthorpe @ 2016-07-29 17:27 UTC (permalink / raw) To: Andrey Pronin Cc: Jarkko Sakkinen, Peter Huewe, Marcel Selhorst, Christophe Ricard, tpmdd-devel, linux-kernel, dtor 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. Jason ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <20160729172702.GB7020-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>]
* Re: [PATCH] tpm: fix cacheline alignment for DMA-able buffers [not found] ` <20160729172702.GB7020-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> @ 2016-07-29 17:30 ` Dmitry Torokhov 2016-08-09 9:46 ` Jarkko Sakkinen 0 siblings, 1 reply; 8+ messages in thread From: Dmitry Torokhov @ 2016-07-29 17:30 UTC (permalink / raw) To: Jason Gunthorpe Cc: Christophe Ricard, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Dmitry Torokhov [-- Attachment #1.1: Type: text/plain, Size: 1620 bytes --] 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-F7+t8E8rja9g9hUCZPvPmw@public.gmane.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. Thanks, Dmitry [-- Attachment #1.2: Type: text/html, Size: 2308 bytes --] [-- Attachment #2: Type: text/plain, Size: 424 bytes --] ------------------------------------------------------------------------------ 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 [-- Attachment #3: Type: text/plain, Size: 192 bytes --] _______________________________________________ tpmdd-devel mailing list tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/tpmdd-devel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] tpm: fix cacheline alignment for DMA-able buffers 2016-07-29 17:30 ` Dmitry Torokhov @ 2016-08-09 9:46 ` Jarkko Sakkinen 2016-08-09 15:01 ` [tpmdd-devel] " Jarkko Sakkinen 0 siblings, 1 reply; 8+ messages in thread From: Jarkko Sakkinen @ 2016-08-09 9:46 UTC (permalink / raw) To: Dmitry Torokhov Cc: Jason Gunthorpe, Andrey Pronin, Peter Huewe, Marcel Selhorst, Christophe Ricard, tpmdd-devel, linux-kernel@vger.kernel.org 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. > Thanks, > Dmitry /Jarkko ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [tpmdd-devel] [PATCH] tpm: fix cacheline alignment for DMA-able buffers 2016-08-09 9:46 ` Jarkko Sakkinen @ 2016-08-09 15:01 ` Jarkko Sakkinen [not found] ` <20160809150114.GA9672-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 8+ messages in thread From: Jarkko Sakkinen @ 2016-08-09 15:01 UTC (permalink / raw) To: Dmitry Torokhov Cc: Christophe Ricard, linux-kernel@vger.kernel.org, tpmdd-devel 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. /Jarkko ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <20160809150114.GA9672-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] tpm: fix cacheline alignment for DMA-able buffers [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> 0 siblings, 2 replies; 8+ messages in thread From: Dmitry Torokhov @ 2016-08-09 15:18 UTC (permalink / raw) To: Jarkko Sakkinen Cc: Christophe Ricard, tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Dmitry Torokhov, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [-- Attachment #1.1: Type: text/plain, Size: 2957 bytes --] 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-F7+t8E8rja9g9hUCZPvPmw@public.gmane.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. Thanks, Dmitry [-- Attachment #1.2: Type: text/html, Size: 4195 bytes --] [-- Attachment #2: Type: text/plain, Size: 424 bytes --] ------------------------------------------------------------------------------ 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 [-- Attachment #3: Type: text/plain, Size: 192 bytes --] _______________________________________________ tpmdd-devel mailing list tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/tpmdd-devel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [tpmdd-devel] [PATCH] tpm: fix cacheline alignment for DMA-able buffers 2016-08-09 15:18 ` Dmitry Torokhov @ 2016-08-09 22:08 ` Jason Gunthorpe [not found] ` <CAE_wzQ95LAm7JkfB=V2VZVc4Vha4GcRyOBH_J8ZEh1gG+ZjEAA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 1 sibling, 0 replies; 8+ messages in thread From: Jason Gunthorpe @ 2016-08-09 22:08 UTC (permalink / raw) To: Dmitry Torokhov Cc: Jarkko Sakkinen, Christophe Ricard, tpmdd-devel, linux-kernel@vger.kernel.org On Tue, Aug 09, 2016 at 08:18:00AM -0700, Dmitry Torokhov wrote: > Well, the main reason was simplicity and invasiveness of the > change. Well, it isn't simple, because the proposed patches have had subtle problems with DMA. Simple is to use a guaranteed dma-able allocation for DMA memory and stop trying to over optimize. Jason ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <CAE_wzQ95LAm7JkfB=V2VZVc4Vha4GcRyOBH_J8ZEh1gG+ZjEAA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] tpm: fix cacheline alignment for DMA-able buffers [not found] ` <CAE_wzQ95LAm7JkfB=V2VZVc4Vha4GcRyOBH_J8ZEh1gG+ZjEAA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2016-08-10 10:36 ` Jarkko Sakkinen 0 siblings, 0 replies; 8+ messages in thread From: Jarkko Sakkinen @ 2016-08-10 10:36 UTC (permalink / raw) To: Dmitry Torokhov Cc: Christophe Ricard, tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-kernel-u79uwXL29TY76Z2rM5mHXA@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 ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2016-08-10 10:36 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-29 2:59 [PATCH] tpm: fix cacheline alignment for DMA-able buffers 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 is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).