procfs: only initialize the first time procfs is mounte

This commit is contained in:
Dirk Vogt 2011-02-22 18:03:33 +00:00
parent 0908191386
commit 344c18cf73

View file

@ -54,11 +54,16 @@ PRIVATE void init_hook(void)
{
/* Initialization hook. Generate the static part of the tree.
*/
static int first_time = 1;
struct inode *root;
root = get_root_inode();
if (first_time) {
root = get_root_inode();
construct_tree(root, root_files);
construct_tree(root, root_files);
first_time = 0;
}
}
/*===========================================================================*