|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH 2/9] xen/pciback: Return proper error code from s
>>> On 29.09.11 at 21:52, Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> wrote:
> . instead of just hardcoding it to be -EINVAL.
>
> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx>
> ---
> drivers/xen/xen-pciback/pci_stub.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/xen/xen-pciback/pci_stub.c
> b/drivers/xen/xen-pciback/pci_stub.c
> index 32d6891..d985b65 100644
> --- a/drivers/xen/xen-pciback/pci_stub.c
> +++ b/drivers/xen/xen-pciback/pci_stub.c
> @@ -868,7 +868,7 @@ static inline int str_to_slot(const char *buf, int
> *domain, int *bus,
> if (err == 4)
> return 0;
> else if (err < 0)
> - return -EINVAL;
> + return err;
>
> /* try again without domain */
> *domain = 0;
This should then also be done for the final return from the function:
return err < 0 ? err : -EINVAL;
But: Where did you read that {v,}sscanf() would return -E... values in
hypothetical error cases? The C standard says it would return EOF
when reaching the end of the input string before doing the first
conversion; lib/vsprintf.c doesn't do so, and also doesn't say it might
return -E... codes. Bottom line is that I think the code is more correct
the way it is without this change.
Jan
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH] Xen bug-fixes for 3.2 (v1), Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 3/9] xen/pciback: Check if the device is found instead of blindly assuming so., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 1/9] xen/pciback: Do not dereference psdev during printk when it is NULL., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 4/9] xen/events: BUG() when we can't allocate our event->irq array., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 2/9] xen/pciback: Return proper error code from sscanf., Konrad Rzeszutek Wilk
- Re: [Xen-devel] [PATCH 2/9] xen/pciback: Return proper error code from sscanf.,
Jan Beulich <=
- [Xen-devel] [PATCH 9/9] xen/p2m/debugfs: Fix potential pointer exception., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 6/9] xen/irq: If we fail during msi_capability_init return proper error code., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 5/9] xen/events: Don't check the info for NULL as it is already done., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 7/9] xen/xenbus: Check before dereferencing it., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 8/9] xen/enlighten: Fix compile warnings., Konrad Rzeszutek Wilk
|
|
|
|
|