From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EB62BC49ED7 for ; Thu, 19 Sep 2019 22:24:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BD91C21A49 for ; Thu, 19 Sep 2019 22:24:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568931844; bh=MJwYI1KVbjryZ/U0QHBipNr+8bajKoJ+EZOTakjitT8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Eg/eIgx6edCvie88TpXNBpEMrhtXRV5S91u1GUkWN3hoPZEJbb6CWCdLJZT9r9UTj 4Bd1sphWXIvpZpeBKswdCmRPUxl+Vs8kgWaOnMOO12oZsjmd2HOqyEWRqnGxgPKnKh +CpQOwG3HHy5gGbL3ezncet1fhJ+Rthz+3roffSY= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2407085AbfISWYA (ORCPT ); Thu, 19 Sep 2019 18:24:00 -0400 Received: from mail.kernel.org ([198.145.29.99]:39908 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2407066AbfISWX4 (ORCPT ); Thu, 19 Sep 2019 18:23:56 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 586B921920; Thu, 19 Sep 2019 22:23:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568931835; bh=MJwYI1KVbjryZ/U0QHBipNr+8bajKoJ+EZOTakjitT8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lO/LDtnXQDBZRWJypg83vOMztwHCyJLdBF8SkQtEM+pgGafQM1i0jUjCpwhPao63F pl85KM7qxD/KG6N3g8adYXBVF7Ez4ELEJjhWW/QzsuVEH4/HIZWatWOx/og0yzPgX7 tEz6hzgtVn+PVr/NZTa0XdP288Xb8+eE2wYjdY0w= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, kbuild test robot , Vineet Gupta Subject: [PATCH 4.4 56/56] ARC: export "abort" for modules Date: Fri, 20 Sep 2019 00:04:37 +0200 Message-Id: <20190919214805.317139034@linuxfoundation.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20190919214742.483643642@linuxfoundation.org> References: <20190919214742.483643642@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Vineet Gupta This is a custom patch (no mainline equivalent) for stable backport only to address 0-Day kernel test infra ARC 4.x.y builds errors. The reason for this custom patch as that it is a single patch, touches only ARC, vs. atleast two 7c2c11b208be09c1, dc8635b78cd8669 which touch atleast 3 other arches (one long removed) and could potentially have a fallout. Reported-by: kbuild test robot CC: stable@vger.kernel.org # 4.4, 4.9 Signed-off-by: Vineet Gupta Signed-off-by: Greg Kroah-Hartman --- arch/arc/kernel/traps.c | 1 + 1 file changed, 1 insertion(+) --- a/arch/arc/kernel/traps.c +++ b/arch/arc/kernel/traps.c @@ -163,3 +163,4 @@ void abort(void) { __asm__ __volatile__("trap_s 5\n"); } +EXPORT_SYMBOL(abort);