[Bug 233178] FreeBSD 12.0-BETA - bectl create NEWBE - multiple error messages instead of one
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Wed Nov 14 19:26:18 UTC 2018
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=233178
Rob <rob.fx907 at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rob.fx907 at gmail.com
Attachment #199243| |maintainer-approval?
Flags| |
--- Comment #1 from Rob <rob.fx907 at gmail.com> ---
Created attachment 199243
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=199243&action=edit
only call set_error() when an error is first encountered.
set_error() was previously being called multiple times for the same error.
This patch calls set_error() only when the type of error is known first-hand.
Once the error number is set, the error number is returned up the chain.
While this patch is by no means a robust fix, it does start to address the core
issue this bug originates from - which is inconsistent error handling within
libbe. What I mean by inconsistency is that, some routines within libbe return
an error number (without using set_error()) while other functions use
set_error() and then return an error number.
Hopefully this patch will be considered as a first-step to bringing consistent
error handling within libbe. An error should be set once, as soon as its known,
and the associated error number should be returned up the chain - eventually
making it's way to an application program, presumably.
The diff was taken from r340424 (HEAD), should it be against stable/12 branch?
This is my first patch submission, so bear with me.
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-bugs
mailing list