mirror of https://gitee.com/openkylin/linux.git
dgrp procfs fixes, part 1
proc_create() has shat upon fops argument when mode is S_IFDIR. Good thing, too, since fops passed to it is completely useless for any directory. Just use proc_mkdir(), damnit. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
f56e2947be
commit
aa66d7bba7
|
@ -201,8 +201,7 @@ void dgrp_register_proc(void)
|
|||
/*
|
||||
* Register /proc/dgrp
|
||||
*/
|
||||
dgrp_proc_dir_entry = proc_create("dgrp", S_IFDIR, NULL,
|
||||
&dgrp_proc_file_ops);
|
||||
dgrp_proc_dir_entry = proc_mkdir("dgrp", NULL);
|
||||
register_proc_table(dgrp_table, dgrp_proc_dir_entry);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue