Commit 91360b02 authored by Al Viro's avatar Al Viro

ashmem: use vfs_llseek()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 4b8e9923
......@@ -339,7 +339,7 @@ static loff_t ashmem_llseek(struct file *file, loff_t offset, int origin)
goto out;
}
ret = asma->file->f_op->llseek(asma->file, offset, origin);
ret = vfs_llseek(asma->file, offset, origin);
if (ret < 0)
goto out;
......
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