All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tomoki Sekiyama <tomoki.sekiyama@gmail.com>
To: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org, gregkh@suse.de
Cc: arnd@arndb.de
Subject: [RESEND][BUG][PATCH]-rc: USB: yurex: add .llseek fop to file_operations
Date: Fri, 26 Nov 2010 01:11:05 +0900	[thread overview]
Message-ID: <4CEE8A99.5020906@gmail.com> (raw)

Hi Greg-KH,
Sorry for resending this; To: was not enough.

https://bugzilla.kernel.org/show_bug.cgi?id=23512

Default llseek operation behavior was changed by the patch named
"vfs: make no_llseek the default" after the yurex driver was merged,
so the llseek to yurex is now ignored.

This patch add llseek fop with default_llseek to yurex driver
to catch up to the change.

Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@gmail.com>

 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/misc/yurex.c b/drivers/usb/misc/yurex.c
index 719c618..ac5bfd6 100644
--- a/drivers/usb/misc/yurex.c
+++ b/drivers/usb/misc/yurex.c
@@ -536,6 +536,7 @@ static const struct file_operations yurex_fops = {
 	.open =		yurex_open,
 	.release =	yurex_release,
 	.fasync	=	yurex_fasync,
+	.llseek =	default_llseek,
 };


-- 
1.7.0


             reply	other threads:[~2010-11-25 16:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-25 16:11 Tomoki Sekiyama [this message]
2010-11-25 17:16 ` [RESEND][BUG][PATCH]-rc: USB: yurex: add .llseek fop to file_operations Greg KH
2010-11-26 15:22   ` Arnd Bergmann
2010-11-27  3:46     ` Tomoki Sekiyama
2010-11-29 15:04       ` Arnd Bergmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CEE8A99.5020906@gmail.com \
    --to=tomoki.sekiyama@gmail.com \
    --cc=arnd@arndb.de \
    --cc=gregkh@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.