aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/ipath/ipath_mad.c
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-09-05 20:23:21 -0700
committerRoland Dreier <rolandd@cisco.com>2009-09-05 20:23:21 -0700
commit286b63d09660de0fbd0d7748984d7ae491c7fdb6 (patch)
tree8e7675a83dd395ec0bf4c9e403a75e8c90364607 /drivers/infiniband/hw/ipath/ipath_mad.c
parente07cccf4046978df10f2e13fe2b99b2f9b3a65db (diff)
downloadkernel_samsung_smdk4412-286b63d09660de0fbd0d7748984d7ae491c7fdb6.zip
kernel_samsung_smdk4412-286b63d09660de0fbd0d7748984d7ae491c7fdb6.tar.gz
kernel_samsung_smdk4412-286b63d09660de0fbd0d7748984d7ae491c7fdb6.tar.bz2
IB/ipath: strncpy() doesn't always NUL-terminate
strlcpy() will always null terminate the string. node_desc is not guaranteed to be NUL-terminated so just use memcpy(). Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/ipath/ipath_mad.c')
-rw-r--r--drivers/infiniband/hw/ipath/ipath_mad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_mad.c b/drivers/infiniband/hw/ipath/ipath_mad.c
index 16a702d..ceb98ee 100644
--- a/drivers/infiniband/hw/ipath/ipath_mad.c
+++ b/drivers/infiniband/hw/ipath/ipath_mad.c
@@ -60,7 +60,7 @@ static int recv_subn_get_nodedescription(struct ib_smp *smp,
if (smp->attr_mod)
smp->status |= IB_SMP_INVALID_FIELD;
- strncpy(smp->data, ibdev->node_desc, sizeof(smp->data));
+ memcpy(smp->data, ibdev->node_desc, sizeof(smp->data));
return reply(smp);
}