Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752746AbbDBHdL (ORCPT ); Thu, 2 Apr 2015 03:33:11 -0400 Received: from LGEMRELSE7Q.lge.com ([156.147.1.151]:51069 "EHLO lgemrelse7q.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752353AbbDBHdI (ORCPT ); Thu, 2 Apr 2015 03:33:08 -0400 X-Original-SENDERIP: 10.177.220.157 X-Original-MAILFROM: iamjoonsoo.kim@lge.com Date: Thu, 2 Apr 2015 16:33:41 +0900 From: Joonsoo Kim To: Stefan Strogin Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Steven Rostedt , Ingo Molnar , Andrew Morton , Marek Szyprowski , Michal Nazarewicz , aneesh.kumar@linux.vnet.ibm.com, Laurent Pinchart , Sasha Levin , Dmitry Safonov , Pintu Kumar , Laura Abbott , Dyasly Sergey , Vyacheslav Tyrtov , Aleksei Mateosian , gioh.kim@lge.com, stefan.strogin@gmail.com Subject: Re: [PATCH] mm: cma: add trace events for CMA allocations and freeings Message-ID: <20150402073340.GA13158@js1304-P5Q-DELUXE> References: <1427895103-9431-1-git-send-email-s.strogin@partner.samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1427895103-9431-1-git-send-email-s.strogin@partner.samsung.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1288 Lines: 38 Hello, On Wed, Apr 01, 2015 at 04:31:43PM +0300, Stefan Strogin wrote: > Add trace events for cma_alloc() and cma_release(). > > The cma_alloc tracepoint is used both for successful and failed allocations, > in case of allocation failure pfn=-1UL is stored and printed. > > Signed-off-by: Stefan Strogin > --- > > Took out from the patch set "mm: cma: add some debug information for CMA" v4 > (http://thread.gmane.org/gmane.linux.kernel.mm/129903) because of probable > uselessness of the rest of the patches. I think that patch 5/5 in previous submission is handy and simple to merge. Although we can calculate it by using bitmap, it would be good to get that information(used size and maxchunk size) directly. > @@ -414,6 +416,8 @@ struct page *cma_alloc(struct cma *cma, unsigned int count, unsigned int align) > start = bitmap_no + mask + 1; > } > > + trace_cma_alloc(page ? pfn : -1UL, page, count); > + I think that tracing align is also useful. Is there any reason not to include it? Thanks. -- 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/