Skip to content
Commit 4afe6495 authored by Wang Xiaoqiang's avatar Wang Xiaoqiang Committed by Steven Rostedt
Browse files

tracing: Don't use the address of the buffer array name in copy_from_user



With the following code snippet:

    ...
    char buf[64];
    ...
    if (copy_from_user(&buf, ubuf, cnt))
    ...

Even though the value of "&buf" equals "buf", but there is no need
to get the address of the "buf" again. Use "buf" instead of "&buf".

Link: http://lkml.kernel.org/r/20160418152329.18b72bea@debian

Signed-off-by: default avatarWang Xiaoqiang <wangxq10@lzu.edu.cn>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 6e4cf657
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment