Return early in target_xfer_partial when LEN is zero.
authorYao Qi <yao@codesourcery.com>
Wed, 29 Jan 2014 03:48:40 +0000 (11:48 +0800)
committerYao Qi <yao@codesourcery.com>
Fri, 7 Feb 2014 03:19:58 +0000 (11:19 +0800)
Nowadays, argument LEN of to_xfer_partial can be zero in some cases,
and each implementation may do nothing and return zero, indicating
transfer is done.  That is fine.  However, when we change
to_xfer_partial to return target_xfer_status, we have to check every
return value of most of to_xfer_partial implementations, return
TARGET_XFER_DONE if return value is zero.

This patch simplifies this by checking LEN in target_xfer_partial, and
return 0 if LEN is zero.  Regression tested on x86_84-linux.  Is it
OK?

gdb:

2014-02-07  Yao Qi  <yao@codesourcery.com>

* target.c (target_xfer_partial): Return zero if LEN is zero.

gdb/ChangeLog
gdb/target.c

index 6601b480acef738346ae0b3fe9df4234b85e5219..6bcc20568b5793cc625d0303ca26fc08cbd43e92 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-07  Yao Qi  <yao@codesourcery.com>
+
+       * target.c (target_xfer_partial): Return zero if LEN is zero.
+
 2014-02-07  Yao Qi  <yao@codesourcery.com>
 
        * auxv.c (procfs_xfer_auxv): Replace -1 with TARGET_XFER_E_IO.
index 3ca3e71fb63a719ae28e69bf0d863510c314b00a..65a226ee653a54a1e0bb6203ff3b652371865915 100644 (file)
@@ -1697,6 +1697,10 @@ target_xfer_partial (struct target_ops *ops,
 
   gdb_assert (ops->to_xfer_partial != NULL);
 
+  /* Transfer is done when LEN is zero.  */
+  if (len == 0)
+    return 0;
+
   if (writebuf && !may_write_memory)
     error (_("Writing to memory is not allowed (addr %s, len %s)"),
           core_addr_to_string_nz (offset), plongest (len));