public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] firewire: nosy: char device is not seekable
@ 2010-10-13 12:25 Stefan Richter
  2010-10-13 12:31 ` Stefan Richter
  2010-10-13 13:54 ` Arnd Bergmann
  0 siblings, 2 replies; 6+ messages in thread
From: Stefan Richter @ 2010-10-13 12:25 UTC (permalink / raw)
  To: linux1394-devel; +Cc: linux-kernel, Arnd Bergmann

Amend .open handler accordingly and add .llseek = no_llseek handler.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
---
Arnd, is your mega-patch which adds legions of .llseek handlers done and
to be merged soon as-is, or do you regenerate it regularly?  (linux-next
commit 9711569d "llseek: automatically add .llseek fop")

 drivers/firewire/nosy.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: b/drivers/firewire/nosy.c
===================================================================
--- a/drivers/firewire/nosy.c
+++ b/drivers/firewire/nosy.c
@@ -302,7 +302,7 @@ nosy_open(struct inode *inode, struct fi
 
 	file->private_data = client;
 
-	return 0;
+	return nonseekable_open(inode, file);
 fail:
 	kfree(client);
 	lynx_put(lynx);
@@ -400,6 +400,7 @@ nosy_ioctl(struct file *file, unsigned i
 
 static const struct file_operations nosy_ops = {
 	.owner =		THIS_MODULE,
+	.llseek =		no_llseek,
 	.read =			nosy_read,
 	.unlocked_ioctl =	nosy_ioctl,
 	.poll =			nosy_poll,

-- 
Stefan Richter
-=====-==-=- =-=- -==-=
http://arcgraph.de/sr/


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-10-23 11:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-13 12:25 [PATCH] firewire: nosy: char device is not seekable Stefan Richter
2010-10-13 12:31 ` Stefan Richter
2010-10-13 13:54 ` Arnd Bergmann
2010-10-22 23:08   ` [PATCH update] " Stefan Richter
2010-10-23  8:57     ` Arnd Bergmann
2010-10-23 11:47       ` Stefan Richter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox