diff options
author | Arnd Bergmann <arnd@arndb.de> | 2010-09-14 10:22:36 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-15 19:29:55 -0700 |
commit | 0a5f1d476aef43916abb2b8634ebff23ef2c05f6 (patch) | |
tree | 341d38761934118a9b212efa5fa4499010d6fef8 /net/irda | |
parent | 3a43be3c328ff42327da0b141de360dc4587aab7 (diff) | |
download | linux-3.10-0a5f1d476aef43916abb2b8634ebff23ef2c05f6.tar.gz linux-3.10-0a5f1d476aef43916abb2b8634ebff23ef2c05f6.tar.bz2 linux-3.10-0a5f1d476aef43916abb2b8634ebff23ef2c05f6.zip |
irda/irnet: use noop_llseek
There may be applications trying to seek
on the irnet character device, so we should
use noop_llseek to avoid returning an error
when the default llseek changes to no_llseek.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Samuel Ortiz <samuel@sortiz.org>
Cc: netdev@vger.kernel.org
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/irda')
-rw-r--r-- | net/irda/irnet/irnet_ppp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/irda/irnet/irnet_ppp.h b/net/irda/irnet/irnet_ppp.h index b5df2418f90..940225866da 100644 --- a/net/irda/irnet/irnet_ppp.h +++ b/net/irda/irnet/irnet_ppp.h @@ -103,7 +103,8 @@ static const struct file_operations irnet_device_fops = .poll = dev_irnet_poll, .unlocked_ioctl = dev_irnet_ioctl, .open = dev_irnet_open, - .release = dev_irnet_close + .release = dev_irnet_close, + .llseek = noop_llseek, /* Also : llseek, readdir, mmap, flush, fsync, fasync, lock, readv, writev */ }; |