lseek() on debugfs entries in 2.6.37
From: Alexey Mikhailov
Date: Tue Mar 15 2011 - 09:16:19 EST
Hello!
I use simple debugfs entries for user-space <-> kernel-space
interaction. Basically I read unsigned integers from debugfs
files like this:
...
char buf[64];
lseek(timesync_fd, 0, SEEK_SET);
read(timesync_fd, buf, sizeof(buf));
...
It works perfectly with 2.6.32 kernel. But with 2.6.37 kernel,
lseek() fails with errno=29(Illegal seek). So second read()
call just fails or returns garbage. Can someone please shed
some light on it?
Thank you,
-- Alexey.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/