On Wed, Mar 24, 2010 at 10:40:54PM +0100, Arnd Bergmann wrote:
About this one, there is a "sensible" part:
@@ -1943,7 +1949,7 @@ static ssize_t proc_fdinfo_read(struct file *file, char __user *buf,
}
static const struct file_operations proc_fdinfo_file_operations = {
- .open = nonseekable_open,
+ .llseek = generic_file_llseek,
.read = proc_fdinfo_read,
};
Replacing default_llseek() by generic_file_llseek() as you
did for most of the other parts is fine.
But the above changes the semantics as it makes it seekable.
Why not just keeping it as is? It just ends up in no_llseek().
--