mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
[tree-wide] finally take no_llseek out
no_llseek had been defined to NULL two years ago, in commit 868941b144
("fs: remove no_llseek")
To quote that commit,
At -rc1 we'll need do a mechanical removal of no_llseek -
git grep -l -w no_llseek | grep -v porting.rst | while read i; do
sed -i '/\<no_llseek\>/d' $i
done
would do it.
Unfortunately, that hadn't been done. Linus, could you do that now, so
that we could finally put that thing to rest? All instances are of the
form
.llseek = no_llseek,
so it's obviously safe.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@@ -1079,7 +1079,6 @@ const struct file_operations relay_file_operations = {
|
||||
.poll = relay_file_poll,
|
||||
.mmap = relay_file_mmap,
|
||||
.read = relay_file_read,
|
||||
.llseek = no_llseek,
|
||||
.release = relay_file_release,
|
||||
};
|
||||
EXPORT_SYMBOL_GPL(relay_file_operations);
|
||||
|
||||
Reference in New Issue
Block a user