On Mon, Sep 22, 2008 at 02:51:03PM -0700, akpm@linux-foundation.org wrote:
From: Andi Kleen <redacted>
- Remove noop VFS stubs. The VFS does that on a NULL pointer anyways.
-static loff_t
-mISDN_llseek(struct file *filep, loff_t offset, int orig)
-{
- return -ESPIPE;
-}
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.