mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 00:51:35 +00:00
orangefs: clean up debugfs
We recently refactored the Orangefs debugfs code. The refactor seemed to trigger dan.carpenter@oracle.com's static tester to find a possible double-free in the code. While designing the fix we saw a condition under which the buffer being freed could also be overflowed. We also realized how to rebuild the related debugfs file's "contents" (a string) without deleting and re-creating the file. This fix should eliminate the possible double-free, the potential overflow and improve code readability. Signed-off-by: Mike Marshall <hubcap@omnibond.com> Signed-off-by: Martin Brandenburg <martin@omnibond.com>
This commit is contained in:
parent
804b1737d7
commit
dc0336214e
2 changed files with 68 additions and 85 deletions
|
@ -124,7 +124,7 @@ static int __init orangefs_init(void)
|
|||
* unknown at boot time.
|
||||
*
|
||||
* orangefs_prepare_debugfs_help_string will be used again
|
||||
* later to rebuild the debug-help file after the client starts
|
||||
* later to rebuild the debug-help-string after the client starts
|
||||
* and passes along the needed info. The argument signifies
|
||||
* which time orangefs_prepare_debugfs_help_string is being
|
||||
* called.
|
||||
|
@ -152,7 +152,9 @@ static int __init orangefs_init(void)
|
|||
|
||||
ret = register_filesystem(&orangefs_fs_type);
|
||||
if (ret == 0) {
|
||||
pr_info("orangefs: module version %s loaded\n", ORANGEFS_VERSION);
|
||||
pr_info("%s: module version %s loaded\n",
|
||||
__func__,
|
||||
ORANGEFS_VERSION);
|
||||
ret = 0;
|
||||
goto out;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue