Re: read proc entry

From: Peter Wächtler (pwaechtler@loewe-komp.de)
Date: Sat Apr 13 2002 - 08:58:05 EST


Anthony Chee wrote:
>
> I written the following code in a module
>
> static struct proc_dir_entry *test_proc;
> test_proc = create_proc_read_entry(test_proc, 0444, NULL, read_test_proc,
> NULL);
>
> void show_kernel_message() {
> printk("\nkernel test\n");
> }
>
> int read_test_info(char* page, char** start, off_t off, int count, int* eof,
> void* data) {
> show_kernel_message();

I think you have to signal EOF

        *eof=1;

> }
>
> After I use "cat /proc/test_proc", it is found that there are three "kernel
> test" messages
> appear. Why it happened like this? I expected the message should be shown
> once.
>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Apr 15 2002 - 22:00:21 EST