Skip to content

Commit

Permalink
cifs: remove generic_file_llseek_unlocked
Browse files Browse the repository at this point in the history
  • Loading branch information
clamor-s committed Aug 6, 2017
1 parent c9f617e commit 26d6f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/cifs/cifsfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ static loff_t cifs_llseek(struct file *file, loff_t offset, int origin)
if (rc < 0)
return (loff_t)rc;
}
return generic_file_llseek_unlocked(file, offset, origin);
return generic_file_llseek(file, offset, origin);
}

static int cifs_setlease(struct file *file, long arg, struct file_lock **lease)
Expand Down

0 comments on commit 26d6f48

Please sign in to comment.