]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ocfs2: there is no need to log twice in several functions
authorwangyan <wangyan122@huawei.com>
Thu, 2 Apr 2020 04:03:35 +0000 (21:03 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 2 Apr 2020 16:35:25 +0000 (09:35 -0700)
There is no need to log twice in several functions.

Signed-off-by: Yan Wang <wangyan122@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Jun Piao <piaojun@huawei.com>
Acked-by: Joseph Qi <joseph.qi@linux.alibaba.com>
Cc: Mark Fasheh <mark@fasheh.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Junxiao Bi <junxiao.bi@oracle.com>
Cc: Changwei Ge <gechangwei@live.cn>
Cc: Gang He <ghe@suse.com>
Link: http://lkml.kernel.org/r/77eec86a-f634-5b98-4f7d-0cd15185a37b@huawei.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/ocfs2/alloc.c
fs/ocfs2/suballoc.c

index 88534eb0e7c2a4e90bba2b6bc75ec5ebc135cc6d..1e3b06fa4785a422ea7c0a31eebe198c7399dbdb 100644 (file)
@@ -1060,7 +1060,6 @@ bail:
                        brelse(bhs[i]);
                        bhs[i] = NULL;
                }
-               mlog_errno(status);
        }
        return status;
 }
index 939df99d2dece2902ffbd2212ee1bb029a66db67..4836becb7578aff5f8207e1c4b8cdb8d28d23469 100644 (file)
@@ -2509,9 +2509,6 @@ static int _ocfs2_free_suballoc_bits(handle_t *handle,
 
 bail:
        brelse(group_bh);
-
-       if (status)
-               mlog_errno(status);
        return status;
 }
 
@@ -2582,8 +2579,6 @@ static int _ocfs2_free_clusters(handle_t *handle,
                                         num_clusters);
 
 out:
-       if (status)
-               mlog_errno(status);
        return status;
 }