Commit f6df18f2 authored by Denis Efremov's avatar Denis Efremov Committed by Jens Axboe

floppy: cleanups: use memset() to zero reply_buffer

Use memset() to zero reply buffer in raw_cmd_copyin() instead
of a for loop.
Signed-off-by: default avatarDenis Efremov <efremov@linux.com>
Link: https://lore.kernel.org/r/20210416083449.72700-4-efremov@linux.comSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 67c07161
...@@ -3090,7 +3090,6 @@ static int raw_cmd_copyin(int cmd, void __user *param, ...@@ -3090,7 +3090,6 @@ static int raw_cmd_copyin(int cmd, void __user *param,
{ {
struct floppy_raw_cmd *ptr; struct floppy_raw_cmd *ptr;
int ret; int ret;
int i;
*rcmd = NULL; *rcmd = NULL;
...@@ -3109,8 +3108,7 @@ static int raw_cmd_copyin(int cmd, void __user *param, ...@@ -3109,8 +3108,7 @@ static int raw_cmd_copyin(int cmd, void __user *param,
if (ptr->cmd_count > FD_RAW_CMD_FULLSIZE) if (ptr->cmd_count > FD_RAW_CMD_FULLSIZE)
return -EINVAL; return -EINVAL;
for (i = 0; i < FD_RAW_REPLY_SIZE; i++) memset(ptr->reply, 0, FD_RAW_REPLY_SIZE);
ptr->reply[i] = 0;
ptr->resultcode = 0; ptr->resultcode = 0;
if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) { if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
......
Markdown is supported
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