From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 127E61FB4 for ; Fri, 3 Feb 2023 10:16:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 85C66C433EF; Fri, 3 Feb 2023 10:16:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1675419380; bh=N222DfvXFLwRZy4sMcoaZO7ceWeOYwBt2r1GWUGA3B0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dhpXnPAN/aL0r994BZC+NnqDOwEDAlJLlKi7rTeobiOSt2fqaSkOlkw2c2VrLVnCn QpESuc29UICAGLo2Mrtc7iRQ13lCaUnMxhfBYVQWpSs0hBFkjSfakKvaxxl2xJEuBN mKCwuAa+T+2O9D9r7NN0zUj5fpKqWVJ8qNsV2bVo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Nathan Chancellor , "Eric W. Biederman" , Eric Biggers Subject: [PATCH 4.14 49/62] hexagon: Fix function name in die() Date: Fri, 3 Feb 2023 11:12:45 +0100 Message-Id: <20230203101015.031577356@linuxfoundation.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230203101012.959398849@linuxfoundation.org> References: <20230203101012.959398849@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Nathan Chancellor commit 4f0712ccec09c071e221242a2db9a6779a55a949 upstream. When building ARCH=hexagon defconfig: arch/hexagon/kernel/traps.c:217:2: error: implicit declaration of function 'make_dead_task' [-Werror,-Wimplicit-function-declaration] make_dead_task(err); ^ The function's name is make_task_dead(), change it so there is no more build error. Fixes: 0e25498f8cd4 ("exit: Add and use make_task_dead.") Signed-off-by: Nathan Chancellor Link: https://lkml.kernel.org/r/20211227184851.2297759-2-nathan@kernel.org Signed-off-by: Eric W. Biederman Signed-off-by: Eric Biggers Signed-off-by: Greg Kroah-Hartman --- arch/hexagon/kernel/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/hexagon/kernel/traps.c +++ b/arch/hexagon/kernel/traps.c @@ -234,7 +234,7 @@ int die(const char *str, struct pt_regs panic("Fatal exception"); oops_exit(); - make_dead_task(err); + make_task_dead(err); return 0; }