From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751128AbdHWWN3 (ORCPT ); Wed, 23 Aug 2017 18:13:29 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:45538 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751003AbdHWWN2 (ORCPT ); Wed, 23 Aug 2017 18:13:28 -0400 Date: Wed, 23 Aug 2017 15:13:26 -0700 From: Andrew Morton To: Stephen Rothwell Cc: Linux-Next Mailing List , Linux Kernel Mailing List , Matthew Wilcox Subject: Re: linux-next: build failure after merge of the akpm-current tree Message-Id: <20170823151326.a32b42a27b016b4705d0e98c@linux-foundation.org> In-Reply-To: <20170823204159.3d706699@canb.auug.org.au> References: <20170823204159.3d706699@canb.auug.org.au> X-Mailer: Sylpheed 3.4.1 (GTK+ 2.24.23; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 23 Aug 2017 20:41:59 +1000 Stephen Rothwell wrote: > After merging the akpm-current tree, today's linux-next build (mips > defconfig) failed like this: > > In file included from include/linux/selection.h:11:0, > from drivers/video/console/newport_con.c:16: > include/linux/vt_buffer.h: In function 'scr_memsetw': > include/linux/vt_buffer.h:34:2: error: implicit declaration of function 'memset16' [-Werror=implicit-function-declaration] > include/linux/vt_buffer.h: In function 'scr_memcpyw': > include/linux/vt_buffer.h:47:2: error: implicit declaration of function 'memcpy' [-Werror=implicit-function-declaration] > include/linux/vt_buffer.h: In function 'scr_memmovew': > include/linux/vt_buffer.h:66:2: error: implicit declaration of function 'memmove' [-Werror=implicit-function-declaration] > In file included from include/linux/string.h:18:0, This? --- a/include/linux/vt_buffer.h~vga-optimise-console-scrolling-fix +++ a/include/linux/vt_buffer.h @@ -13,6 +13,7 @@ #ifndef _LINUX_VT_BUFFER_H_ #define _LINUX_VT_BUFFER_H_ +#include #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_MDA_CONSOLE) #include _