On Tue, 3 Apr 2001, Srinivas Surabhi wrote:

>    So kindly help me, what are the system calls/fuction calls to be
> used for the creation of sub-directory in /proc directory.

eg. to create a new "foo" directory in /proc/net:

        new_dir = proc_mkdir("foo", proc_net);

then use the resulting dir entry to create files in this new directory:

        entry = create_proc_entry("bar", 0700, new_dir);

and use remove_proc_entry() on the file entry and on the directory entry
to clean things up.

        Ingo

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to