|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.2] tools/libxc: Correct read_exact() error messages
commit 50d989262d136b7a5a602c80681705ac6cfe95a8
Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
AuthorDate: Tue Jan 7 10:04:23 2014 +0000
Commit: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx>
CommitDate: Fri Mar 14 14:24:31 2014 +0000
tools/libxc: Correct read_exact() error messages
The errors have been incorrectly identifying their function since c/s
861aef6e1558bebad8fc60c1c723f0706fd3ed87 which did a lot of error handling
cleanup.
Use __func__ to ensure the name remains correct in the future.
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Acked-by: Ian Campbell <Ian.Campbell@xxxxxxxxxx>
CC: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx>
(cherry picked from commit 1671cdeac7da663fb2963f3e587fa279dcd0238b)
---
tools/libxc/xc_domain_restore.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/libxc/xc_domain_restore.c b/tools/libxc/xc_domain_restore.c
index f9ed6b2..e72caf8 100644
--- a/tools/libxc/xc_domain_restore.c
+++ b/tools/libxc/xc_domain_restore.c
@@ -76,7 +76,7 @@ static ssize_t rdexact(xc_interface *xch, struct restore_ctx
*ctx,
if ( len == -1 && errno == EINTR )
continue;
if ( !FD_ISSET(fd, &rfds) ) {
- ERROR("read_exact_timed failed (select returned %zd)", len);
+ ERROR("%s failed (select returned %zd)", __func__, len);
errno = ETIMEDOUT;
return -1;
}
@@ -90,7 +90,7 @@ static ssize_t rdexact(xc_interface *xch, struct restore_ctx
*ctx,
errno = 0;
}
if ( len <= 0 ) {
- ERROR("read_exact_timed failed (read rc: %d, errno: %d)", len,
errno);
+ ERROR("%s failed (read rc: %d, errno: %d)", __func__, len, errno);
return -1;
}
offset += len;
--
generated by git-patchbot for /home/xen/git/xen.git#stable-4.2
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |