git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72c3537
)
svcrpc: clean up control flow
author
J. Bruce Fields
<bfields@redhat.com>
Mon, 13 Aug 2012 22:01:03 +0000
(18:01 -0400)
committer
J. Bruce Fields
<bfields@redhat.com>
Tue, 21 Aug 2012 18:08:41 +0000
(14:08 -0400)
Mainly, use the kernel standard
err = -ERROR;
if (something_bad)
goto out;
normal case;
rather than
if (something_bad)
err = -ERROR
else {
normal case;
}
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
No differences found