From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f200.google.com (mail-pf0-f200.google.com [209.85.192.200]) by kanga.kvack.org (Postfix) with ESMTP id 9730F6B0006 for ; Wed, 23 May 2018 04:08:45 -0400 (EDT) Received: by mail-pf0-f200.google.com with SMTP id b64-v6so12789950pfl.13 for ; Wed, 23 May 2018 01:08:45 -0700 (PDT) Received: from mga05.intel.com (mga05.intel.com. [192.55.52.43]) by mx.google.com with ESMTPS id 33-v6si18581728plb.19.2018.05.23.01.08.43 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 23 May 2018 01:08:44 -0700 (PDT) Date: Wed, 23 May 2018 16:08:28 +0800 From: kbuild test robot Subject: Re: [PATCH] mm: save two stranding bit in gfp_mask Message-ID: <201805231335.RIR9HxYj%fengguang.wu@intel.com> References: <20180516202023.167627-1-shakeelb@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180516202023.167627-1-shakeelb@google.com> Sender: owner-linux-mm@kvack.org List-ID: To: Shakeel Butt Cc: kbuild-all@01.org, Michal Hocko , Andrew Morton , Greg Thelen , Mel Gorman , Vlastimil Babka , Linux MM , LKML Hi Shakeel, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on mmotm/master] [also build test WARNING on v4.17-rc6] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Shakeel-Butt/mm-save-two-stranding-bit-in-gfp_mask/20180518-202316 base: git://git.cmpxchg.org/linux-mmotm.git master vim +/jl +2585 fs/reiserfs/journal.c ^1da177e Linus Torvalds 2005-04-16 2573 ^1da177e Linus Torvalds 2005-04-16 2574 static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s) ^1da177e Linus Torvalds 2005-04-16 2575 { ^1da177e Linus Torvalds 2005-04-16 2576 struct reiserfs_journal_list *jl; 8c777cc4 Pekka Enberg 2006-02-01 2577 jl = kzalloc(sizeof(struct reiserfs_journal_list), 8c777cc4 Pekka Enberg 2006-02-01 2578 GFP_NOFS | __GFP_NOFAIL); ^1da177e Linus Torvalds 2005-04-16 2579 INIT_LIST_HEAD(&jl->j_list); ^1da177e Linus Torvalds 2005-04-16 2580 INIT_LIST_HEAD(&jl->j_working_list); ^1da177e Linus Torvalds 2005-04-16 2581 INIT_LIST_HEAD(&jl->j_tail_bh_list); ^1da177e Linus Torvalds 2005-04-16 2582 INIT_LIST_HEAD(&jl->j_bh_list); 90415dea Jeff Mahoney 2008-07-25 2583 mutex_init(&jl->j_commit_mutex); ^1da177e Linus Torvalds 2005-04-16 2584 SB_JOURNAL(s)->j_num_lists++; ^1da177e Linus Torvalds 2005-04-16 @2585 get_journal_list(jl); ^1da177e Linus Torvalds 2005-04-16 2586 return jl; ^1da177e Linus Torvalds 2005-04-16 2587 } ^1da177e Linus Torvalds 2005-04-16 2588 :::::: The code at line 2585 was first introduced by commit :::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2 :::::: TO: Linus Torvalds :::::: CC: Linus Torvalds --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation