qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/4] savevm: some coding style cleanups


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH 2/4] savevm: some coding style cleanups
Date: Wed, 05 Oct 2011 14:41:49 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.21) Gecko/20110831 Lightning/1.0b2 Thunderbird/3.1.13

On 10/04/2011 09:38 AM, Juan Quintela wrote:
This patch will make moving code on next patches and having checkpatch
happy easier.

Signed-off-by: Juan Quintela<address@hidden>

Reviewed-by: Anthony Liguori <address@hidden>

Regards,

Anthony Liguori

---
  savevm.c |   21 ++++++++++++++-------
  1 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/savevm.c b/savevm.c
index 31131df..5fee4e2 100644
--- a/savevm.c
+++ b/savevm.c
@@ -536,8 +536,9 @@ int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
  {
      int size, l;

-    if (f->is_write)
+    if (f->is_write) {
          abort();
+    }

      size = size1;
      while (size>  0) {
@@ -545,11 +546,13 @@ int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
          if (l == 0) {
              qemu_fill_buffer(f);
              l = f->buf_size - f->buf_index;
-            if (l == 0)
+            if (l == 0) {
                  break;
+            }
          }
-        if (l>  size)
+        if (l>  size) {
              l = size;
+        }
          memcpy(buf, f->buf + f->buf_index, l);
          f->buf_index += l;
          buf += l;
@@ -560,26 +563,30 @@ int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)

  static int qemu_peek_byte(QEMUFile *f)
  {
-    if (f->is_write)
+    if (f->is_write) {
          abort();
+    }

      if (f->buf_index>= f->buf_size) {
          qemu_fill_buffer(f);
-        if (f->buf_index>= f->buf_size)
+        if (f->buf_index>= f->buf_size) {
              return 0;
+        }
      }
      return f->buf[f->buf_index];
  }

  int qemu_get_byte(QEMUFile *f)
  {
-    if (f->is_write)
+    if (f->is_write) {
          abort();
+    }

      if (f->buf_index>= f->buf_size) {
          qemu_fill_buffer(f);
-        if (f->buf_index>= f->buf_size)
+        if (f->buf_index>= f->buf_size) {
              return 0;
+        }
      }
      return f->buf[f->buf_index++];
  }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]