mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
ashmem: use vfs_llseek()
Change-Id: I6747ced59472320c537e35a8fa791e9f8990915e Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
89bdbdbc7e
commit
4e29842b2e
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ static loff_t ashmem_llseek(struct file *file, loff_t offset, int origin)
|
|||
|
||||
mutex_unlock(&ashmem_mutex);
|
||||
|
||||
ret = asma->file->f_op->llseek(asma->file, offset, origin);
|
||||
ret = vfs_llseek(asma->file, offset, origin);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
|
|
Loading…
Reference in a new issue