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 C456F157031; Mon, 29 Jan 2024 18:36:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706553367; cv=none; b=jzqQ4Bee1JAGKMKaXwH30n6QPbHBPX7NK6NlkpIOue1o/iZUkU+32rD6yRdajYDV+VPPz7lzXNi0jJtVT/j1phDPuRYS2uzpHVH70BZTnNYzaXKEddjIG3H5Gvh+x5vX2zn0OALJ+5xZvONPvKN5f/ksE7I1+kRL//i1z0HpDhc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706553367; c=relaxed/simple; bh=+GFlLe3e6fcoGMOT9P0XBWSK5jdsfSKtzZRqyBumyzk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=bvSXolaaXaHhPzZVQBE7BmG7eS5OT3AI/wlrU5mkrWoEFmxzyx2Ac6+AWQQL8YauQnGb7yPCwTlqxq4toBi9PfqnD9Wyma56Wa6W3e6vsdM9cadhVj3W3fUrdKWMNLbfrZfZ4bgUuRL8OZmVftvA7nxOE5taA/euPJFQJxsDWaA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=GIIGmfRE; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="GIIGmfRE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A667CC433F1; Mon, 29 Jan 2024 18:36:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1706553367; bh=+GFlLe3e6fcoGMOT9P0XBWSK5jdsfSKtzZRqyBumyzk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GIIGmfREdUa14kE6XuOVCjxbefAxSHr3e5lliFPZ6cq3sonGPwZ9o6jO14IKkQ7N8 K6+XReEDgVwatR9c4qrW6AuJ6fcvHHy4RHPj/p3eAtK8hTEKeGtu08ZX/Te4eBQzCm WhhRsWBZuhBUeieybfwF/8QzvAfxmDgXFJug2QM5BoULm/unP+NC8j6dFOJOwQS8VC lo8l2xY1vgFjoMFzPpVdjVk8A2qUyRc8vzhJdkJSY2YuHxAlcaa2r4i5KdqVEd43sd etO0edwQ9jxBCowToNfA05ZV+b5dLJfr5hNez5ictsPlKeTXExHAvgDNvkn1jBHtNk ybN4TSZTl/fOQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Vinod Koul , Sasha Levin , dmaengine@vger.kernel.org Subject: [PATCH AUTOSEL 6.1 4/5] dmaengine: shdma: increase size of 'dev_id' Date: Mon, 29 Jan 2024 13:35:56 -0500 Message-ID: <20240129183559.464502-4-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240129183559.464502-1-sashal@kernel.org> References: <20240129183559.464502-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.1.75 Content-Transfer-Encoding: 8bit From: Vinod Koul [ Upstream commit 404290240827c3bb5c4e195174a8854eef2f89ac ] We seem to have hit warnings of 'output may be truncated' which is fixed by increasing the size of 'dev_id' drivers/dma/sh/shdmac.c: In function ‘sh_dmae_probe’: drivers/dma/sh/shdmac.c:541:34: error: ‘%d’ directive output may be truncated writing between 1 and 10 bytes into a region of size 9 [-Werror=format-truncation=] 541 | "sh-dmae%d.%d", pdev->id, id); | ^~ In function ‘sh_dmae_chan_probe’, inlined from ‘sh_dmae_probe’ at drivers/dma/sh/shdmac.c:845:9: drivers/dma/sh/shdmac.c:541:26: note: directive argument in the range [0, 2147483647] 541 | "sh-dmae%d.%d", pdev->id, id); | ^~~~~~~~~~~~~~ drivers/dma/sh/shdmac.c:541:26: note: directive argument in the range [0, 19] drivers/dma/sh/shdmac.c:540:17: note: ‘snprintf’ output between 11 and 21 bytes into a destination of size 16 540 | snprintf(sh_chan->dev_id, sizeof(sh_chan->dev_id), | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 541 | "sh-dmae%d.%d", pdev->id, id); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Vinod Koul Signed-off-by: Sasha Levin --- drivers/dma/sh/shdma.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/sh/shdma.h b/drivers/dma/sh/shdma.h index 9c121a4b33ad..f97d80343aea 100644 --- a/drivers/dma/sh/shdma.h +++ b/drivers/dma/sh/shdma.h @@ -25,7 +25,7 @@ struct sh_dmae_chan { const struct sh_dmae_slave_config *config; /* Slave DMA configuration */ int xmit_shift; /* log_2(bytes_per_xfer) */ void __iomem *base; - char dev_id[16]; /* unique name per DMAC of channel */ + char dev_id[32]; /* unique name per DMAC of channel */ int pm_error; dma_addr_t slave_addr; }; -- 2.43.0