OSDN Git Service

mmc: omap_hsmmc: Reduce max_segs for reliability
authorWill Newton <will.newton@gmail.com>
Thu, 22 Jun 2017 10:57:53 +0000 (11:57 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Wed, 30 Aug 2017 12:01:22 +0000 (14:01 +0200)
commit9442400486a1ec28915e9ab31517a5665ed35705
treedb07558c3b70d373ead6db1f0f57d5f211c8ddc8
parent163671845092af687ef5104ecb2e5b461f4c46d4
mmc: omap_hsmmc: Reduce max_segs for reliability

Reduce max_segs to 64, a value that allows allocation of an entire
EDMA descriptor list within a single page - EDMA descriptors
are 40 bytes and the header is much larger. This avoids doing a
higher order GFP_ATOMIC allocation in edma_prep_slave_sg
when setting up a transfer which can potentially fail due to
fragmentation under heavy I/O load.

The current value of 1024 is unusually high in comparison to
other mmc host drivers which mostly use values of between 1
and 256. The EDMA driver at present splits lists above 20
segments in any case so reducing the size of lists we pass to
it shouldn't add much overhead.

Signed-off-by: Will Newton <willn@resin.io>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/omap_hsmmc.c