On Tue, Sep 23, 2008 at 04:30:05AM -0700, Andrew Morton wrote:
On Tue, 23 Sep 2008 06:40:26 -0400 Christoph Hellwig [off-list ref] wrote:
quoted
On Mon, Sep 22, 2008 at 02:51:03PM -0700, akpm@linux-foundation.org wrote:
quoted
From: Andi Kleen <redacted>
- Remove noop VFS stubs. The VFS does that on a NULL pointer anyways.
quoted
-static loff_t
-mISDN_llseek(struct file *filep, loff_t offset, int orig)
-{
- return -ESPIPE;
-}
quoted
static struct file_operations mISDN_fops = {
- .llseek = mISDN_llseek,
This is wrong. no llseek means we use default_llseek, which is
different from returning -ESPIPE.
so.. this?
Hmm actually on double checking it's really needed, sorry.
-Andi