From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) (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 7AE9C343D9D; Mon, 22 Jun 2026 18:21:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.142.43.55 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782152515; cv=none; b=DR77XsXBQ7ESDNeurxraegEKlfQI3CB014/4GffquULjlieRGvF5Q5KwgI+VRulSKG+VJY857Pkp8r1NnVRsjwlTkAc4ufQlJpSxN9dmddQrcFNc0QguOjpIcGW+Orl2dBEKroravgyPUGTpXbooYnSfis2BJZlNt131+/xQ84Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782152515; c=relaxed/simple; bh=stuQTfb73FufXMCRBmqvR7Yhr2IPfoOpetylBXI/zuk=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=kp2oRMne25KVFmMvmvskyvMe4jnoPwSjf1gMjuXuXSgPUfa+MiPRabeyAoe14++doaOO8wo9MOsZ4lt8Z7hmjc9vZQdl3xCTL1SYexM4qH6kqMjL5FbEXRz1EJlnowSeucVM6N7AT+Q2tCgP8xawWvegitPg4zI17O3vL4mTXWg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de; spf=pass smtp.mailfrom=linutronix.de; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=dWiRIyxw; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=UaoS57Vd; arc=none smtp.client-ip=193.142.43.55 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linutronix.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="dWiRIyxw"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="UaoS57Vd" From: Nam Cao DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1782152512; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=stuQTfb73FufXMCRBmqvR7Yhr2IPfoOpetylBXI/zuk=; b=dWiRIyxwI8KR7dJ9MZcqv+CZqAr/iVzY6YcXWP2EgGHCfZlVhDgkjkSid2olVVGv0TykzI UjO4kPcT9X/IkPqhjDpaxNaO0m3Bg6I7F8mI7KnYdUL6F65vX5LB0Zymo4xjqxqlHrm271 HjxqnL00QR6q1cwjtwS5I43D9mK/S5fAVOaDFr8ENyTy8r8vtwmz7OZmRAxJaxkgHAFM1J hAPpFyY1GntrYV2ztmQ3W9FC5vljqRGeKL6KL1kO9/jGf77/3GNrHr8k7iLloNILDPIAXh +mfl3i+cu1dcIu/7UbSzjYWWnDlSUMcDcJBZZF8hxCP6DD52CGyt5O0yjjOkwQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1782152512; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=stuQTfb73FufXMCRBmqvR7Yhr2IPfoOpetylBXI/zuk=; b=UaoS57VdjEK09E69P9jtbnj8rorCMBaPaS0lpWwBWSeFNV4E+wnqQ/uAAJj5ULc57hK+gn Wavmlr4hUIypabCQ== To: Ben Dooks , linux-raid@vger.kernel.org, Song Liu , Yu Kuai Cc: linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, Paul Walmsley , Palmer Dabbelt , Ben Dooks Subject: Re: [PATCH] raid6: fix raid6_recov_rvv symbol undeclared warning In-Reply-To: <20260622135535.481534-1-ben.dooks@codethink.co.uk> References: <20260622135535.481534-1-ben.dooks@codethink.co.uk> Date: Mon, 22 Jun 2026 20:21:51 +0200 Message-ID: <87echyv3k0.fsf@yellow.woof> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain Ben Dooks writes: > The riscv recov_rvv.c should have included pq_arch.h for > the definition of raid6_recov_rvv. Add the include to > fix the following sparse warning: > > lib/raid/raid6/riscv/recov_rvv.c:218:32: warning: symbol 'raid6_recov_rvv' was not declared. Should it be static? > > Signed-off-by: Ben Dooks Reviewed-by: Nam Cao 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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 56168CDB46F for ; Mon, 22 Jun 2026 18:22:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:References :In-Reply-To:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=D3JyoWDi7skKY8K6efFgYkZydf6yOMIeO4we2dap2/8=; b=hZwVTfZ7/oVPOf 6JP1sluwmA1E0FOZgTgriNM+ZT5jkYaiPSy41JT2bn4207jXD6r3Q8sLL20MId3VoJlVlnyW5/xba Sq7PHFfg3VJyr45TWnlpCfNmaR4RPHi9/8zrY6vmA6Og03JgJJeQkbzHpHbQYOxmzfjJCXJOpqQ41 gnHHp/mRjdwH6nn9Zhw17YQGIPXRD373sYHtT1lsuJPfSeR3CqB3FVwlgeAa2ILcIYE7yLYP75Nu6 tzFJrlpt9bngXRa9/hjeD9Tt/1beQt0aggDTh150rBkAg3Xwx10HA4AxSX1muPgk6zKChK3/bXJUp FJjIpS5yNBJ462NmCLbQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.99.1 #2 (Red Hat Linux)) id 1wbjHQ-00000005IF8-4AQ9; Mon, 22 Jun 2026 18:21:56 +0000 Received: from galois.linutronix.de ([193.142.43.55]) by bombadil.infradead.org with esmtps (Exim 4.99.1 #2 (Red Hat Linux)) id 1wbjHO-00000005IEo-21c7 for linux-riscv@lists.infradead.org; Mon, 22 Jun 2026 18:21:56 +0000 From: Nam Cao DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1782152512; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=stuQTfb73FufXMCRBmqvR7Yhr2IPfoOpetylBXI/zuk=; b=dWiRIyxwI8KR7dJ9MZcqv+CZqAr/iVzY6YcXWP2EgGHCfZlVhDgkjkSid2olVVGv0TykzI UjO4kPcT9X/IkPqhjDpaxNaO0m3Bg6I7F8mI7KnYdUL6F65vX5LB0Zymo4xjqxqlHrm271 HjxqnL00QR6q1cwjtwS5I43D9mK/S5fAVOaDFr8ENyTy8r8vtwmz7OZmRAxJaxkgHAFM1J hAPpFyY1GntrYV2ztmQ3W9FC5vljqRGeKL6KL1kO9/jGf77/3GNrHr8k7iLloNILDPIAXh +mfl3i+cu1dcIu/7UbSzjYWWnDlSUMcDcJBZZF8hxCP6DD52CGyt5O0yjjOkwQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1782152512; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=stuQTfb73FufXMCRBmqvR7Yhr2IPfoOpetylBXI/zuk=; b=UaoS57VdjEK09E69P9jtbnj8rorCMBaPaS0lpWwBWSeFNV4E+wnqQ/uAAJj5ULc57hK+gn Wavmlr4hUIypabCQ== To: Ben Dooks , linux-raid@vger.kernel.org, Song Liu , Yu Kuai Cc: linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, Paul Walmsley , Palmer Dabbelt , Ben Dooks Subject: Re: [PATCH] raid6: fix raid6_recov_rvv symbol undeclared warning In-Reply-To: <20260622135535.481534-1-ben.dooks@codethink.co.uk> References: <20260622135535.481534-1-ben.dooks@codethink.co.uk> Date: Mon, 22 Jun 2026 20:21:51 +0200 Message-ID: <87echyv3k0.fsf@yellow.woof> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.9.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20260622_112154_695681_FED9D37C X-CRM114-Status: UNSURE ( 5.19 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-riscv@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-riscv" Errors-To: linux-riscv-bounces+linux-riscv=archiver.kernel.org@lists.infradead.org Ben Dooks writes: > The riscv recov_rvv.c should have included pq_arch.h for > the definition of raid6_recov_rvv. Add the include to > fix the following sparse warning: > > lib/raid/raid6/riscv/recov_rvv.c:218:32: warning: symbol 'raid6_recov_rvv' was not declared. Should it be static? > > Signed-off-by: Ben Dooks Reviewed-by: Nam Cao _______________________________________________ linux-riscv mailing list linux-riscv@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-riscv