From: Markus Elfring <[email protected]>
Date: Mon, 24 Nov 2014 15:52:00 +0100

Two jump labels were adjusted in the implementation of the
create_node_manager_caches() function because these identifiers
contained typos.

Signed-off-by: Markus Elfring <[email protected]>
---
 fs/f2fs/node.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
index 4537819..74f44fe 100644
--- a/fs/f2fs/node.c
+++ b/fs/f2fs/node.c
@@ -2057,17 +2057,17 @@ int __init create_node_manager_caches(void)
        free_nid_slab = f2fs_kmem_cache_create("free_nid",
                        sizeof(struct free_nid));
        if (!free_nid_slab)
-               goto destory_nat_entry;
+               goto destroy_nat_entry;
 
        nat_entry_set_slab = f2fs_kmem_cache_create("nat_entry_set",
                        sizeof(struct nat_entry_set));
        if (!nat_entry_set_slab)
-               goto destory_free_nid;
+               goto destroy_free_nid;
        return 0;
 
-destory_free_nid:
+destroy_free_nid:
        kmem_cache_destroy(free_nid_slab);
-destory_nat_entry:
+destroy_nat_entry:
        kmem_cache_destroy(nat_entry_slab);
 fail:
        return -ENOMEM;
-- 
2.1.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to