|
@@ -1253,7 +1253,6 @@ static int __init mf_proc_init(void)
|
|
|
ent = create_proc_entry("cmdline", S_IFREG|S_IRUSR|S_IWUSR, mf);
|
|
|
if (!ent)
|
|
|
return 1;
|
|
|
- ent->nlink = 1;
|
|
|
ent->data = (void *)(long)i;
|
|
|
ent->read_proc = proc_mf_dump_cmdline;
|
|
|
ent->write_proc = proc_mf_change_cmdline;
|
|
@@ -1264,7 +1263,6 @@ static int __init mf_proc_init(void)
|
|
|
ent = create_proc_entry("vmlinux", S_IFREG|S_IWUSR, mf);
|
|
|
if (!ent)
|
|
|
return 1;
|
|
|
- ent->nlink = 1;
|
|
|
ent->data = (void *)(long)i;
|
|
|
ent->proc_fops = &proc_vmlinux_operations;
|
|
|
}
|
|
@@ -1272,7 +1270,6 @@ static int __init mf_proc_init(void)
|
|
|
ent = create_proc_entry("side", S_IFREG|S_IRUSR|S_IWUSR, mf_proc_root);
|
|
|
if (!ent)
|
|
|
return 1;
|
|
|
- ent->nlink = 1;
|
|
|
ent->data = (void *)0;
|
|
|
ent->read_proc = proc_mf_dump_side;
|
|
|
ent->write_proc = proc_mf_change_side;
|
|
@@ -1280,7 +1277,6 @@ static int __init mf_proc_init(void)
|
|
|
ent = create_proc_entry("src", S_IFREG|S_IRUSR|S_IWUSR, mf_proc_root);
|
|
|
if (!ent)
|
|
|
return 1;
|
|
|
- ent->nlink = 1;
|
|
|
ent->data = (void *)0;
|
|
|
ent->read_proc = proc_mf_dump_src;
|
|
|
ent->write_proc = proc_mf_change_src;
|