Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1202512

Re: [PATCH] mmc: sdhci: fix dma memory leak in sdhci_pre_req()

From Jiri Slaby <jslaby@suse.cz>
Newsgroups linux.kernel
Subject Re: [PATCH] mmc: sdhci: fix dma memory leak in sdhci_pre_req()
Date 2015-08-07 11:40 +0200
Message-ID <pUMi7-3UR-15@gated-at.bofh.it> (permalink)
References <pUM8r-3JH-41@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 08/07/2015, 11:29 AM, Haibo Chen wrote:
> Currently one mrq->data maybe execute dma_map_sg() twice
> when mmc subsystem prepare over one new request, and the
> following log show up:
> 	sdhci[sdhci_pre_dma_transfer] invalid cookie: 24, next-cookie 25

Thanks, I will test it shortly.

> @@ -2157,16 +2147,10 @@ static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
>  {
>  	struct sdhci_host *host = mmc_priv(mmc);
>  
> -	if (mrq->data->host_cookie) {
> -		mrq->data->host_cookie = 0;
> -		return;
> -	}
> +	mrq->data->host_cookie = COOKIE_UNMAPPED;

Just one question. Should we warn if host_cookie != COOKIE_UNMAPPED
instead of the assignment? In other words, if the assignment is
mandatory, it deserves a comment why.

thanks,
-- 
js
suse labs
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] mmc: sdhci: fix dma memory leak in sdhci_pre_req() Haibo Chen <haibo.chen@freescale.com> - 2015-08-07 11:30 +0200
  Re: [PATCH] mmc: sdhci: fix dma memory leak in sdhci_pre_req() Jiri Slaby <jslaby@suse.cz> - 2015-08-07 11:40 +0200
  Re: [PATCH] mmc: sdhci: fix dma memory leak in sdhci_pre_req() Jiri Slaby <jslaby@suse.cz> - 2015-08-07 13:10 +0200

csiph-web