From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752635AbbCQBy4 (ORCPT ); Mon, 16 Mar 2015 21:54:56 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:32022 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751451AbbCQByx (ORCPT ); Mon, 16 Mar 2015 21:54:53 -0400 Message-ID: <5507894A.2080008@oracle.com> Date: Mon, 16 Mar 2015 21:54:18 -0400 From: Sasha Levin User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Joonsoo Kim , Stefan Strogin CC: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Andrew Morton , Marek Szyprowski , Michal Nazarewicz , aneesh.kumar@linux.vnet.ibm.com, Laurent Pinchart , Dmitry Safonov , Pintu Kumar , Weijie Yang , Laura Abbott , SeongJae Park , Hui Zhu , Minchan Kim , Dyasly Sergey , Vyacheslav Tyrtov , Aleksei Mateosian , gregory.0xf0@gmail.com, gioh.kim@lge.com, pavel@ucw.cz, stefan.strogin@gmail.com Subject: Re: [PATCH v4 0/5] mm: cma: add some debug information for CMA References: <20150317014306.GB19483@js1304-P5Q-DELUXE> In-Reply-To: <20150317014306.GB19483@js1304-P5Q-DELUXE> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Source-IP: userv0021.oracle.com [156.151.31.71] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/16/2015 09:43 PM, Joonsoo Kim wrote: > On Mon, Mar 16, 2015 at 07:06:55PM +0300, Stefan Strogin wrote: >> > Hi all. >> > >> > Here is the fourth version of a patch set that adds some debugging facility for >> > CMA. >> > >> > This patch set is based on next-20150316. >> > It is also available on git: >> > git://github.com/stefanstrogin/linux -b cmainfo-v4 >> > >> > We want an interface to see a list of currently allocated CMA buffers and some >> > useful information about them (like /proc/vmallocinfo but for physically >> > contiguous buffers allocated with CMA). >> > >> > For example. We want a big (megabytes) CMA buffer to be allocated in runtime >> > in default CMA region. If someone already uses CMA then the big allocation >> > could fail. If it happened then with such an interface we could find who used >> > CMA at the moment of failure, who caused fragmentation and so on. Ftrace also >> > would be helpful here, but with ftrace we can see the whole history of >> > allocations and releases, whereas with this patch set we can see a snapshot of >> > CMA region with actual information about its allocations. > Hello, > > Hmm... I still don't think that this is really helpful to find root > cause of fragmentation. Think about following example. > > Assume 1024 MB CMA region. > > 128 MB allocation * 4 > 1 MB allocation > 128 MB allocation > 128 MB release * 4 (first 4) > try 512 MB allocation > > With above sequences, fragmentation happens and 512 MB allocation would > be failed. We can get information about 1 MB allocation and 128 MB one > from the buffer list as you suggested, but, fragmentation are related > to whole sequence of allocation/free history, not snapshot of allocation. This is solvable by dumping task->comm in the tracepoint patch (1/5), right? Thanks, Sasha