From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752040AbdJPKCg (ORCPT ); Mon, 16 Oct 2017 06:02:36 -0400 Received: from andre.telenet-ops.be ([195.130.132.53]:45328 "EHLO andre.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751376AbdJPKCf (ORCPT ); Mon, 16 Oct 2017 06:02:35 -0400 From: Geert Uytterhoeven To: Jeff Dike , Richard Weinberger Cc: user-mode-linux-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] um: Restore symbol versions for __memcpy and memcpy Date: Mon, 16 Oct 2017 12:02:32 +0200 Message-Id: <1508148152-2965-1-git-send-email-geert@linux-m68k.org> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org If CONFIG_MODVERSIONS=y: WARNING: EXPORT symbol "__memcpy" [vmlinux] version generation failed, symbol will not be versioned. WARNING: EXPORT symbol "memcpy" [vmlinux] version generation failed, symbol will not be versioned. Add , including the generic version, so that genksyms knows the types of these symbols and can generate CRCs for them. Signed-off-by: Geert Uytterhoeven --- arch/um/include/asm/asm-prototypes.h | 1 + 1 file changed, 1 insertion(+) create mode 100644 arch/um/include/asm/asm-prototypes.h diff --git a/arch/um/include/asm/asm-prototypes.h b/arch/um/include/asm/asm-prototypes.h new file mode 100644 index 0000000000000000..5898a26daa0dd4fa --- /dev/null +++ b/arch/um/include/asm/asm-prototypes.h @@ -0,0 +1 @@ +#include -- 2.7.4