Skip to content

Commit 32f57cb

Browse files
Mike Marciniszynjgunthorpe
authored andcommitted
IB/qib: Fix duplicate sysfs directory name
The qib driver load has been failing with the following message: sysfs: cannot create duplicate filename '/devices/pci0000:80/0000:80:02.0/0000:81:00.0/infiniband/qib0/ports/1/linkcontrol' The patch below has two "linkcontrol" names causing the duplication. Fix by using the correct "diag_counters" name on the second instance. Fixes: 4a7aaf8 ("RDMA/qib: Use attributes for the port sysfs") Link: https://lore.kernel.org/r/1645106372-23004-1-git-send-email-mike.marciniszyn@cornelisnetworks.com Cc: <stable@vger.kernel.org> Reviewed-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com> Signed-off-by: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
1 parent dfd42fa commit 32f57cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/infiniband/hw/qib/qib_sysfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ static struct attribute *port_diagc_attributes[] = {
541541
};
542542

543543
static const struct attribute_group port_diagc_group = {
544-
.name = "linkcontrol",
544+
.name = "diag_counters",
545545
.attrs = port_diagc_attributes,
546546
};
547547

0 commit comments

Comments
 (0)