mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-09-22 09:34:56 +02:00
NTB: ntb_transport: Fix too small buffer for debugfs_name
[ Upstream commit6a4b50585d] The buffer used for "qp%d" was only 4 bytes, which truncates names like "qp10" to "qp1" and causes multiple queues to share the same directory. Enlarge the buffer and use sizeof() to avoid truncation. Fixes:fce8a7bb5b("PCI-Express Non-Transparent Bridge Support") Cc: <stable@vger.kernel.org> # v3.9+ Reviewed-by: Frank Li <Frank.Li@nxp.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Koichiro Den <den@valinux.co.jp> Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Sasha Levin
parent
1cdff5d564
commit
fe418ef21e
@@ -1227,9 +1227,9 @@ static int ntb_transport_init_queue(struct ntb_transport_ctx *nt,
|
||||
qp->tx_max_entry = tx_size / qp->tx_max_frame;
|
||||
|
||||
if (nt->debugfs_node_dir) {
|
||||
char debugfs_name[4];
|
||||
char debugfs_name[8];
|
||||
|
||||
snprintf(debugfs_name, 4, "qp%d", qp_num);
|
||||
snprintf(debugfs_name, sizeof(debugfs_name), "qp%d", qp_num);
|
||||
qp->debugfs_dir = debugfs_create_dir(debugfs_name,
|
||||
nt->debugfs_node_dir);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user