]> git.karo-electronics.de Git - linux-beck.git/commitdiff
Staging: lustre: tracefile: Remove wrapper function
authorShivani Bhardwaj <shivanib134@gmail.com>
Fri, 6 Nov 2015 17:19:07 +0000 (22:49 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
Remove the function cfs_trace_free_string_buffer() as it can be replaced
with the standard function kfree().

Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>
Acked-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/libcfs/tracefile.c

index c27e3207e9325c93555441fdfc73b9e5fff539ee..65c4f1ab0de8a90e16c3a84929e1701ef21b7cff 100644 (file)
@@ -805,11 +805,6 @@ int cfs_trace_allocate_string_buffer(char **str, int nob)
        return 0;
 }
 
-void cfs_trace_free_string_buffer(char *str, int nob)
-{
-       kfree(str);
-}
-
 int cfs_trace_dump_debug_buffer_usrstr(void __user *usr_str, int usr_str_nob)
 {
        char     *str;
@@ -830,7 +825,7 @@ int cfs_trace_dump_debug_buffer_usrstr(void __user *usr_str, int usr_str_nob)
        }
        rc = cfs_tracefile_dump_all_pages(str);
 out:
-       cfs_trace_free_string_buffer(str, usr_str_nob + 1);
+       kfree(str);
        return rc;
 }
 
@@ -886,7 +881,7 @@ int cfs_trace_daemon_command_usrstr(void __user *usr_str, int usr_str_nob)
        if (rc == 0)
                rc = cfs_trace_daemon_command(str);
 
-       cfs_trace_free_string_buffer(str, usr_str_nob + 1);
+       kfree(str);
        return rc;
 }