diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2010-11-01 12:46:10 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2010-11-01 15:31:42 -0400 |
commit | d02db4f8d79c5841ba32b326edb75ea6acd081ca (patch) | |
tree | ee753e0f72929c143b16ba4723ff2c1b4eaefade | |
parent | 2c7387ef9969bb073c25ecbdcc5be30770267b16 (diff) | |
download | linux-stable-d02db4f8d79c5841ba32b326edb75ea6acd081ca.tar.gz linux-stable-d02db4f8d79c5841ba32b326edb75ea6acd081ca.tar.bz2 linux-stable-d02db4f8d79c5841ba32b326edb75ea6acd081ca.zip |
arch/tile: mark "hardwall" device as non-seekable
Arnd's recent patch series tagged this device with noop_llseek,
conservatively. In fact, it should be no_llseek, which we arrange
for by opening the device with nonseekable_open().
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
-rw-r--r-- | arch/tile/kernel/hardwall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/kernel/hardwall.c b/arch/tile/kernel/hardwall.c index 70b829a15ae5..e910530436e6 100644 --- a/arch/tile/kernel/hardwall.c +++ b/arch/tile/kernel/hardwall.c @@ -768,13 +768,13 @@ static int hardwall_release(struct inode *inode, struct file *file) } static const struct file_operations dev_hardwall_fops = { + .open = nonseekable_open, .unlocked_ioctl = hardwall_ioctl, #ifdef CONFIG_COMPAT .compat_ioctl = hardwall_compat_ioctl, #endif .flush = hardwall_flush, .release = hardwall_release, - .llseek = noop_llseek, }; static struct cdev hardwall_dev; |