ocfs2: use simple_read_from_buffer()
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Acked-by: Joel Becker <joel.becker@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
This commit is contained in:
Родитель
dd25e55ea1
Коммит
7600c72b75
|
@ -549,26 +549,17 @@ static ssize_t ocfs2_control_read(struct file *file,
|
||||||
size_t count,
|
size_t count,
|
||||||
loff_t *ppos)
|
loff_t *ppos)
|
||||||
{
|
{
|
||||||
char *proto_string = OCFS2_CONTROL_PROTO;
|
ssize_t ret;
|
||||||
size_t to_write = 0;
|
|
||||||
|
|
||||||
if (*ppos >= OCFS2_CONTROL_PROTO_LEN)
|
ret = simple_read_from_buffer(buf, count, ppos,
|
||||||
return 0;
|
OCFS2_CONTROL_PROTO, OCFS2_CONTROL_PROTO_LEN);
|
||||||
|
|
||||||
to_write = OCFS2_CONTROL_PROTO_LEN - *ppos;
|
|
||||||
if (to_write > count)
|
|
||||||
to_write = count;
|
|
||||||
if (copy_to_user(buf, proto_string + *ppos, to_write))
|
|
||||||
return -EFAULT;
|
|
||||||
|
|
||||||
*ppos += to_write;
|
|
||||||
|
|
||||||
/* Have we read the whole protocol list? */
|
/* Have we read the whole protocol list? */
|
||||||
if (*ppos >= OCFS2_CONTROL_PROTO_LEN)
|
if (ret > 0 && *ppos >= OCFS2_CONTROL_PROTO_LEN)
|
||||||
ocfs2_control_set_handshake_state(file,
|
ocfs2_control_set_handshake_state(file,
|
||||||
OCFS2_CONTROL_HANDSHAKE_READ);
|
OCFS2_CONTROL_HANDSHAKE_READ);
|
||||||
|
|
||||||
return to_write;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ocfs2_control_release(struct inode *inode, struct file *file)
|
static int ocfs2_control_release(struct inode *inode, struct file *file)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче