From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752233AbcDZO6d (ORCPT ); Tue, 26 Apr 2016 10:58:33 -0400 Received: from mail-wm0-f66.google.com ([74.125.82.66]:33030 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750835AbcDZO6b (ORCPT ); Tue, 26 Apr 2016 10:58:31 -0400 Date: Tue, 26 Apr 2016 16:58:29 +0200 From: Michal Hocko To: kbuild test robot , Andrew Morton Cc: kbuild-all@01.org, Tetsuo Handa , David Rientjes , linux-mm@kvack.org, LKML Subject: Re: [PATCH 2/2] mm, oom_reaper: do not mmput synchronously from the oom reaper context Message-ID: <20160426145828.GF20813@dhcp22.suse.cz> References: <1461679470-8364-3-git-send-email-mhocko@kernel.org> <201604262233.UgQXNIir%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201604262233.UgQXNIir%fengguang.wu@intel.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue 26-04-16 22:18:22, kbuild test robot wrote: > >> include/linux/mm_types.h:516:21: error: field 'async_put_work' has incomplete type > struct work_struct async_put_work; My bad. We need to include because we rely on the include only indirectly which happened to work fine for most of my configs - not so for allnoconfig, though. Please fold this into the original patch or let me know and I will repost the full patch again. --- >>From 368e90e7640a1eb5f0e621c7ccb08bc7ef2d272b Mon Sep 17 00:00:00 2001 From: Michal Hocko Date: Tue, 26 Apr 2016 16:48:13 +0200 Subject: [PATCH] mm-fix: mm, oom_reaper: do not mmput synchronously from the oom reaper context In file included from include/linux/sched.h:27:0, from include/linux/oom.h:5, from mm/oom_kill.c:20: >> include/linux/mm_types.h:516:21: error: field 'async_put_work' has incomplete type struct work_struct async_put_work; Reported-by: kbuild test robot Signed-off-by: Michal Hocko --- include/linux/mm_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index f4f477244679..ab142ace96f3 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -12,6 +12,7 @@ #include #include #include +#include #include #include -- 2.8.0.rc3 -- Michal Hocko SUSE Labs