Skip to content

Commit

Permalink
sys_swapon: simplify error flow in alloc_swap_info()
Browse files Browse the repository at this point in the history
Since there is no cleanup to do, there is no reason to jump to a label.
Return directly instead.

Signed-off-by: Cesar Eduardo Barros <[email protected]>
Tested-by: Eric B Munson <[email protected]>
Acked-by: Eric B Munson <[email protected]>
Reviewed-by: Pekka Enberg <[email protected]>
Reviewed-by: KAMEZAWA Hiroyuki <[email protected]>
Cc: Hugh Dickins <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
cesarb authored and torvalds committed Mar 23, 2011
1 parent 2542e51 commit 730c058
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions mm/swapfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -1848,7 +1848,6 @@ static struct swap_info_struct *alloc_swap_info(void)
{
struct swap_info_struct *p;
unsigned int type;
int error;

p = kzalloc(sizeof(*p), GFP_KERNEL);
if (!p)
Expand All @@ -1859,11 +1858,10 @@ static struct swap_info_struct *alloc_swap_info(void)
if (!(swap_info[type]->flags & SWP_USED))
break;
}
error = -EPERM;
if (type >= MAX_SWAPFILES) {
spin_unlock(&swap_lock);
kfree(p);
goto out;
return ERR_PTR(-EPERM);
}
if (type >= nr_swapfiles) {
p->type = type;
Expand All @@ -1889,9 +1887,6 @@ static struct swap_info_struct *alloc_swap_info(void)
spin_unlock(&swap_lock);

return p;

out:
return ERR_PTR(error);
}

SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
Expand Down

0 comments on commit 730c058

Please sign in to comment.