linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Jason Cooper <jason@lakedaemon.net>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
	Andrew Lunn <andrew@lunn.ch>, Arnd Bergmann <arnd@arndb.de>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, Michal Hocko <mhocko@suse.cz>,
	linux-mm@kvack.org, Kyungmin Park <kyungmin.park@samsung.com>,
	Soeren Moch <smoch@web.de>, Mel Gorman <mgorman@suse.de>,
	Andrew Morton <akpm@linux-foundation.org>,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
	linaro-mm-sig@lists.linaro.org,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Marek Szyprowski <m.szyprowski@samsung.com>
Subject: Re: [PATCH v2] mm: dmapool: use provided gfp flags for all dma_alloc_coherent() calls
Date: Tue, 15 Jan 2013 15:16:17 -0500	[thread overview]
Message-ID: <20130115201617.GC25500@titan.lakedaemon.net> (raw)
In-Reply-To: <20130115175020.GA3764@kroah.com>

On Tue, Jan 15, 2013 at 09:50:20AM -0800, Greg KH wrote:
> On Tue, Jan 15, 2013 at 11:56:42AM -0500, Jason Cooper wrote:
> > Greg,
> > 
> > I've added you to the this thread hoping for a little insight into USB
> > drivers and their use of coherent and GFP_ATOMIC.  Am I barking up the
> > wrong tree by looking a the drivers?
> 
> I don't understand, which drivers are you referring to?  USB host
> controller drivers, or the "normal" drivers?

Sorry I wasn't clear, I was referring specifically to the usb dvb
drivers em28xx, drxk and dib0700.  These are the drivers reported to be
in heavy use when the error occurs.

sata_mv is also in use, however no other users of sata_mv have reported
problems.  Including myself. ;-)

> Most USB drivers use GFP_ATOMIC if they are creating memory during
> their URB callback path, as that is interrupt context.  But it
> shouldn't be all that bad, and the USB core hasn't changed in a while,
> so something else must be causing this.

Agreed, so I went and did more reading.  The key piece of the puzzle
that I was missing was in arch/arm/mm/dma-mapping.c 660-684.

/*
 * Allocate DMA-coherent memory space and return both the kernel
 * remapped
 * virtual and bus address for that space.
 */
void *arm_dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
                    gfp_t gfp, struct dma_attrs *attrs)
{
        pgprot_t prot = __get_dma_pgprot(attrs, pgprot_kernel);
        void *memory;

        if (dma_alloc_from_coherent(dev, size, handle, &memory))
                return memory;

        return __dma_alloc(dev, size, handle, gfp, prot, false,
                           __builtin_return_address(0));
}

static void *arm_coherent_dma_alloc(struct device *dev, size_t size,
        dma_addr_t *handle, gfp_t gfp, struct dma_attrs *attrs)
{
        pgprot_t prot = __get_dma_pgprot(attrs, pgprot_kernel);
        void *memory;

        if (dma_alloc_from_coherent(dev, size, handle, &memory))
                return memory;

        return __dma_alloc(dev, size, handle, gfp, prot, true,
                           __builtin_return_address(0));
}


My understanding of this code is that when a driver requests dma memory,
we will first try to alloc from the per-driver pool.  If that fails, we
will then attempt to allocate from the atomic_pool.

Once the atomic_pool is exhausted, we get the error:

  ERROR: 1024 KiB atomic DMA coherent pool is too small!
  Please increase it with coherent_pool= kernel parameter!

If my understanding is correct, one of the drivers (most likely one)
either asks for too small of a dma buffer, or is not properly
deallocating blocks from the per-device pool.  Either case leads to
exhaustion, and falling back to the atomic pool.  Which subsequently
gets wiped out as well.

Am I on the right track?

thx,

Jason.

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2013-01-15 20:16 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-08  6:38 [PATCH] " Marek Szyprowski
2012-11-11 17:22 ` Andrew Lunn
2012-11-12  9:48   ` Soeren Moch
2012-11-12 10:38     ` Andrew Lunn
2012-11-12 11:03       ` Soeren Moch
2012-11-19  0:18 ` Jason Cooper
2012-11-19 22:48   ` Andrew Morton
2012-11-20 10:48     ` Marek Szyprowski
2012-11-20 19:52       ` Andrew Morton
2012-11-20 14:31     ` [PATCH v2] " Marek Szyprowski
2012-11-20 19:33       ` Andrew Morton
2012-11-20 20:27         ` Jason Cooper
2012-11-21  8:08         ` Marek Szyprowski
2012-11-21  8:36           ` Andrew Morton
2012-11-21  9:20             ` Marek Szyprowski
2012-11-21 19:17               ` Andrew Morton
2012-11-22 12:55                 ` Marek Szyprowski
2013-01-14 11:56       ` Soeren Moch
2013-01-15 16:56         ` Jason Cooper
2013-01-15 17:50           ` Greg KH
2013-01-15 20:16             ` Jason Cooper [this message]
2013-01-15 21:56               ` Jason Cooper
2013-01-16  0:17                 ` Soeren Moch
2013-01-16  2:40                   ` Jason Cooper
2013-01-16  3:24                     ` Soeren Moch
2013-01-16  8:55                       ` Soeren Moch
2013-01-16 15:50                         ` [PATCH] ata: sata_mv: fix sg_tbl_pool alignment Jason Cooper
2013-01-16 17:05                           ` Soeren Moch
2013-01-16 17:52                             ` Jason Cooper
2013-01-16 18:35                               ` Jason Cooper
2013-01-16 22:26                                 ` Soeren Moch
2013-01-16 23:10                               ` Soeren Moch
2013-01-17  9:11                               ` Soeren Moch
2013-01-16 17:32                         ` [PATCH v2] mm: dmapool: use provided gfp flags for all dma_alloc_coherent() calls Soeren Moch
2013-01-16 17:47                           ` Jason Cooper
2013-01-16 22:36                             ` Soeren Moch
2013-01-17 10:49                       ` Arnd Bergmann
2013-01-17 13:47                         ` Soeren Moch
2013-01-17 20:26                           ` Arnd Bergmann
2013-01-19 15:29                             ` Soeren Moch
2013-01-19 18:59                               ` Andrew Lunn
2013-01-23 15:30                                 ` Soeren Moch
2013-01-23 16:25                                   ` Andrew Lunn
2013-01-23 17:07                                     ` Soeren Moch
2013-01-23 17:20                                       ` Soeren Moch
2013-01-23 18:10                                         ` Andrew Lunn
2013-01-28 20:59                                           ` Soeren Moch
2013-01-29  0:13                                             ` Jason Cooper
2013-01-29 11:02                                             ` Andrew Lunn
2013-01-29 11:50                                               ` Soeren Moch
2013-01-19 20:05                               ` Arnd Bergmann
2013-01-21 15:01                                 ` Soeren Moch
2013-01-21 18:55                                   ` Arnd Bergmann
2013-01-21 21:01                                     ` Greg KH
2013-01-22 18:13                                       ` Arnd Bergmann
2013-01-23 14:37                                         ` Soeren Moch
2013-01-19 16:24                             ` Andrew Lunn
2013-01-15 20:05           ` Sebastian Hesselbarth
2013-01-15 20:19             ` Jason Cooper

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=20130115201617.GC25500@titan.lakedaemon.net \
    --to=jason@lakedaemon.net \
    --cc=akpm@linux-foundation.org \
    --cc=andrew@lunn.ch \
    --cc=arnd@arndb.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linaro-mm-sig@lists.linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=m.szyprowski@samsung.com \
    --cc=mgorman@suse.de \
    --cc=mhocko@suse.cz \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=smoch@web.de \
    --cc=thomas.petazzoni@free-electrons.com \
    /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