Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933775AbbBIXp6 (ORCPT ); Mon, 9 Feb 2015 18:45:58 -0500 Received: from smtprelay0184.hostedemail.com ([216.40.44.184]:48409 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S933171AbbBIXp4 (ORCPT ); Mon, 9 Feb 2015 18:45:56 -0500 X-Session-Marker: 6E657665747340676F6F646D69732E6F7267 X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,rostedt@goodmis.org,:::::::::::,RULES_HIT:41:355:379:541:599:800:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1777:1792:2393:2553:2559:2562:3138:3139:3140:3141:3142:3353:3622:3865:3867:3870:3871:3872:3874:4321:4362:5007:6261:7875:7903:10004:10400:10848:10967:11026:11232:11658:11914:12043:12296:12438:12517:12519:12555:12740:13069:13311:13357:21063:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: queen77_50a1f330c095d X-Filterd-Recvd-Size: 2550 Date: Mon, 9 Feb 2015 18:45:53 -0500 From: Steven Rostedt To: Stephen Boyd Cc: Vikram Mulukutla , Ingo Molnar , linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, Lime Yang Subject: Re: [PATCH] tracing: Fix unmapping loop in tracing_mark_write Message-ID: <20150209184553.3b4519de@gandalf.local.home> In-Reply-To: <54D943E6.1030404@codeaurora.org> References: <1418871056-6614-1-git-send-email-markivx@codeaurora.org> <54D943E6.1030404@codeaurora.org> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1777 Lines: 52 On Mon, 09 Feb 2015 15:33:58 -0800 Stephen Boyd wrote: > On 12/17/14 18:50, Vikram Mulukutla wrote: > > Commit 6edb2a8a385f0cdef51dae37ff23e74d76d8a6ce introduced > > an array map_pages that contains the addresses returned by > > kmap_atomic. However, when unmapping those pages, map_pages[0] > > is unmapped before map_pages[1], breaking the nesting requirement > > as specified in the documentation for kmap_atomic/kunmap_atomic. > > > > This was caught by the highmem debug code present in kunmap_atomic. > > Fix the loop to do the unmapping properly. > > > > Reviewed-by: Stephen Boyd > > Reported-by: Lime Yang > > Signed-off-by: Vikram Mulukutla > > --- > > ping? What happened to this patch? Seems to have been lost in my INBOX. Thanks for pointing it out. I'll add it to my 3.20 queue. Looks like it should be marked for stable as well. As far back as 3.5 as I can tell. -- Steve > > > kernel/trace/trace.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c > > index ab76b7b..bceed34 100644 > > --- a/kernel/trace/trace.c > > +++ b/kernel/trace/trace.c > > @@ -4931,7 +4931,7 @@ tracing_mark_write(struct file *filp, const char __user *ubuf, > > *fpos += written; > > > > out_unlock: > > - for (i = 0; i < nr_pages; i++){ > > + for (i = nr_pages - 1; i >= 0; i--) { > > kunmap_atomic(map_page[i]); > > put_page(pages[i]); > > } > > -- 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/