From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754826AbcAHLef (ORCPT ); Fri, 8 Jan 2016 06:34:35 -0500 Received: from mx2.suse.de ([195.135.220.15]:60337 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754520AbcAHLee (ORCPT ); Fri, 8 Jan 2016 06:34:34 -0500 Subject: Re: [PATCH v2 9/9] mm, oom: print symbolic gfp_flags in oom warning To: David Rientjes References: <1448368581-6923-1-git-send-email-vbabka@suse.cz> <1448368581-6923-10-git-send-email-vbabka@suse.cz> Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Andrew Morton , Joonsoo Kim , Minchan Kim , Sasha Levin , "Kirill A. Shutemov" , Mel Gorman , Michal Hocko From: Vlastimil Babka Message-ID: <568F9EC6.8070708@suse.cz> Date: Fri, 8 Jan 2016 12:34:30 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/07/2016 10:29 PM, David Rientjes wrote: > On Tue, 24 Nov 2015, Vlastimil Babka wrote: > >> It would be useful to translate gfp_flags into string representation when >> printing in case of an OOM, especially as the flags have been undergoing some >> changes recently and the script ./scripts/gfp-translate needs a matching source >> version to be accurate. >> >> Example output: >> >> a.out invoked oom-killer: order=0, oom_score_adj=0, gfp_mask=0x24280ca(GFP_HIGHUSER_MOVABLE|GFP_ZERO) >> > > Is there a way that we can keep the order of the fields so that anything > parsing the kernel log for oom kills doesn't break? Yes, this is possible with the new printk handling of flags, please look at v3: http://marc.info/?l=linux-mm&m=145042944710510&w=2 There I changed the print just to have order first and gfp_mask next, as it seemed more logical. But it doesn't need to be that way and I can post V4 keeping the original order of variables. But do you think the flags expansion is safe to add there, or should I put it on separate line? Thanks > The messages printed > to the kernel log are the only (current) way to determine that the kernel > killed something so we should be careful not to break anything parsing > them, and this is a common line to look for. >