return n_ret;
 }
 
-static struct swap_info_struct *__swap_info_get(swp_entry_t entry)
+static struct swap_info_struct *_swap_info_get(swp_entry_t entry)
 {
        struct swap_info_struct *p;
        unsigned long offset;
        offset = swp_offset(entry);
        if (offset >= p->max)
                goto bad_offset;
+       if (data_race(!p->swap_map[swp_offset(entry)]))
+               goto bad_free;
        return p;
 
+bad_free:
+       pr_err("%s: %s%08lx\n", __func__, Unused_offset, entry.val);
+       goto out;
 bad_offset:
        pr_err("%s: %s%08lx\n", __func__, Bad_offset, entry.val);
        goto out;
        return NULL;
 }
 
-static struct swap_info_struct *_swap_info_get(swp_entry_t entry)
-{
-       struct swap_info_struct *p;
-
-       p = __swap_info_get(entry);
-       if (!p)
-               goto out;
-       if (data_race(!p->swap_map[swp_offset(entry)]))
-               goto bad_free;
-       return p;
-
-bad_free:
-       pr_err("%s: %s%08lx\n", __func__, Unused_offset, entry.val);
-out:
-       return NULL;
-}
-
 static struct swap_info_struct *swap_info_get_cont(swp_entry_t entry,
                                        struct swap_info_struct *q)
 {