forked from pool/ocfs2-tools
c8700c5230
OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/ocfs2-tools?expand=0&rev=8
46 lines
1.2 KiB
Diff
46 lines
1.2 KiB
Diff
From c74da336c1e4eb2fac311c9e6ea8ef8fe9b0a6c1 Mon Sep 17 00:00:00 2001
|
|
From: Coly Li <coly.li@suse.de>
|
|
Date: Mon, 26 Apr 2010 22:35:27 +0800
|
|
Subject: [PATCH 24/30] dx_dirs: remove unncessary return value assignment
|
|
|
|
This patch removes unnecessary return value assigned in
|
|
ocfs2_dx_entries_iterate() and ocfs2_dx_frees_iterate().
|
|
|
|
Thanks for Tao Ma for catching this.
|
|
|
|
Signed-off-by: Coly Li <coly.li@suse.de>
|
|
Cc: Mark Fasheh <mfasheh@suse.com>
|
|
Cc: Tao Ma <tao.ma@oracle.com>
|
|
---
|
|
libocfs2/dir_iterate.c | 3 ---
|
|
1 files changed, 0 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/libocfs2/dir_iterate.c b/libocfs2/dir_iterate.c
|
|
index 9f2ff7e..835305a 100644
|
|
--- a/libocfs2/dir_iterate.c
|
|
+++ b/libocfs2/dir_iterate.c
|
|
@@ -378,7 +378,6 @@ extern errcode_t ocfs2_dx_entries_iterate(ocfs2_filesys *fs,
|
|
struct dx_iterator_data data;
|
|
|
|
if (!S_ISDIR(dir->i_mode) && !ocfs2_dir_indexed(dir)) {
|
|
- ret = 0;
|
|
goto out;
|
|
}
|
|
|
|
@@ -448,12 +447,10 @@ extern errcode_t ocfs2_dx_frees_iterate(ocfs2_filesys *fs,
|
|
struct ocfs2_dir_block_trailer *trailer;
|
|
|
|
if (!S_ISDIR(dir->i_mode) || !(ocfs2_dir_indexed(dir))) {
|
|
- ret = 0;
|
|
goto out;
|
|
}
|
|
|
|
if (dx_root->dr_flags & OCFS2_DX_FLAG_INLINE) {
|
|
- ret = 0;
|
|
goto out;
|
|
}
|
|
|
|
--
|
|
1.7.0.2
|
|
|