[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4CEE8A99.5020906@gmail.com>
Date: Fri, 26 Nov 2010 01:11:05 +0900
From: Tomoki Sekiyama <tomoki.sekiyama@...il.com>
To: linux-kernel@...r.kernel.org, linux-usb@...r.kernel.org,
gregkh@...e.de
CC: arnd@...db.de
Subject: [RESEND][BUG][PATCH]-rc: USB: yurex: add .llseek fop to file_operations
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@...il.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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists