aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSteven L. Roberts <robers97@gmail.com>2017-05-10 10:54:12 -0500
committerDoug Ledford <dledford@redhat.com>2017-06-01 17:03:19 -0400
commitc4dd4b69f55abcc8dd079f8de55d9d8c2ddbefce (patch)
tree1a13d008255c923ebaef205e82491995d1837024 /drivers
parentRDMA/iw_cxgb4: fix the calculation of ipv6 header size (diff)
downloadlinux-dev-c4dd4b69f55abcc8dd079f8de55d9d8c2ddbefce.tar.xz
linux-dev-c4dd4b69f55abcc8dd079f8de55d9d8c2ddbefce.zip
RDMA/hfi1: fix array termination by appending NULL to attr array
This fixes a kernel panic when loading the hfi driver as a dynamic module. Signed-off-by: Steven L Roberts <robers97@gmail.com> Reviewed-by: Leon Romanovsky <leon@kernel.org> Acked-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/infiniband/hw/hfi1/sysfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/hfi1/sysfs.c b/drivers/infiniband/hw/hfi1/sysfs.c
index 50d140d25e38..2f3bbcac1e34 100644
--- a/drivers/infiniband/hw/hfi1/sysfs.c
+++ b/drivers/infiniband/hw/hfi1/sysfs.c
@@ -196,7 +196,8 @@ static const struct sysfs_ops port_cc_sysfs_ops = {
};
static struct attribute *port_cc_default_attributes[] = {
- &cc_prescan_attr.attr
+ &cc_prescan_attr.attr,
+ NULL
};
static struct kobj_type port_cc_ktype = {