[um] mconsole: don't open-code memdup_user_nul()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2016-01-02 14:53:28 -05:00
Родитель 1ceb36285c
Коммит 793b796ebf
1 изменённых файлов: 3 добавлений и 11 удалений

Просмотреть файл

@ -748,19 +748,11 @@ static ssize_t mconsole_proc_write(struct file *file,
{ {
char *buf; char *buf;
buf = kmalloc(count + 1, GFP_KERNEL); buf = memdup_user_nul(buffer, count);
if (buf == NULL) if (IS_ERR(buf))
return -ENOMEM; return PTR_ERR(buf);
if (copy_from_user(buf, buffer, count)) {
count = -EFAULT;
goto out;
}
buf[count] = '\0';
mconsole_notify(notify_socket, MCONSOLE_USER_NOTIFY, buf, count); mconsole_notify(notify_socket, MCONSOLE_USER_NOTIFY, buf, count);
out:
kfree(buf); kfree(buf);
return count; return count;
} }