public inbox for linux-next@vger.kernel.org 
 help / color / mirror / Atom feed
From: Michal Hocko <mhocko@suse•cz>
To: akpm@linux-foundation•org
Cc: mm-commits@vger•kernel.org, linux-kernel@vger•kernel.org,
	linux-mm@kvack•org, linux-fsdevel@vger•kernel.org,
	linux-next@vger•kernel.org
Subject: Re: mmotm 2012-12-20-16-15 uploaded
Date: Fri, 21 Dec 2012 09:55:06 +0100	[thread overview]
Message-ID: <20121221085506.GA13375@dhcp22.suse.cz> (raw)
In-Reply-To: <20121221001631.74ECA82004A@wpzn4.hot.corp.google.com>

cma-use-unsigned-type-for-count-argument-fix.patch has a typo:
@@ -1060,38 +1059,39 @@ static struct page **__iommu_alloc_buffe
 
 		__dma_clear_buffer(page, size);
 
-		for (i = 0; i < count; i++)
-			pages[i] = page + i;
+		for (idx = 0; idx < count; idx++)
+			pages[i] = page + idx;
 
 		return pages;
 	}
 
 	while (count) {
-		int j, order = __fls(count);
+		unsigned int j;
+		unnsigned int order = __fls(count);

s/unnsigned/unsigned/

-- 
Michal Hocko
SUSE Labs

      reply	other threads:[~2012-12-21  8:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-21  0:16 mmotm 2012-12-20-16-15 uploaded akpm
2012-12-21  8:55 ` Michal Hocko [this message]

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=20121221085506.GA13375@dhcp22.suse.cz \
    --to=mhocko@suse$(echo .)cz \
    --cc=akpm@linux-foundation$(echo .)org \
    --cc=linux-fsdevel@vger$(echo .)kernel.org \
    --cc=linux-kernel@vger$(echo .)kernel.org \
    --cc=linux-mm@kvack$(echo .)org \
    --cc=linux-next@vger$(echo .)kernel.org \
    --cc=mm-commits@vger$(echo .)kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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