]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit - mm/mlock.c
mm/mlock.c: reorganize mlockall() return values and remove goto-out label
authorAlexey Klimov <klimov.linux@gmail.com>
Fri, 6 Nov 2015 02:46:00 +0000 (18:46 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 6 Nov 2015 03:34:48 +0000 (19:34 -0800)
commit86d2adccfbe7d5a1f050fa08db9638c9168736d9
tree96dcb3362de8603a9e8be77498eb3edc57d46d1d
parent9fbed25407ccc87a7bb47ea3f411e1ca34a95f8b
mm/mlock.c: reorganize mlockall() return values and remove goto-out label

In mlockall syscall wrapper after out-label for goto code just doing
return.  Remove goto out statements and return error values directly.

Also instead of rewriting ret variable before every if-check move returns
to 'error'-like path under if-check.

Objdump asm listing showed me reducing by few asm lines.  Object file size
descreased from 220592 bytes to 220528 bytes for me (for aarch64).

Signed-off-by: Alexey Klimov <klimov.linux@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/mlock.c