diff options
author | Xue jiufei <xuejiufei@huawei.com> | 2014-10-09 15:25:03 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-09 22:25:47 -0400 |
commit | 6ae075485e2d91921bdd64e49896b1bae87d1ba2 (patch) | |
tree | 10013216bcd1d6918d0f07a96c13bcbec43cc801 /fs | |
parent | 9a7e6b5a0ad1a554ca982c555a34ce8086d5b994 (diff) | |
download | linux-exynos-6ae075485e2d91921bdd64e49896b1bae87d1ba2.tar.gz linux-exynos-6ae075485e2d91921bdd64e49896b1bae87d1ba2.tar.bz2 linux-exynos-6ae075485e2d91921bdd64e49896b1bae87d1ba2.zip |
ocfs2: remove unused code in dlm_new_lockres()
Remove the branch that free res->lockname.name because the condition
is never satisfied when jump to label error.
Signed-off-by: joyce.xue <xuejiufei@huawei.com>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/dlm/dlmmaster.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/ocfs2/dlm/dlmmaster.c b/fs/ocfs2/dlm/dlmmaster.c index 12ba682fc53c..215e41abf101 100644 --- a/fs/ocfs2/dlm/dlmmaster.c +++ b/fs/ocfs2/dlm/dlmmaster.c @@ -625,9 +625,6 @@ struct dlm_lock_resource *dlm_new_lockres(struct dlm_ctxt *dlm, return res; error: - if (res && res->lockname.name) - kmem_cache_free(dlm_lockname_cache, (void *)res->lockname.name); - if (res) kmem_cache_free(dlm_lockres_cache, res); return NULL; |