| commit | a8e10078a87c8a2c3c8d0f9856c0f74272fc0f74 | [log] [tgz] |
|---|---|---|
| author | J. Bruce Fields <bfields@redhat.com> | Mon Aug 13 18:01:03 2012 -0400 |
| committer | J. Bruce Fields <bfields@redhat.com> | Tue Aug 21 14:08:41 2012 -0400 |
| tree | 0201d0d2014e93d7529148aaa64393d6a02cc7d9 | |
| parent | 72c3537607e42928f13691d59579ec840014b19e [diff] |
svcrpc: clean up control flow
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>