* [PATCH] IB/core: memset attr variable to prevent garbage data
@ 2014-09-26 10:19 Devesh Sharma
[not found] ` <45be0302-ea5d-4f35-892a-47617edd27ec-3RiH6ntJJkP8BX6JNMqfyFjyZtpTMMwT@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Devesh Sharma @ 2014-09-26 10:19 UTC (permalink / raw)
To: linux-rdma-u79uwXL29TY76Z2rM5mHXA; +Cc: Devesh Sharma
During create-ah from user land, uverbs is sending
garbage data in attr.dmac and attr.vlan_id. This
patch prevents the same.
Signed-off-by: Devesh Sharma <devesh.sharma-laKkSmNT4hbQT0dZR+AlfA@public.gmane.org>
---
drivers/infiniband/core/uverbs_cmd.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
index 0600c50..0b1ce71 100644
--- a/drivers/infiniband/core/uverbs_cmd.c
+++ b/drivers/infiniband/core/uverbs_cmd.c
@@ -2508,6 +2508,7 @@ ssize_t ib_uverbs_create_ah(struct ib_uverbs_file *file,
goto err;
}
+ memset(&attr, 0, sizeof(attr));
attr.dlid = cmd.attr.dlid;
attr.sl = cmd.attr.sl;
attr.src_path_bits = cmd.attr.src_path_bits;
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 2+ messages in thread[parent not found: <45be0302-ea5d-4f35-892a-47617edd27ec-3RiH6ntJJkP8BX6JNMqfyFjyZtpTMMwT@public.gmane.org>]
* Re: [PATCH] IB/core: memset attr variable to prevent garbage data [not found] ` <45be0302-ea5d-4f35-892a-47617edd27ec-3RiH6ntJJkP8BX6JNMqfyFjyZtpTMMwT@public.gmane.org> @ 2014-09-26 12:12 ` Yann Droneaud 0 siblings, 0 replies; 2+ messages in thread From: Yann Droneaud @ 2014-09-26 12:12 UTC (permalink / raw) To: Devesh Sharma; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Or Gerlitz, Matan Barak Hi, Le vendredi 26 septembre 2014 à 15:49 +0530, Devesh Sharma a écrit : > During create-ah from user land, uverbs is sending > garbage data in attr.dmac and attr.vlan_id. This > patch prevents the same. > > Signed-off-by: Devesh Sharma <devesh.sharma-laKkSmNT4hbQT0dZR+AlfA@public.gmane.org> > --- > drivers/infiniband/core/uverbs_cmd.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c > index 0600c50..0b1ce71 100644 > --- a/drivers/infiniband/core/uverbs_cmd.c > +++ b/drivers/infiniband/core/uverbs_cmd.c > @@ -2508,6 +2508,7 @@ ssize_t ib_uverbs_create_ah(struct ib_uverbs_file *file, > goto err; > } > > + memset(&attr, 0, sizeof(attr)); It's a bit overkill. > attr.dlid = cmd.attr.dlid; > attr.sl = cmd.attr.sl; > attr.src_path_bits = cmd.attr.src_path_bits; Just do memset(attr.dmac, 0, sizeof(attr.dmac)); attr.vlan_id = 0; In the spirit of <http://marc.info/?i=1409661154-13718-1-git-send-email-ogerlitz@mellanox.com>, please add the following to the commit message: Fixes: dd5f03beb4f7 ('IB/core: Ethernet L2 attributes in verbs/cm structures') Cc: Matan Barak <matanb-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org> Cc: Or Gerlitz <ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org> -- Yann Droneaud OPTEYA -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-09-26 12:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-26 10:19 [PATCH] IB/core: memset attr variable to prevent garbage data Devesh Sharma
[not found] ` <45be0302-ea5d-4f35-892a-47617edd27ec-3RiH6ntJJkP8BX6JNMqfyFjyZtpTMMwT@public.gmane.org>
2014-09-26 12:12 ` Yann Droneaud
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox