All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part
@ 2017-07-06 16:38 Paolo Bonzini
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety Paolo Bonzini
                   ` (12 more replies)
  0 siblings, 13 replies; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Here, patches 1-6 make the remaining part of the block layer thread safe.
Patches 7-11 start removing aio_context_acquire/release, so the line
count goes down instead of up.

This is the penultimate series.  The remaining part makes virtio-blk,
virtio-scsi and block jobs thread safe, so that the AioContext lock
can go away altogether.

Paolo

Paolo Bonzini (11):
  block: prepare write threshold code for thread safety
  block: make write-threshold thread-safe
  util: use RCU accessors for notifiers
  block: make before-write notifiers thread-safe
  block-backup: add reqs_lock
  block: more notes on locking
  block: do not acquire AioContext in check_to_replace_node
  block: drain I/O around key management
  block/replication: do not acquire AioContext
  block: do not take AioContext around reopen
  block/snapshot: do not take AioContext lock
  qdev: do not take AioContext when releasing (and thus closing)
    backends

 block.c                          | 19 +++--------
 block/backup.c                   | 37 +++++++++++++++------
 block/block-backend.c            |  5 ---
 block/commit.c                   |  2 +-
 block/io.c                       | 12 +++++++
 block/mirror.c                   |  9 ------
 block/replication.c              | 56 ++++++++------------------------
 block/snapshot.c                 | 28 +---------------
 block/write-threshold.c          | 39 +++++++++++-----------
 blockdev.c                       | 70 ++++++++++++----------------------------
 hmp.c                            |  7 ----
 include/block/block.h            |  2 +-
 include/block/block_backup.h     |  2 +-
 include/block/block_int.h        | 31 ++++++++++++++++--
 include/block/snapshot.h         |  4 +--
 migration/savevm.c               | 22 -------------
 monitor.c                        | 10 ++----
 qemu-io-cmds.c                   |  2 +-
 util/notify.c                    | 13 ++++----
 19 files changed, 142 insertions(+), 228 deletions(-)

-- 
2.13.0

^ permalink raw reply	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-06 16:51   ` Eric Blake
  2017-07-10 13:21   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe Paolo Bonzini
                   ` (11 subsequent siblings)
  12 siblings, 2 replies; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Code refactoring only.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/write-threshold.c | 28 ++++++++++++++++------------
 1 file changed, 16 insertions(+), 12 deletions(-)

diff --git a/block/write-threshold.c b/block/write-threshold.c
index 0bd1a01c86..c8ebc32b4d 100644
--- a/block/write-threshold.c
+++ b/block/write-threshold.c
@@ -37,18 +37,22 @@ static void write_threshold_disable(BlockDriverState *bs)
     }
 }
 
+static uint64_t exceeded_amount(const BdrvTrackedRequest *req,
+                                uint64_t thres)
+{
+    if (thres > 0 && req->offset + req->bytes > thres) {
+        return req->offset + req->bytes - thres;
+    } else {
+        return 0;
+    }
+}
+
 uint64_t bdrv_write_threshold_exceeded(const BlockDriverState *bs,
                                        const BdrvTrackedRequest *req)
 {
-    if (bdrv_write_threshold_is_set(bs)) {
-        if (req->offset > bs->write_threshold_offset) {
-            return (req->offset - bs->write_threshold_offset) + req->bytes;
-        }
-        if ((req->offset + req->bytes) > bs->write_threshold_offset) {
-            return (req->offset + req->bytes) - bs->write_threshold_offset;
-        }
-    }
-    return 0;
+    uint64_t thres = bdrv_write_threshold_get(bs);
+
+    return exceeded_amount(req, thres);
 }
 
 static int coroutine_fn before_write_notify(NotifierWithReturn *notifier,
@@ -56,14 +60,14 @@ static int coroutine_fn before_write_notify(NotifierWithReturn *notifier,
 {
     BdrvTrackedRequest *req = opaque;
     BlockDriverState *bs = req->bs;
-    uint64_t amount = 0;
+    uint64_t thres = bdrv_write_threshold_get(bs);
+    uint64_t amount = exceeded_amount(req, thres);
 
-    amount = bdrv_write_threshold_exceeded(bs, req);
     if (amount > 0) {
         qapi_event_send_block_write_threshold(
             bs->node_name,
             amount,
-            bs->write_threshold_offset,
+            thres,
             &error_abort);
 
         /* autodisable to avoid flooding the monitor */
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-06 16:52   ` Eric Blake
  2017-07-10 15:42   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 03/11] util: use RCU accessors for notifiers Paolo Bonzini
                   ` (10 subsequent siblings)
  12 siblings, 2 replies; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

For simplicity, use bdrv_drained_begin/end to avoid concurrent
writes to the write threshold, or reading it while it is being set.
qmp_block_set_write_threshold is protected by the BQL.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/write-threshold.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/block/write-threshold.c b/block/write-threshold.c
index c8ebc32b4d..64ddd3d653 100644
--- a/block/write-threshold.c
+++ b/block/write-threshold.c
@@ -112,7 +112,6 @@ void qmp_block_set_write_threshold(const char *node_name,
                                    Error **errp)
 {
     BlockDriverState *bs;
-    AioContext *aio_context;
 
     bs = bdrv_find_node(node_name);
     if (!bs) {
@@ -120,10 +119,8 @@ void qmp_block_set_write_threshold(const char *node_name,
         return;
     }
 
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
-
+    /* Avoid a concurrent write_threshold_disable.  */
+    bdrv_drained_begin(bs);
     bdrv_write_threshold_set(bs, threshold_bytes);
-
-    aio_context_release(aio_context);
+    bdrv_drained_end(bs);
 }
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 03/11] util: use RCU accessors for notifiers
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety Paolo Bonzini
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-10 15:52   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 04/11] block: make before-write notifiers thread-safe Paolo Bonzini
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

This provides more flexibility for its users.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 util/notify.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/util/notify.c b/util/notify.c
index 06de63a839..16fff8d07d 100644
--- a/util/notify.c
+++ b/util/notify.c
@@ -16,6 +16,7 @@
 #include "qemu/osdep.h"
 #include "qemu-common.h"
 #include "qemu/notify.h"
+#include "qemu/rcu_queue.h"
 
 void notifier_list_init(NotifierList *list)
 {
@@ -24,19 +25,19 @@ void notifier_list_init(NotifierList *list)
 
 void notifier_list_add(NotifierList *list, Notifier *notifier)
 {
-    QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
+    QLIST_INSERT_HEAD_RCU(&list->notifiers, notifier, node);
 }
 
 void notifier_remove(Notifier *notifier)
 {
-    QLIST_REMOVE(notifier, node);
+    QLIST_REMOVE_RCU(notifier, node);
 }
 
 void notifier_list_notify(NotifierList *list, void *data)
 {
     Notifier *notifier, *next;
 
-    QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
+    QLIST_FOREACH_SAFE_RCU(notifier, &list->notifiers, node, next) {
         notifier->notify(notifier, data);
     }
 }
@@ -49,12 +50,12 @@ void notifier_with_return_list_init(NotifierWithReturnList *list)
 void notifier_with_return_list_add(NotifierWithReturnList *list,
                                    NotifierWithReturn *notifier)
 {
-    QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
+    QLIST_INSERT_HEAD_RCU(&list->notifiers, notifier, node);
 }
 
 void notifier_with_return_remove(NotifierWithReturn *notifier)
 {
-    QLIST_REMOVE(notifier, node);
+    QLIST_REMOVE_RCU(notifier, node);
 }
 
 int notifier_with_return_list_notify(NotifierWithReturnList *list, void *data)
@@ -62,7 +63,7 @@ int notifier_with_return_list_notify(NotifierWithReturnList *list, void *data)
     NotifierWithReturn *notifier, *next;
     int ret = 0;
 
-    QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
+    QLIST_FOREACH_SAFE_RCU(notifier, &list->notifiers, node, next) {
         ret = notifier->notify(notifier, data);
         if (ret != 0) {
             break;
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 04/11] block: make before-write notifiers thread-safe
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (2 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 03/11] util: use RCU accessors for notifiers Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-10 15:50   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 05/11] block-backup: add reqs_lock Paolo Bonzini
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Reads access the list in RCU style, so be careful to avoid use-after-free
scenarios in the backup block job.  Apart from this, all that's needed
is protecting updates with a mutex.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/backup.c            | 17 +++++++++++++----
 block/io.c                | 12 ++++++++++++
 block/write-threshold.c   |  2 +-
 include/block/block_int.h | 16 ++++++++++++++++
 4 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/block/backup.c b/block/backup.c
index 5387fbd84e..9214ffcc58 100644
--- a/block/backup.c
+++ b/block/backup.c
@@ -246,6 +246,13 @@ static void backup_abort(BlockJob *job)
 static void backup_clean(BlockJob *job)
 {
     BackupBlockJob *s = container_of(job, BackupBlockJob, common);
+
+    /* Ensure that no I/O is using the notifier anymore before freeing
+     * the bitmap and the job.
+     */
+    blk_drain(job->blk);
+    g_free(s->done_bitmap);
+
     assert(s->target);
     blk_unref(s->target);
     s->target = NULL;
@@ -526,12 +533,14 @@ static void coroutine_fn backup_run(void *opaque)
         }
     }
 
-    notifier_with_return_remove(&job->before_write);
-
-    /* wait until pending backup_do_cow() calls have completed */
+    /* At this point, all future invocations of the write notifier will
+     * find a 1 in the done_bitmap, but we still have to wait for pending
+     * backup_do_cow() calls to complete.
+     */
     qemu_co_rwlock_wrlock(&job->flush_rwlock);
     qemu_co_rwlock_unlock(&job->flush_rwlock);
-    g_free(job->done_bitmap);
+
+    bdrv_remove_before_write_notifier(bs, &job->before_write);
 
     data = g_malloc(sizeof(*data));
     data->ret = ret;
diff --git a/block/io.c b/block/io.c
index 68f19bbe69..089866bb5e 100644
--- a/block/io.c
+++ b/block/io.c
@@ -2499,10 +2499,22 @@ bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
     return true;
 }
 
+static QemuSpin notifiers_spin_lock;
+
 void bdrv_add_before_write_notifier(BlockDriverState *bs,
                                     NotifierWithReturn *notifier)
 {
+    qemu_spin_lock(&notifiers_spin_lock);
     notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
+    qemu_spin_unlock(&notifiers_spin_lock);
+}
+
+void bdrv_remove_before_write_notifier(BlockDriverState *bs,
+                                       NotifierWithReturn *notifier)
+{
+    qemu_spin_lock(&notifiers_spin_lock);
+    notifier_with_return_remove(notifier);
+    qemu_spin_unlock(&notifiers_spin_lock);
 }
 
 void bdrv_io_plug(BlockDriverState *bs)
diff --git a/block/write-threshold.c b/block/write-threshold.c
index 64ddd3d653..53c8caeda7 100644
--- a/block/write-threshold.c
+++ b/block/write-threshold.c
@@ -32,7 +32,7 @@ bool bdrv_write_threshold_is_set(const BlockDriverState *bs)
 static void write_threshold_disable(BlockDriverState *bs)
 {
     if (bdrv_write_threshold_is_set(bs)) {
-        notifier_with_return_remove(&bs->write_threshold_notifier);
+        bdrv_remove_before_write_notifier(bs, &bs->write_threshold_notifier);
         bs->write_threshold_offset = 0;
     }
 }
diff --git a/include/block/block_int.h b/include/block/block_int.h
index 6d3fbbfc1e..173d9dcaf9 100644
--- a/include/block/block_int.h
+++ b/include/block/block_int.h
@@ -707,6 +707,8 @@ void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
 
 /**
  * bdrv_add_before_write_notifier:
+ * @bs: The #BlockDriverState for which to register the notifier
+ * @notifier: The notifier to add
  *
  * Register a callback that is invoked before write requests are processed but
  * after any throttling or waiting for overlapping requests.
@@ -715,6 +717,20 @@ void bdrv_add_before_write_notifier(BlockDriverState *bs,
                                     NotifierWithReturn *notifier);
 
 /**
+ * bdrv_remove_before_write_notifier:
+ * @bs: The #BlockDriverState for which to register the notifier
+ * @notifier: The notifier to add
+ *
+ * Unregister a callback that is invoked before write requests are processed but
+ * after any throttling or waiting for overlapping requests.
+ *
+ * Note that more I/O could be pending on @bs.  You need to wait for
+ * it to finish, for example with bdrv_drain(), before freeing @notifier.
+ */
+void bdrv_remove_before_write_notifier(BlockDriverState *bs,
+                                       NotifierWithReturn *notifier);
+
+/**
  * bdrv_detach_aio_context:
  *
  * May be called from .bdrv_detach_aio_context() to detach children from the
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 05/11] block-backup: add reqs_lock
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (3 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 04/11] block: make before-write notifiers thread-safe Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-10 15:57   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 06/11] block: add a few more notes on locking Paolo Bonzini
                   ` (7 subsequent siblings)
  12 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Protect the list of inflight reqs and the CoQueues for dependent
requests.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/backup.c               | 20 +++++++++++++++-----
 block/replication.c          |  2 +-
 include/block/block_backup.h |  2 +-
 3 files changed, 17 insertions(+), 7 deletions(-)

diff --git a/block/backup.c b/block/backup.c
index 9214ffcc58..0ed7726fe6 100644
--- a/block/backup.c
+++ b/block/backup.c
@@ -45,6 +45,7 @@ typedef struct BackupBlockJob {
     bool compress;
     NotifierWithReturn before_write;
     QLIST_HEAD(, CowRequest) inflight_reqs;
+    CoMutex reqs_lock;
 } BackupBlockJob;
 
 /* Size of a cluster in sectors, instead of bytes. */
@@ -61,16 +62,18 @@ static void coroutine_fn wait_for_overlapping_requests(BackupBlockJob *job,
     CowRequest *req;
     bool retry;
 
+    qemu_co_mutex_lock(&job->reqs_lock);
     do {
         retry = false;
         QLIST_FOREACH(req, &job->inflight_reqs, list) {
             if (end > req->start && start < req->end) {
-                qemu_co_queue_wait(&req->wait_queue, NULL);
+                qemu_co_queue_wait(&req->wait_queue, &job->reqs_lock);
                 retry = true;
                 break;
             }
         }
     } while (retry);
+    qemu_co_mutex_unlock(&job->reqs_lock);
 }
 
 /* Keep track of an in-flight request */
@@ -80,14 +83,18 @@ static void cow_request_begin(CowRequest *req, BackupBlockJob *job,
     req->start = start;
     req->end = end;
     qemu_co_queue_init(&req->wait_queue);
+    qemu_co_mutex_lock(&job->reqs_lock);
     QLIST_INSERT_HEAD(&job->inflight_reqs, req, list);
+    qemu_co_mutex_unlock(&job->reqs_lock);
 }
 
 /* Forget about a completed request */
-static void cow_request_end(CowRequest *req)
+static void cow_request_end(CowRequest *req, BackupBlockJob *job)
 {
+    qemu_co_mutex_lock(&job->reqs_lock);
     QLIST_REMOVE(req, list);
     qemu_co_queue_restart_all(&req->wait_queue);
+    qemu_co_mutex_unlock(&job->reqs_lock);
 }
 
 static int coroutine_fn backup_do_cow(BackupBlockJob *job,
@@ -175,7 +182,7 @@ out:
         qemu_vfree(bounce_buffer);
     }
 
-    cow_request_end(&cow_request);
+    cow_request_end(&cow_request, job);
 
     trace_backup_do_cow_return(job, sector_num, nb_sectors, ret);
 
@@ -311,9 +318,11 @@ void backup_cow_request_begin(CowRequest *req, BlockJob *job,
     cow_request_begin(req, backup_job, start, end);
 }
 
-void backup_cow_request_end(CowRequest *req)
+void backup_cow_request_end(CowRequest *req, BlockJob *job)
 {
-    cow_request_end(req);
+    BackupBlockJob *backup_job = container_of(job, BackupBlockJob, common);
+
+    cow_request_end(req, backup_job);
 }
 
 static void backup_drain(BlockJob *job)
@@ -653,6 +662,7 @@ BlockJob *backup_job_create(const char *job_id, BlockDriverState *bs,
         goto error;
     }
 
+    qemu_co_mutex_init(&job->reqs_lock);
     job->on_source_error = on_source_error;
     job->on_target_error = on_target_error;
     job->sync_mode = sync_mode;
diff --git a/block/replication.c b/block/replication.c
index 3885f04c31..5d6e2ec916 100644
--- a/block/replication.c
+++ b/block/replication.c
@@ -240,7 +240,7 @@ static coroutine_fn int replication_co_readv(BlockDriverState *bs,
                                  remaining_sectors);
         ret = bdrv_co_readv(bs->file, sector_num, remaining_sectors,
                             qiov);
-        backup_cow_request_end(&req);
+        backup_cow_request_end(&req, child->bs->job);
         goto out;
     }
 
diff --git a/include/block/block_backup.h b/include/block/block_backup.h
index 8a759477a3..2fe0cdd808 100644
--- a/include/block/block_backup.h
+++ b/include/block/block_backup.h
@@ -32,7 +32,7 @@ void backup_wait_for_overlapping_requests(BlockJob *job, int64_t sector_num,
 void backup_cow_request_begin(CowRequest *req, BlockJob *job,
                               int64_t sector_num,
                               int nb_sectors);
-void backup_cow_request_end(CowRequest *req);
+void backup_cow_request_end(CowRequest *req, BlockJob *job);
 
 void backup_do_checkpoint(BlockJob *job, Error **errp);
 
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 06/11] block: add a few more notes on locking
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (4 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 05/11] block-backup: add reqs_lock Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-10 15:57   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 07/11] block: do not acquire AioContext in check_to_replace_node Paolo Bonzini
                   ` (6 subsequent siblings)
  12 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 include/block/block_int.h | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/include/block/block_int.h b/include/block/block_int.h
index 173d9dcaf9..43c9f4fcae 100644
--- a/include/block/block_int.h
+++ b/include/block/block_int.h
@@ -114,7 +114,9 @@ struct BlockDriver {
     /* Set if a driver can support backing files */
     bool supports_backing;
 
-    /* For handling image reopen for split or non-split files */
+    /* For handling image reopen for split or non-split files.  Called
+     * with no I/O pending.
+    */
     int (*bdrv_reopen_prepare)(BDRVReopenState *reopen_state,
                                BlockReopenQueue *queue, Error **errp);
     void (*bdrv_reopen_commit)(BDRVReopenState *reopen_state);
@@ -125,11 +127,13 @@ struct BlockDriver {
                      Error **errp);
     int (*bdrv_file_open)(BlockDriverState *bs, QDict *options, int flags,
                           Error **errp);
-    void (*bdrv_close)(BlockDriverState *bs);
     int (*bdrv_create)(const char *filename, QemuOpts *opts, Error **errp);
-    int (*bdrv_set_key)(BlockDriverState *bs, const char *key);
     int (*bdrv_make_empty)(BlockDriverState *bs);
 
+    /* Called from main thread.  */
+    void (*bdrv_close)(BlockDriverState *bs);
+    int (*bdrv_set_key)(BlockDriverState *bs, const char *key);
+
     void (*bdrv_refresh_filename)(BlockDriverState *bs, QDict *options);
 
     /* aio */
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 07/11] block: do not acquire AioContext in check_to_replace_node
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (5 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 06/11] block: add a few more notes on locking Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-10 15:58   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 08/11] block: drain I/O around key management Paolo Bonzini
                   ` (5 subsequent siblings)
  12 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

The only caller does it already.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block.c | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/block.c b/block.c
index 694396281b..af0a9a1c22 100644
--- a/block.c
+++ b/block.c
@@ -4701,23 +4701,19 @@ bool bdrv_is_first_non_filter(BlockDriverState *candidate)
     return false;
 }
 
+/* Called with AioContext lock held.  */
 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
                                         const char *node_name, Error **errp)
 {
     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
-    AioContext *aio_context;
 
     if (!to_replace_bs) {
         error_setg(errp, "Node name '%s' not found", node_name);
         return NULL;
     }
 
-    aio_context = bdrv_get_aio_context(to_replace_bs);
-    aio_context_acquire(aio_context);
-
     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
-        to_replace_bs = NULL;
-        goto out;
+        return NULL;
     }
 
     /* We don't want arbitrary node of the BDS chain to be replaced only the top
@@ -4727,12 +4723,9 @@ BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
      */
     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
         error_setg(errp, "Only top most non filter can be replaced");
-        to_replace_bs = NULL;
-        goto out;
+        return NULL;
     }
 
-out:
-    aio_context_release(aio_context);
     return to_replace_bs;
 }
 
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 08/11] block: drain I/O around key management
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (6 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 07/11] block: do not acquire AioContext in check_to_replace_node Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-10 16:01   ` Stefan Hajnoczi
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 09/11] block/replication: do not acquire AioContext Paolo Bonzini
                   ` (4 subsequent siblings)
  12 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

The resulting drained section is a replacement for the AioContext.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 blockdev.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/blockdev.c b/blockdev.c
index f92dcf24bf..b2c305402d 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -2253,7 +2253,6 @@ void qmp_block_passwd(bool has_device, const char *device,
 {
     Error *local_err = NULL;
     BlockDriverState *bs;
-    AioContext *aio_context;
 
     bs = bdrv_lookup_bs(has_device ? device : NULL,
                         has_node_name ? node_name : NULL,
@@ -2263,12 +2262,9 @@ void qmp_block_passwd(bool has_device, const char *device,
         return;
     }
 
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
-
+    bdrv_drained_begin(bs);
     bdrv_add_key(bs, password, errp);
-
-    aio_context_release(aio_context);
+    bdrv_drained_end(bs);
 }
 
 /*
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 09/11] block/replication: do not acquire AioContext
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (7 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 08/11] block: drain I/O around key management Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 10/11] block: do not take AioContext around reopen Paolo Bonzini
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Replication functions are mostly called when the BDS is quiescent and
does not have any pending I/O.  They do not need to synchronize on
anything since BDS and BB are now thread-safe.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/replication.c | 51 ++++++++++++---------------------------------------
 1 file changed, 12 insertions(+), 39 deletions(-)

diff --git a/block/replication.c b/block/replication.c
index 5d6e2ec916..7a3b94b90f 100644
--- a/block/replication.c
+++ b/block/replication.c
@@ -41,6 +41,8 @@ typedef struct BDRVReplicationState {
     Error *blocker;
     int orig_hidden_flags;
     int orig_secondary_flags;
+
+    /* This field is accessed asynchronously.  */
     int error;
 } BDRVReplicationState;
 
@@ -201,7 +203,7 @@ static int replication_return_value(BDRVReplicationState *s, int ret)
     }
 
     if (ret < 0) {
-        s->error = ret;
+        atomic_set(&s->error, ret);
         ret = 0;
     }
 
@@ -311,6 +313,7 @@ static bool replication_recurse_is_first_non_filter(BlockDriverState *bs,
     return bdrv_recurse_is_first_non_filter(bs->file->bs, candidate);
 }
 
+/* Called with no I/O pending.  */
 static void secondary_do_checkpoint(BDRVReplicationState *s, Error **errp)
 {
     Error *local_err = NULL;
@@ -405,7 +408,7 @@ static void backup_job_completed(void *opaque, int ret)
 
     if (s->stage != BLOCK_REPLICATION_FAILOVER) {
         /* The backup job is cancelled unexpectedly */
-        s->error = -EIO;
+        atomic_set(&s->error, -EIO);
     }
 
     backup_job_cleanup(bs);
@@ -430,6 +433,7 @@ static bool check_top_bs(BlockDriverState *top_bs, BlockDriverState *bs)
     return false;
 }
 
+/* Called with no I/O pending.  */
 static void replication_start(ReplicationState *rs, ReplicationMode mode,
                               Error **errp)
 {
@@ -437,24 +441,19 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
     BDRVReplicationState *s;
     BlockDriverState *top_bs;
     int64_t active_length, hidden_length, disk_length;
-    AioContext *aio_context;
     Error *local_err = NULL;
     BlockJob *job;
 
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
     s = bs->opaque;
 
     if (s->stage != BLOCK_REPLICATION_NONE) {
         error_setg(errp, "Block replication is running or done");
-        aio_context_release(aio_context);
         return;
     }
 
     if (s->mode != mode) {
         error_setg(errp, "The parameter mode's value is invalid, needs %d,"
                    " but got %d", s->mode, mode);
-        aio_context_release(aio_context);
         return;
     }
 
@@ -466,21 +465,18 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
         if (!s->active_disk || !s->active_disk->bs ||
                                     !s->active_disk->bs->backing) {
             error_setg(errp, "Active disk doesn't have backing file");
-            aio_context_release(aio_context);
             return;
         }
 
         s->hidden_disk = s->active_disk->bs->backing;
         if (!s->hidden_disk->bs || !s->hidden_disk->bs->backing) {
             error_setg(errp, "Hidden disk doesn't have backing file");
-            aio_context_release(aio_context);
             return;
         }
 
         s->secondary_disk = s->hidden_disk->bs->backing;
         if (!s->secondary_disk->bs || !bdrv_has_blk(s->secondary_disk->bs)) {
             error_setg(errp, "The secondary disk doesn't have block backend");
-            aio_context_release(aio_context);
             return;
         }
 
@@ -492,7 +488,6 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
             active_length != hidden_length || hidden_length != disk_length) {
             error_setg(errp, "Active disk, hidden disk, secondary disk's length"
                        " are not the same");
-            aio_context_release(aio_context);
             return;
         }
 
@@ -500,7 +495,6 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
             !s->hidden_disk->bs->drv->bdrv_make_empty) {
             error_setg(errp,
                        "Active disk or hidden disk doesn't support make_empty");
-            aio_context_release(aio_context);
             return;
         }
 
@@ -508,7 +502,6 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
         reopen_backing_file(bs, true, &local_err);
         if (local_err) {
             error_propagate(errp, local_err);
-            aio_context_release(aio_context);
             return;
         }
 
@@ -521,7 +514,6 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
             !check_top_bs(top_bs, bs)) {
             error_setg(errp, "No top_bs or it is invalid");
             reopen_backing_file(bs, false, NULL);
-            aio_context_release(aio_context);
             return;
         }
         bdrv_op_block_all(top_bs, s->blocker);
@@ -535,13 +527,11 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
         if (local_err) {
             error_propagate(errp, local_err);
             backup_job_cleanup(bs);
-            aio_context_release(aio_context);
             return;
         }
         block_job_start(job);
         break;
     default:
-        aio_context_release(aio_context);
         abort();
     }
 
@@ -551,48 +541,38 @@ static void replication_start(ReplicationState *rs, ReplicationMode mode,
         secondary_do_checkpoint(s, errp);
     }
 
-    s->error = 0;
-    aio_context_release(aio_context);
+    atomic_set(&s->error, 0);
 }
 
+/* Called with no I/O pending.  */
 static void replication_do_checkpoint(ReplicationState *rs, Error **errp)
 {
     BlockDriverState *bs = rs->opaque;
     BDRVReplicationState *s;
-    AioContext *aio_context;
 
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
     s = bs->opaque;
 
     if (s->mode == REPLICATION_MODE_SECONDARY) {
         secondary_do_checkpoint(s, errp);
     }
-    aio_context_release(aio_context);
 }
 
 static void replication_get_error(ReplicationState *rs, Error **errp)
 {
     BlockDriverState *bs = rs->opaque;
     BDRVReplicationState *s;
-    AioContext *aio_context;
 
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
     s = bs->opaque;
 
     if (s->stage != BLOCK_REPLICATION_RUNNING) {
         error_setg(errp, "Block replication is not running");
-        aio_context_release(aio_context);
         return;
     }
 
-    if (s->error) {
+    if (atomic_read(&s->error)) {
         error_setg(errp, "I/O error occurred");
-        aio_context_release(aio_context);
         return;
     }
-    aio_context_release(aio_context);
 }
 
 static void replication_done(void *opaque, int ret)
@@ -608,10 +588,10 @@ static void replication_done(void *opaque, int ret)
         s->active_disk = NULL;
         s->secondary_disk = NULL;
         s->hidden_disk = NULL;
-        s->error = 0;
+        atomic_set(&s->error, 0);
     } else {
         s->stage = BLOCK_REPLICATION_FAILOVER_FAILED;
-        s->error = -EIO;
+        atomic_set(&s->error, -EIO);
     }
 }
 
@@ -619,22 +599,18 @@ static void replication_stop(ReplicationState *rs, bool failover, Error **errp)
 {
     BlockDriverState *bs = rs->opaque;
     BDRVReplicationState *s;
-    AioContext *aio_context;
 
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
     s = bs->opaque;
 
     if (s->stage != BLOCK_REPLICATION_RUNNING) {
         error_setg(errp, "Block replication is not running");
-        aio_context_release(aio_context);
         return;
     }
 
     switch (s->mode) {
     case REPLICATION_MODE_PRIMARY:
         s->stage = BLOCK_REPLICATION_DONE;
-        s->error = 0;
+        atomic_set(&s->error, 0);
         break;
     case REPLICATION_MODE_SECONDARY:
         /*
@@ -649,7 +625,6 @@ static void replication_stop(ReplicationState *rs, bool failover, Error **errp)
         if (!failover) {
             secondary_do_checkpoint(s, errp);
             s->stage = BLOCK_REPLICATION_DONE;
-            aio_context_release(aio_context);
             return;
         }
 
@@ -659,10 +634,8 @@ static void replication_stop(ReplicationState *rs, bool failover, Error **errp)
                             NULL, replication_done, bs, true, errp);
         break;
     default:
-        aio_context_release(aio_context);
         abort();
     }
-    aio_context_release(aio_context);
 }
 
 BlockDriver bdrv_replication = {
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 10/11] block: do not take AioContext around reopen
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (8 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 09/11] block/replication: do not acquire AioContext Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 11/11] block/snapshot: do not take AioContext lock Paolo Bonzini
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Reopen needs to handle AioContext carefully due to calling
bdrv_drain_all_begin/end.  By not taking AioContext around calls to
bdrv_reopen_multiple, we can drop the function's release/acquire
pair and the AioContext argument too.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block.c               |  6 ++----
 block/block-backend.c |  5 -----
 block/commit.c        |  2 +-
 block/mirror.c        |  9 ---------
 block/replication.c   |  3 +--
 blockdev.c            | 19 ++++++-------------
 include/block/block.h |  2 +-
 qemu-io-cmds.c        |  2 +-
 8 files changed, 12 insertions(+), 36 deletions(-)

diff --git a/block.c b/block.c
index af0a9a1c22..4bf6ab11f7 100644
--- a/block.c
+++ b/block.c
@@ -2793,7 +2793,7 @@ BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
  * to all devices.
  *
  */
-int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
+int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
 {
     int ret = -1;
     BlockReopenQueueEntry *bs_entry, *next;
@@ -2801,9 +2801,7 @@ int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **er
 
     assert(bs_queue != NULL);
 
-    aio_context_release(ctx);
     bdrv_drain_all_begin();
-    aio_context_acquire(ctx);
 
     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
@@ -2847,7 +2845,7 @@ int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
     Error *local_err = NULL;
     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
 
-    ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
+    ret = bdrv_reopen_multiple(queue, &local_err);
     if (local_err != NULL) {
         error_propagate(errp, local_err);
     }
diff --git a/block/block-backend.c b/block/block-backend.c
index 0df3457a09..0ce1fb1c26 100644
--- a/block/block-backend.c
+++ b/block/block-backend.c
@@ -1888,17 +1888,12 @@ int blk_commit_all(void)
     BlockBackend *blk = NULL;
 
     while ((blk = blk_all_next(blk)) != NULL) {
-        AioContext *aio_context = blk_get_aio_context(blk);
-
-        aio_context_acquire(aio_context);
         if (blk_is_inserted(blk) && blk->root->bs->backing) {
             int ret = bdrv_commit(blk->root->bs);
             if (ret < 0) {
-                aio_context_release(aio_context);
                 return ret;
             }
         }
-        aio_context_release(aio_context);
     }
     return 0;
 }
diff --git a/block/commit.c b/block/commit.c
index 8c09c3dbcd..1fe67fa8db 100644
--- a/block/commit.c
+++ b/block/commit.c
@@ -335,7 +335,7 @@ void commit_start(const char *job_id, BlockDriverState *bs,
                                          orig_overlay_flags | BDRV_O_RDWR);
     }
     if (reopen_queue) {
-        bdrv_reopen_multiple(bdrv_get_aio_context(bs), reopen_queue, &local_err);
+        bdrv_reopen_multiple(reopen_queue, &local_err);
         if (local_err != NULL) {
             error_propagate(errp, local_err);
             goto fail;
diff --git a/block/mirror.c b/block/mirror.c
index 68744a17e8..804edbad21 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -505,7 +505,6 @@ static void mirror_exit(BlockJob *job, void *opaque)
 {
     MirrorBlockJob *s = container_of(job, MirrorBlockJob, common);
     MirrorExitData *data = opaque;
-    AioContext *replace_aio_context = NULL;
     BlockDriverState *src = s->source;
     BlockDriverState *target_bs = blk_bs(s->target);
     BlockDriverState *mirror_top_bs = s->mirror_top_bs;
@@ -545,11 +544,6 @@ static void mirror_exit(BlockJob *job, void *opaque)
         }
     }
 
-    if (s->to_replace) {
-        replace_aio_context = bdrv_get_aio_context(s->to_replace);
-        aio_context_acquire(replace_aio_context);
-    }
-
     if (s->should_complete && data->ret == 0) {
         BlockDriverState *to_replace = src;
         if (s->to_replace) {
@@ -575,9 +569,6 @@ static void mirror_exit(BlockJob *job, void *opaque)
         error_free(s->replace_blocker);
         bdrv_unref(s->to_replace);
     }
-    if (replace_aio_context) {
-        aio_context_release(replace_aio_context);
-    }
     g_free(s->replaces);
     bdrv_unref(target_bs);
 
diff --git a/block/replication.c b/block/replication.c
index 7a3b94b90f..9350ef100b 100644
--- a/block/replication.c
+++ b/block/replication.c
@@ -381,8 +381,7 @@ static void reopen_backing_file(BlockDriverState *bs, bool writable,
     }
 
     if (reopen_queue) {
-        bdrv_reopen_multiple(bdrv_get_aio_context(bs),
-                             reopen_queue, &local_err);
+        bdrv_reopen_multiple(reopen_queue, &local_err);
         error_propagate(errp, local_err);
     }
 }
diff --git a/blockdev.c b/blockdev.c
index b2c305402d..88ab606949 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -3710,7 +3710,6 @@ void qmp_change_backing_file(const char *device,
                              Error **errp)
 {
     BlockDriverState *bs = NULL;
-    AioContext *aio_context;
     BlockDriverState *image_bs = NULL;
     Error *local_err = NULL;
     bool ro;
@@ -3722,37 +3721,34 @@ void qmp_change_backing_file(const char *device,
         return;
     }
 
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
-
     image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err);
     if (local_err) {
         error_propagate(errp, local_err);
-        goto out;
+        return;
     }
 
     if (!image_bs) {
         error_setg(errp, "image file not found");
-        goto out;
+        return;
     }
 
     if (bdrv_find_base(image_bs) == image_bs) {
         error_setg(errp, "not allowing backing file change on an image "
                          "without a backing file");
-        goto out;
+        return;
     }
 
     /* even though we are not necessarily operating on bs, we need it to
      * determine if block ops are currently prohibited on the chain */
     if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) {
-        goto out;
+        return;
     }
 
     /* final sanity check */
     if (!bdrv_chain_contains(bs, image_bs)) {
         error_setg(errp, "'%s' and image file are not in the same chain",
                    device);
-        goto out;
+        return;
     }
 
     /* if not r/w, reopen to make r/w */
@@ -3763,7 +3759,7 @@ void qmp_change_backing_file(const char *device,
         bdrv_reopen(image_bs, open_flags | BDRV_O_RDWR, &local_err);
         if (local_err) {
             error_propagate(errp, local_err);
-            goto out;
+            return;
         }
     }
 
@@ -3781,9 +3777,6 @@ void qmp_change_backing_file(const char *device,
         bdrv_reopen(image_bs, open_flags, &local_err);
         error_propagate(errp, local_err);
     }
-
-out:
-    aio_context_release(aio_context);
 }
 
 void hmp_drive_add_node(Monitor *mon, const char *optstr)
diff --git a/include/block/block.h b/include/block/block.h
index 85e4be7462..f533f80f1f 100644
--- a/include/block/block.h
+++ b/include/block/block.h
@@ -265,7 +265,7 @@ BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
                                     BlockDriverState *bs,
                                     QDict *options, int flags);
-int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp);
+int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp);
 int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp);
 int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
                         BlockReopenQueue *queue, Error **errp);
diff --git a/qemu-io-cmds.c b/qemu-io-cmds.c
index b0ea327024..19d3114542 100644
--- a/qemu-io-cmds.c
+++ b/qemu-io-cmds.c
@@ -2006,7 +2006,7 @@ static int reopen_f(BlockBackend *blk, int argc, char **argv)
     qemu_opts_reset(&reopen_opts);
 
     brq = bdrv_reopen_queue(NULL, bs, opts, flags);
-    bdrv_reopen_multiple(bdrv_get_aio_context(bs), brq, &local_err);
+    bdrv_reopen_multiple(brq, &local_err);
     if (local_err) {
         error_report_err(local_err);
     } else {
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [Qemu-devel] [PATCH 11/11] block/snapshot: do not take AioContext lock
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (9 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 10/11] block: do not take AioContext around reopen Paolo Bonzini
@ 2017-07-06 16:38 ` Paolo Bonzini
  2017-07-10 16:24   ` Stefan Hajnoczi
  2017-07-06 23:48 ` [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part no-reply
  2017-07-10 16:25 ` Stefan Hajnoczi
  12 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-06 16:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: famz, qemu-block, stefanha

Snapshots are only created/destroyed/loaded under the BQL, while no
other I/O is happening.  Snapshot information could be accessed while
other I/O is happening, but also under the BQL so they cannot be
modified concurrently.  The AioContext lock is overkill.  If needed,
in the future the BQL could be split to a separate lock covering all
snapshot operations, and the create/destroy/goto callbacks changed
to run in a coroutine (so the driver can do mutual exclusion as usual).

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/snapshot.c          | 28 +---------------------------
 blockdev.c                | 43 ++++++++++++-------------------------------
 hmp.c                     |  7 -------
 include/block/block_int.h |  5 +++++
 include/block/snapshot.h  |  4 +---
 migration/savevm.c        | 22 ----------------------
 monitor.c                 | 10 ++--------
 7 files changed, 21 insertions(+), 98 deletions(-)

diff --git a/block/snapshot.c b/block/snapshot.c
index a46564e7b7..08c59d6166 100644
--- a/block/snapshot.c
+++ b/block/snapshot.c
@@ -384,9 +384,7 @@ int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs,
 }
 
 
-/* Group operations. All block drivers are involved.
- * These functions will properly handle dataplane (take aio_context_acquire
- * when appropriate for appropriate block drivers) */
+/* Group operations. All block drivers are involved.  */
 
 bool bdrv_all_can_snapshot(BlockDriverState **first_bad_bs)
 {
@@ -395,13 +393,9 @@ bool bdrv_all_can_snapshot(BlockDriverState **first_bad_bs)
     BdrvNextIterator it;
 
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
-        AioContext *ctx = bdrv_get_aio_context(bs);
-
-        aio_context_acquire(ctx);
         if (bdrv_is_inserted(bs) && !bdrv_is_read_only(bs)) {
             ok = bdrv_can_snapshot(bs);
         }
-        aio_context_release(ctx);
         if (!ok) {
             goto fail;
         }
@@ -421,14 +415,10 @@ int bdrv_all_delete_snapshot(const char *name, BlockDriverState **first_bad_bs,
     QEMUSnapshotInfo sn1, *snapshot = &sn1;
 
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
-        AioContext *ctx = bdrv_get_aio_context(bs);
-
-        aio_context_acquire(ctx);
         if (bdrv_can_snapshot(bs) &&
                 bdrv_snapshot_find(bs, snapshot, name) >= 0) {
             ret = bdrv_snapshot_delete_by_id_or_name(bs, name, err);
         }
-        aio_context_release(ctx);
         if (ret < 0) {
             goto fail;
         }
@@ -447,13 +437,9 @@ int bdrv_all_goto_snapshot(const char *name, BlockDriverState **first_bad_bs)
     BdrvNextIterator it;
 
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
-        AioContext *ctx = bdrv_get_aio_context(bs);
-
-        aio_context_acquire(ctx);
         if (bdrv_can_snapshot(bs)) {
             err = bdrv_snapshot_goto(bs, name);
         }
-        aio_context_release(ctx);
         if (err < 0) {
             goto fail;
         }
@@ -472,13 +458,9 @@ int bdrv_all_find_snapshot(const char *name, BlockDriverState **first_bad_bs)
     BdrvNextIterator it;
 
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
-        AioContext *ctx = bdrv_get_aio_context(bs);
-
-        aio_context_acquire(ctx);
         if (bdrv_can_snapshot(bs)) {
             err = bdrv_snapshot_find(bs, &sn, name);
         }
-        aio_context_release(ctx);
         if (err < 0) {
             goto fail;
         }
@@ -499,9 +481,6 @@ int bdrv_all_create_snapshot(QEMUSnapshotInfo *sn,
     BdrvNextIterator it;
 
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
-        AioContext *ctx = bdrv_get_aio_context(bs);
-
-        aio_context_acquire(ctx);
         if (bs == vm_state_bs) {
             sn->vm_state_size = vm_state_size;
             err = bdrv_snapshot_create(bs, sn);
@@ -509,7 +488,6 @@ int bdrv_all_create_snapshot(QEMUSnapshotInfo *sn,
             sn->vm_state_size = 0;
             err = bdrv_snapshot_create(bs, sn);
         }
-        aio_context_release(ctx);
         if (err < 0) {
             goto fail;
         }
@@ -526,13 +504,9 @@ BlockDriverState *bdrv_all_find_vmstate_bs(void)
     BdrvNextIterator it;
 
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
-        AioContext *ctx = bdrv_get_aio_context(bs);
         bool found;
 
-        aio_context_acquire(ctx);
         found = bdrv_can_snapshot(bs);
-        aio_context_release(ctx);
-
         if (found) {
             break;
         }
diff --git a/blockdev.c b/blockdev.c
index 88ab606949..56ef9c41a3 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -1280,7 +1280,6 @@ SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device,
                                                          Error **errp)
 {
     BlockDriverState *bs;
-    AioContext *aio_context;
     QEMUSnapshotInfo sn;
     Error *local_err = NULL;
     SnapshotInfo *info = NULL;
@@ -1290,8 +1289,6 @@ SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device,
     if (!bs) {
         return NULL;
     }
-    aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(aio_context);
 
     if (!has_id) {
         id = NULL;
@@ -1303,34 +1300,32 @@ SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device,
 
     if (!id && !name) {
         error_setg(errp, "Name or id must be provided");
-        goto out_aio_context;
+        return NULL;
     }
 
     if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) {
-        goto out_aio_context;
+        return NULL;
     }
 
     ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err);
     if (local_err) {
         error_propagate(errp, local_err);
-        goto out_aio_context;
+        return NULL;
     }
     if (!ret) {
         error_setg(errp,
                    "Snapshot with id '%s' and name '%s' does not exist on "
                    "device '%s'",
                    STR_OR_NULL(id), STR_OR_NULL(name), device);
-        goto out_aio_context;
+        return NULL;
     }
 
     bdrv_snapshot_delete(bs, id, name, &local_err);
     if (local_err) {
         error_propagate(errp, local_err);
-        goto out_aio_context;
+        return NULL;
     }
 
-    aio_context_release(aio_context);
-
     info = g_new0(SnapshotInfo, 1);
     info->id = g_strdup(sn.id_str);
     info->name = g_strdup(sn.name);
@@ -1341,10 +1336,6 @@ SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device,
     info->vm_clock_sec = sn.vm_clock_nsec / 1000000000;
 
     return info;
-
-out_aio_context:
-    aio_context_release(aio_context);
-    return NULL;
 }
 
 /**
@@ -1446,7 +1437,6 @@ struct BlkActionState {
 typedef struct InternalSnapshotState {
     BlkActionState common;
     BlockDriverState *bs;
-    AioContext *aio_context;
     QEMUSnapshotInfo sn;
     bool created;
 } InternalSnapshotState;
@@ -1498,10 +1488,6 @@ static void internal_snapshot_prepare(BlkActionState *common,
         return;
     }
 
-    /* AioContext is released in .clean() */
-    state->aio_context = bdrv_get_aio_context(bs);
-    aio_context_acquire(state->aio_context);
-
     state->bs = bs;
     bdrv_drained_begin(bs);
 
@@ -1585,11 +1571,8 @@ static void internal_snapshot_clean(BlkActionState *common)
     InternalSnapshotState *state = DO_UPCAST(InternalSnapshotState,
                                              common, common);
 
-    if (state->aio_context) {
-        if (state->bs) {
-            bdrv_drained_end(state->bs);
-        }
-        aio_context_release(state->aio_context);
+    if (state->bs) {
+        bdrv_drained_end(state->bs);
     }
 }
 
@@ -1598,7 +1581,6 @@ typedef struct ExternalSnapshotState {
     BlkActionState common;
     BlockDriverState *old_bs;
     BlockDriverState *new_bs;
-    AioContext *aio_context;
     bool overlay_appended;
 } ExternalSnapshotState;
 
@@ -1654,9 +1636,7 @@ static void external_snapshot_prepare(BlkActionState *common,
         return;
     }
 
-    /* Acquire AioContext now so any threads operating on old_bs stop */
-    state->aio_context = bdrv_get_aio_context(state->old_bs);
-    aio_context_acquire(state->aio_context);
+    /* Make any threads operating on old_bs stop */
     bdrv_drained_begin(state->old_bs);
 
     if (!bdrv_is_inserted(state->old_bs)) {
@@ -1756,7 +1736,7 @@ static void external_snapshot_prepare(BlkActionState *common,
         return;
     }
 
-    bdrv_set_aio_context(state->new_bs, state->aio_context);
+    bdrv_set_aio_context(state->new_bs, bdrv_get_aio_context(state->old_bs));
 
     /* This removes our old bs and adds the new bs. This is an operation that
      * can fail, so we need to do it in .prepare; undoing it for abort is
@@ -1775,6 +1755,8 @@ static void external_snapshot_commit(BlkActionState *common)
     ExternalSnapshotState *state =
                              DO_UPCAST(ExternalSnapshotState, common, common);
 
+    bdrv_set_aio_context(state->new_bs, bdrv_get_aio_context(state->old_bs));
+
     /* We don't need (or want) to use the transactional
      * bdrv_reopen_multiple() across all the entries at once, because we
      * don't want to abort all of them if one of them fails the reopen */
@@ -1803,9 +1785,8 @@ static void external_snapshot_clean(BlkActionState *common)
 {
     ExternalSnapshotState *state =
                              DO_UPCAST(ExternalSnapshotState, common, common);
-    if (state->aio_context) {
+    if (state->old_bs) {
         bdrv_drained_end(state->old_bs);
-        aio_context_release(state->aio_context);
         bdrv_unref(state->new_bs);
     }
 }
diff --git a/hmp.c b/hmp.c
index 8c72c58b20..3c63ea7a72 100644
--- a/hmp.c
+++ b/hmp.c
@@ -1321,7 +1321,6 @@ void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
     int nb_sns, i;
     int total;
     int *global_snapshots;
-    AioContext *aio_context;
 
     typedef struct SnapshotEntry {
         QEMUSnapshotInfo sn;
@@ -1345,11 +1344,8 @@ void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
         monitor_printf(mon, "No available block device supports snapshots\n");
         return;
     }
-    aio_context = bdrv_get_aio_context(bs);
 
-    aio_context_acquire(aio_context);
     nb_sns = bdrv_snapshot_list(bs, &sn_tab);
-    aio_context_release(aio_context);
 
     if (nb_sns < 0) {
         monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
@@ -1360,9 +1356,7 @@ void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
         int bs1_nb_sns = 0;
         ImageEntry *ie;
         SnapshotEntry *se;
-        AioContext *ctx = bdrv_get_aio_context(bs1);
 
-        aio_context_acquire(ctx);
         if (bdrv_can_snapshot(bs1)) {
             sn = NULL;
             bs1_nb_sns = bdrv_snapshot_list(bs1, &sn);
@@ -1380,7 +1374,6 @@ void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
             }
             g_free(sn);
         }
-        aio_context_release(ctx);
     }
 
     if (no_snapshot) {
diff --git a/include/block/block_int.h b/include/block/block_int.h
index 43c9f4fcae..38d1067fa8 100644
--- a/include/block/block_int.h
+++ b/include/block/block_int.h
@@ -217,6 +217,11 @@ struct BlockDriver {
     int coroutine_fn (*bdrv_co_pwritev_compressed)(BlockDriverState *bs,
         uint64_t offset, uint64_t bytes, QEMUIOVector *qiov);
 
+    /*
+     * Snapshots are only created/destroyed/loaded under the BQL, while no
+     * other I/O is happening.  snapshots/nb_snapshots is read while other
+     * I/O is happening, but also under the BQL.
+     */
     int (*bdrv_snapshot_create)(BlockDriverState *bs,
                                 QEMUSnapshotInfo *sn_info);
     int (*bdrv_snapshot_goto)(BlockDriverState *bs,
diff --git a/include/block/snapshot.h b/include/block/snapshot.h
index e5c0553115..735d0f694c 100644
--- a/include/block/snapshot.h
+++ b/include/block/snapshot.h
@@ -76,9 +76,7 @@ int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs,
                                          Error **errp);
 
 
-/* Group operations. All block drivers are involved.
- * These functions will properly handle dataplane (take aio_context_acquire
- * when appropriate for appropriate block drivers */
+/* Group operations. All block drivers are involved.  */
 
 bool bdrv_all_can_snapshot(BlockDriverState **first_bad_bs);
 int bdrv_all_delete_snapshot(const char *name, BlockDriverState **first_bsd_bs,
diff --git a/migration/savevm.c b/migration/savevm.c
index c7a49c93c5..1b168c3ba8 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -2073,7 +2073,6 @@ int save_snapshot(const char *name, Error **errp)
     uint64_t vm_state_size;
     qemu_timeval tv;
     struct tm tm;
-    AioContext *aio_context;
 
     if (!bdrv_all_can_snapshot(&bs)) {
         error_setg(errp, "Device '%s' is writable but does not support "
@@ -2096,7 +2095,6 @@ int save_snapshot(const char *name, Error **errp)
         error_setg(errp, "No block device can accept snapshots");
         return ret;
     }
-    aio_context = bdrv_get_aio_context(bs);
 
     saved_vm_running = runstate_is_running();
 
@@ -2109,8 +2107,6 @@ int save_snapshot(const char *name, Error **errp)
 
     bdrv_drain_all_begin();
 
-    aio_context_acquire(aio_context);
-
     memset(sn, 0, sizeof(*sn));
 
     /* fill auxiliary fields */
@@ -2146,14 +2142,6 @@ int save_snapshot(const char *name, Error **errp)
         goto the_end;
     }
 
-    /* The bdrv_all_create_snapshot() call that follows acquires the AioContext
-     * for itself.  BDRV_POLL_WHILE() does not support nested locking because
-     * it only releases the lock once.  Therefore synchronous I/O will deadlock
-     * unless we release the AioContext before bdrv_all_create_snapshot().
-     */
-    aio_context_release(aio_context);
-    aio_context = NULL;
-
     ret = bdrv_all_create_snapshot(sn, bs, vm_state_size, &bs);
     if (ret < 0) {
         error_setg(errp, "Error while creating snapshot on '%s'",
@@ -2164,10 +2152,6 @@ int save_snapshot(const char *name, Error **errp)
     ret = 0;
 
  the_end:
-    if (aio_context) {
-        aio_context_release(aio_context);
-    }
-
     bdrv_drain_all_end();
 
     if (saved_vm_running) {
@@ -2241,7 +2225,6 @@ int load_snapshot(const char *name, Error **errp)
     QEMUSnapshotInfo sn;
     QEMUFile *f;
     int ret;
-    AioContext *aio_context;
     MigrationIncomingState *mis = migration_incoming_get_current();
 
     if (!bdrv_all_can_snapshot(&bs)) {
@@ -2263,12 +2246,9 @@ int load_snapshot(const char *name, Error **errp)
         error_setg(errp, "No block device supports snapshots");
         return -ENOTSUP;
     }
-    aio_context = bdrv_get_aio_context(bs_vm_state);
 
     /* Don't even try to load empty VM states */
-    aio_context_acquire(aio_context);
     ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
-    aio_context_release(aio_context);
     if (ret < 0) {
         return ret;
     } else if (sn.vm_state_size == 0) {
@@ -2298,10 +2278,8 @@ int load_snapshot(const char *name, Error **errp)
     qemu_system_reset(SHUTDOWN_CAUSE_NONE);
     mis->from_src_file = f;
 
-    aio_context_acquire(aio_context);
     ret = qemu_loadvm_state(f);
     migration_incoming_state_destroy();
-    aio_context_release(aio_context);
 
     bdrv_drain_all_end();
 
diff --git a/monitor.c b/monitor.c
index 3c369f4dd5..48687aa94d 100644
--- a/monitor.c
+++ b/monitor.c
@@ -3639,15 +3639,9 @@ static void vm_completion(ReadLineState *rs, const char *str)
 
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
         SnapshotInfoList *snapshots, *snapshot;
-        AioContext *ctx = bdrv_get_aio_context(bs);
-        bool ok = false;
 
-        aio_context_acquire(ctx);
-        if (bdrv_can_snapshot(bs)) {
-            ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0;
-        }
-        aio_context_release(ctx);
-        if (!ok) {
+        if (!bdrv_can_snapshot(bs) ||
+            bdrv_query_snapshot_info_list(bs, &snapshots, NULL) != 0) {
             continue;
         }
 
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety Paolo Bonzini
@ 2017-07-06 16:51   ` Eric Blake
  2017-07-10 13:21   ` Stefan Hajnoczi
  1 sibling, 0 replies; 34+ messages in thread
From: Eric Blake @ 2017-07-06 16:51 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel; +Cc: famz, stefanha, qemu-block

[-- Attachment #1: Type: text/plain, Size: 436 bytes --]

On 07/06/2017 11:38 AM, Paolo Bonzini wrote:
> Code refactoring only.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  block/write-threshold.c | 28 ++++++++++++++++------------
>  1 file changed, 16 insertions(+), 12 deletions(-)
> 

Reviewed-by: Eric Blake <eblake@redhat.com>

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe Paolo Bonzini
@ 2017-07-06 16:52   ` Eric Blake
  2017-07-10 15:42   ` Stefan Hajnoczi
  1 sibling, 0 replies; 34+ messages in thread
From: Eric Blake @ 2017-07-06 16:52 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel; +Cc: famz, stefanha, qemu-block

[-- Attachment #1: Type: text/plain, Size: 581 bytes --]

On 07/06/2017 11:38 AM, Paolo Bonzini wrote:
> For simplicity, use bdrv_drained_begin/end to avoid concurrent
> writes to the write threshold, or reading it while it is being set.
> qmp_block_set_write_threshold is protected by the BQL.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  block/write-threshold.c | 9 +++------
>  1 file changed, 3 insertions(+), 6 deletions(-)
> 
Reviewed-by: Eric Blake <eblake@redhat.com>

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (10 preceding siblings ...)
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 11/11] block/snapshot: do not take AioContext lock Paolo Bonzini
@ 2017-07-06 23:48 ` no-reply
  2017-07-07  0:06   ` Fam Zheng
  2017-07-10 16:25 ` Stefan Hajnoczi
  12 siblings, 1 reply; 34+ messages in thread
From: no-reply @ 2017-07-06 23:48 UTC (permalink / raw)
  To: pbonzini; +Cc: famz, qemu-devel

Hi,

This series seems to have some coding style problems. See output below for
more information:

Subject: [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part
Message-id: 20170706163828.24082-1-pbonzini@redhat.com
Type: series

=== TEST SCRIPT BEGIN ===
#!/bin/bash

BASE=base
n=1
total=$(git log --oneline $BASE.. | wc -l)
failed=0

git config --local diff.renamelimit 0
git config --local diff.renames True

commits="$(git log --format=%H --reverse $BASE..)"
for c in $commits; do
    echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..."
    if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then
        failed=1
        echo
    fi
    n=$((n+1))
done

exit $failed
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
 * [new tag]         patchew/07010a2ad79559c412949f0005dbe3cb03d8416e.1498504812.git.ps@pks.im -> patchew/07010a2ad79559c412949f0005dbe3cb03d8416e.1498504812.git.ps@pks.im
 * [new tag]         patchew/0C9DA454-E3DC-4291-806E-9A96557DE833@gmail.com -> patchew/0C9DA454-E3DC-4291-806E-9A96557DE833@gmail.com
 * [new tag]         patchew/0bfb9ff9-b205-42ea-8f8b-936ec51bf27d@gmail.com -> patchew/0bfb9ff9-b205-42ea-8f8b-936ec51bf27d@gmail.com
 - [tag update]      patchew/1478105438-20883-1-git-send-email-prasanna.kalever@redhat.com -> patchew/1478105438-20883-1-git-send-email-prasanna.kalever@redhat.com
 - [tag update]      patchew/1478798349-28983-1-git-send-email-kwolf@redhat.com -> patchew/1478798349-28983-1-git-send-email-kwolf@redhat.com
 - [tag update]      patchew/1479108340-3453-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1479108340-3453-1-git-send-email-caoj.fnst@cn.fujitsu.com
 - [tag update]      patchew/1479133935-63848-1-git-send-email-agraf@suse.de -> patchew/1479133935-63848-1-git-send-email-agraf@suse.de
 - [tag update]      patchew/1479248275-18889-1-git-send-email-david@gibson.dropbear.id.au -> patchew/1479248275-18889-1-git-send-email-david@gibson.dropbear.id.au
 * [new tag]         patchew/1479357400-17441-1-git-send-email-alastair@au1.ibm.com -> patchew/1479357400-17441-1-git-send-email-alastair@au1.ibm.com
 - [tag update]      patchew/147939115373.23044.3882265154149942210.stgit@bahia -> patchew/147939115373.23044.3882265154149942210.stgit@bahia
 * [new tag]         patchew/1479413642-22463-1-git-send-email-eblake@redhat.com -> patchew/1479413642-22463-1-git-send-email-eblake@redhat.com
 * [new tag]         patchew/1479419887-10515-1-git-send-email-maxime.coquelin@redhat.com -> patchew/1479419887-10515-1-git-send-email-maxime.coquelin@redhat.com
 * [new tag]         patchew/1479431012-19914-1-git-send-email-anand.indukala@gmail.com -> patchew/1479431012-19914-1-git-send-email-anand.indukala@gmail.com
 * [new tag]         patchew/1479433227-29238-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1479433227-29238-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1479457368-15068-1-git-send-email-ann.zhuangyanying@huawei.com -> patchew/1479457368-15068-1-git-send-email-ann.zhuangyanying@huawei.com
 * [new tag]         patchew/1479460177-9362-1-git-send-email-thuth@redhat.com -> patchew/1479460177-9362-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1479466974-249781-1-git-send-email-imammedo@redhat.com -> patchew/1479466974-249781-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1479481289-2479-1-git-send-email-stefanha@redhat.com -> patchew/1479481289-2479-1-git-send-email-stefanha@redhat.com
 * [new tag]         patchew/1479484366-7977-1-git-send-email-mst@redhat.com -> patchew/1479484366-7977-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1479508397-8443-1-git-send-email-hpoussin@reactos.org -> patchew/1479508397-8443-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1479509016-8673-1-git-send-email-hpoussin@reactos.org -> patchew/1479509016-8673-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/147954362297.28064.5118492606031513925.stgit@bahia -> patchew/147954362297.28064.5118492606031513925.stgit@bahia
 * [new tag]         patchew/1479555831-30960-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1479555831-30960-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1479740113-26834-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1479740113-26834-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1479742168-309848-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1479742168-309848-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1479749115-21932-1-git-send-email-thuth@redhat.com -> patchew/1479749115-21932-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1479749488-31808-1-git-send-email-kwolf@redhat.com -> patchew/1479749488-31808-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1479757549-18672-1-git-send-email-hpoussin@reactos.org -> patchew/1479757549-18672-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1479766499-29972-1-git-send-email-jcody@redhat.com -> patchew/1479766499-29972-1-git-send-email-jcody@redhat.com
 * [new tag]         patchew/1479777133-23567-1-git-send-email-ehabkost@redhat.com -> patchew/1479777133-23567-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1479778365-11315-1-git-send-email-emaste@freebsd.org -> patchew/1479778365-11315-1-git-send-email-emaste@freebsd.org
 * [new tag]         patchew/1479800932-16685-1-git-send-email-peterx@redhat.com -> patchew/1479800932-16685-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1479802130-22640-1-git-send-email-peterx@redhat.com -> patchew/1479802130-22640-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1479815165-31059-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1479815165-31059-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/147981681351.30309.4854065801791462661.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/147981681351.30309.4854065801791462661.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/1479817444-6880-1-git-send-email-kwolf@redhat.com -> patchew/1479817444-6880-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1479818357-8752-1-git-send-email-kwolf@redhat.com -> patchew/1479818357-8752-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1479818564-9084-1-git-send-email-kwolf@redhat.com -> patchew/1479818564-9084-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1479830693-26676-1-git-send-email-kwolf@redhat.com -> patchew/1479830693-26676-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1479832306-26440-1-git-send-email-stefanha@redhat.com -> patchew/1479832306-26440-1-git-send-email-stefanha@redhat.com
 * [new tag]         patchew/1479835586-74394-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1479835586-74394-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1479837270-79005-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1479837270-79005-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1479853676-35995-1-git-send-email-pbonzini@redhat.com -> patchew/1479853676-35995-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1479869383-16162-1-git-send-email-david@gibson.dropbear.id.au -> patchew/1479869383-16162-1-git-send-email-david@gibson.dropbear.id.au
 * [new tag]         patchew/1479874588-1969-1-git-send-email-eblake@redhat.com -> patchew/1479874588-1969-1-git-send-email-eblake@redhat.com
 * [new tag]         patchew/1479884824-26498-1-git-send-email-peterx@redhat.com -> patchew/1479884824-26498-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1479892858-4218-1-git-send-email-peterx@redhat.com -> patchew/1479892858-4218-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1479893700-4596-1-git-send-email-ppandit@redhat.com -> patchew/1479893700-4596-1-git-send-email-ppandit@redhat.com
 * [new tag]         patchew/1479895735-5539-1-git-send-email-ppandit@redhat.com -> patchew/1479895735-5539-1-git-send-email-ppandit@redhat.com
 * [new tag]         patchew/1479896194-32672-1-git-send-email-fanc.fnst@cn.fujitsu.com -> patchew/1479896194-32672-1-git-send-email-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/1479901039-7113-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1479901039-7113-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1479901669-23165-1-git-send-email-fanc.fnst@cn.fujitsu.com -> patchew/1479901669-23165-1-git-send-email-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/1479901791-144760-1-git-send-email-arei.gonglei@huawei.com -> patchew/1479901791-144760-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1479902569-5548-1-git-send-email-marcel@redhat.com -> patchew/1479902569-5548-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1479905195-7424-2-git-send-email-rth@twiddle.net -> patchew/1479905195-7424-2-git-send-email-rth@twiddle.net
 * [new tag]         patchew/1479906121-12211-1-git-send-email-rth@twiddle.net -> patchew/1479906121-12211-1-git-send-email-rth@twiddle.net
 * [new tag]         patchew/1479907484-4988-1-git-send-email-kraxel@redhat.com -> patchew/1479907484-4988-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1479918105-15616-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1479918105-15616-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1479919041-18906-1-git-send-email-laurent@vivier.eu -> patchew/1479919041-18906-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1479920298-24983-1-git-send-email-groug@kaod.org -> patchew/1479920298-24983-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1479922617-4400-1-git-send-email-eblake@redhat.com -> patchew/1479922617-4400-1-git-send-email-eblake@redhat.com
 * [new tag]         patchew/1479923640-8423-1-git-send-email-duanj@linux.vnet.ibm.com -> patchew/1479923640-8423-1-git-send-email-duanj@linux.vnet.ibm.com
 * [new tag]         patchew/1479934532-19816-1-git-send-email-laurent@vivier.eu -> patchew/1479934532-19816-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1479957659-141601-1-git-send-email-wei.w.wang@intel.com -> patchew/1479957659-141601-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1479976802-21696-1-git-send-email-laurent@vivier.eu -> patchew/1479976802-21696-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1479983113-24108-1-git-send-email-peterx@redhat.com -> patchew/1479983113-24108-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1479987164-8301-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1479987164-8301-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1479990609-28243-1-git-send-email-liq3ea@gmail.com -> patchew/1479990609-28243-1-git-send-email-liq3ea@gmail.com
 * [new tag]         patchew/1479991949-11311-1-git-send-email-peterx@redhat.com -> patchew/1479991949-11311-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/147999378539.17505.1533664899054252389.stgit@bahia -> patchew/147999378539.17505.1533664899054252389.stgit@bahia
 * [new tag]         patchew/1480001287-17515-1-git-send-email-laurent@vivier.eu -> patchew/1480001287-17515-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1480003738-8754-1-git-send-email-Lena.Djokic@rt-rk.com -> patchew/1480003738-8754-1-git-send-email-Lena.Djokic@rt-rk.com
 * [new tag]         patchew/1480042522-16551-1-git-send-email-peterx@redhat.com -> patchew/1480042522-16551-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1480044704-5805-1-git-send-email-jinguojie@loongson.cn -> patchew/1480044704-5805-1-git-send-email-jinguojie@loongson.cn
 * [new tag]         patchew/1480046013-24788-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1480046013-24788-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1480066452-8940-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1480066452-8940-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1480069886-11703-1-git-send-email-yuval.shaia@oracle.com -> patchew/1480069886-11703-1-git-send-email-yuval.shaia@oracle.com
 * [new tag]         patchew/148007485377.16557.10831635699229968727.stgit@bahia -> patchew/148007485377.16557.10831635699229968727.stgit@bahia
 * [new tag]         patchew/1480087313-15102-1-git-send-email-ehabkost@redhat.com -> patchew/1480087313-15102-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1480108791-16178-1-git-send-email-yuval.shaia@oracle.com -> patchew/1480108791-16178-1-git-send-email-yuval.shaia@oracle.com
 * [new tag]         patchew/1480109401-19470-1-git-send-email-ehabkost@redhat.com -> patchew/1480109401-19470-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1480111556-32586-1-git-send-email-ehabkost@redhat.com -> patchew/1480111556-32586-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1480126123-161960-1-git-send-email-arei.gonglei@huawei.com -> patchew/1480126123-161960-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1480129675-165144-1-git-send-email-arei.gonglei@huawei.com -> patchew/1480129675-165144-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1480246353-10297-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1480246353-10297-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1480317522-5950-1-git-send-email-yuval.shaia@oracle.com -> patchew/1480317522-5950-1-git-send-email-yuval.shaia@oracle.com
 * [new tag]         patchew/1480319802-22842-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1480319802-22842-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1480324926-24761-1-git-send-email-yuval.shaia@oracle.com -> patchew/1480324926-24761-1-git-send-email-yuval.shaia@oracle.com
 * [new tag]         patchew/1480341071-5367-1-git-send-email-peter.maydell@linaro.org -> patchew/1480341071-5367-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1480348337-24271-1-git-send-email-francis.deslauriers@efficios.com -> patchew/1480348337-24271-1-git-send-email-francis.deslauriers@efficios.com
 * [new tag]         patchew/1480360119-12316-1-git-send-email-ppandit@redhat.com -> patchew/1480360119-12316-1-git-send-email-ppandit@redhat.com
 * [new tag]         patchew/1480372837-109736-1-git-send-email-pbonzini@redhat.com -> patchew/1480372837-109736-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1480386565-10077-1-git-send-email-liq3ea@gmail.com -> patchew/1480386565-10077-1-git-send-email-liq3ea@gmail.com
 * [new tag]         patchew/1480390462-14130-1-git-send-email-po-hsu.lin@canonical.com -> patchew/1480390462-14130-1-git-send-email-po-hsu.lin@canonical.com
 * [new tag]         patchew/1480398220-10149-1-git-send-email-peterx@redhat.com -> patchew/1480398220-10149-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1480399628-14419-1-git-send-email-jinguojie@loongson.cn -> patchew/1480399628-14419-1-git-send-email-jinguojie@loongson.cn
 * [new tag]         patchew/1480409632-6163-1-git-send-email-kraxel@redhat.com -> patchew/1480409632-6163-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1480423356-22255-1-git-send-email-kraxel@redhat.com -> patchew/1480423356-22255-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1480432054-12065-1-git-send-email-yuval.shaia@oracle.com -> patchew/1480432054-12065-1-git-send-email-yuval.shaia@oracle.com
 * [new tag]         patchew/1480436227-2211-1-git-send-email-kwolf@redhat.com -> patchew/1480436227-2211-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1480524257-28225-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1480524257-28225-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1480547134-18590-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1480547134-18590-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1480547176-19349-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1480547176-19349-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1480564455-23933-1-git-send-email-mst@redhat.com -> patchew/1480564455-23933-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1480572399-10455-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1480572399-10455-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1480575357-25056-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1480575357-25056-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1480589964-29411-1-git-send-email-w.bumiller@proxmox.com -> patchew/1480589964-29411-1-git-send-email-w.bumiller@proxmox.com
 * [new tag]         patchew/1480677386-16192-1-git-send-email-ppandit@redhat.com -> patchew/1480677386-16192-1-git-send-email-ppandit@redhat.com
 * [new tag]         patchew/1480678088-21464-1-git-send-email-ppandit@redhat.com -> patchew/1480678088-21464-1-git-send-email-ppandit@redhat.com
 * [new tag]         patchew/1480713496-11213-1-git-send-email-ehabkost@redhat.com -> patchew/1480713496-11213-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1480816817-53245-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1480816817-53245-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1480895097-60463-1-git-send-email-eric.fangyi@huawei.com -> patchew/1480895097-60463-1-git-send-email-eric.fangyi@huawei.com
 * [new tag]         patchew/1480908432-82844-1-git-send-email-arei.gonglei@huawei.com -> patchew/1480908432-82844-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1480923846-166484-1-git-send-email-longpeng2@huawei.com -> patchew/1480923846-166484-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1480926904-17596-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1480926904-17596-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1480931523-5769-1-git-send-email-jasowang@redhat.com -> patchew/1480931523-5769-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1480935840-3961-1-git-send-email-kraxel@redhat.com -> patchew/1480935840-3961-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1480937949-173580-1-git-send-email-longpeng2@huawei.com -> patchew/1480937949-173580-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/148095126363.31351.4484514300033863622.stgit@bahia -> patchew/148095126363.31351.4484514300033863622.stgit@bahia
 * [new tag]         patchew/1480956313-31322-1-git-send-email-armbru@redhat.com -> patchew/1480956313-31322-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1480960775-5002-1-git-send-email-peter.maydell@linaro.org -> patchew/1480960775-5002-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1480973521-28945-1-git-send-email-jcody@redhat.com -> patchew/1480973521-28945-1-git-send-email-jcody@redhat.com
 * [new tag]         patchew/1480991552-14360-1-git-send-email-jasowang@redhat.com -> patchew/1480991552-14360-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1481016553-69252-1-git-send-email-arei.gonglei@huawei.com -> patchew/1481016553-69252-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1481037418-10239-2-git-send-email-kwolf@redhat.com -> patchew/1481037418-10239-2-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/148103887228.22326.478406873609299999.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/148103887228.22326.478406873609299999.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/148104617887.7699.984921868108236415.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/148104617887.7699.984921868108236415.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/1481046379-32632-1-git-send-email-peter.maydell@linaro.org -> patchew/1481046379-32632-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1481047629-7763-1-git-send-email-peter.maydell@linaro.org -> patchew/1481047629-7763-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1481055300-14239-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1481055300-14239-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1481077751-106192-1-git-send-email-arei.gonglei@huawei.com -> patchew/1481077751-106192-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1481085020-2614-1-git-send-email-rth@twiddle.net -> patchew/1481085020-2614-1-git-send-email-rth@twiddle.net
 * [new tag]         patchew/1481089965-3888-1-git-send-email-peterx@redhat.com -> patchew/1481089965-3888-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1481130374-5147-1-git-send-email-vijay.kilari@gmail.com -> patchew/1481130374-5147-1-git-send-email-vijay.kilari@gmail.com
 * [new tag]         patchew/1481130858-31767-1-git-send-email-julian@codesourcery.com -> patchew/1481130858-31767-1-git-send-email-julian@codesourcery.com
 * [new tag]         patchew/1481147754-8976-1-git-send-email-duanj@linux.vnet.ibm.com -> patchew/1481147754-8976-1-git-send-email-duanj@linux.vnet.ibm.com
 * [new tag]         patchew/1481164408-194252-1-git-send-email-longpeng2@huawei.com -> patchew/1481164408-194252-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1481183716-7342-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1481183716-7342-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1481183802-31153-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1481183802-31153-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1481224870-18247-1-git-send-email-duanj@linux.vnet.ibm.com -> patchew/1481224870-18247-1-git-send-email-duanj@linux.vnet.ibm.com
 * [new tag]         patchew/1481239260-21595-1-git-send-email-laurent@vivier.eu -> patchew/1481239260-21595-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1481263496-8004-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1481263496-8004-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/148127558476.2633.13433882390740185948.stgit@bahia -> patchew/148127558476.2633.13433882390740185948.stgit@bahia
 * [new tag]         patchew/1481301020-21777-1-git-send-email-peter.maydell@linaro.org -> patchew/1481301020-21777-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1481306681-5760-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1481306681-5760-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1481306777-5441-1-git-send-email-ehabkost@redhat.com -> patchew/1481306777-5441-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1481463385-15898-1-git-send-email-jinguojie@loongson.cn -> patchew/1481463385-15898-1-git-send-email-jinguojie@loongson.cn
 * [new tag]         patchew/1481527639-17520-1-git-send-email-longpeng2@huawei.com -> patchew/1481527639-17520-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1481530092-20240-1-git-send-email-longpeng2@huawei.com -> patchew/1481530092-20240-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1481567461-2341-1-git-send-email-ehabkost@redhat.com -> patchew/1481567461-2341-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1481575745-26120-1-git-send-email-ehabkost@redhat.com -> patchew/1481575745-26120-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1481585316-31612-1-git-send-email-lvivier@redhat.com -> patchew/1481585316-31612-1-git-send-email-lvivier@redhat.com
 * [new tag]         patchew/1481612513-28556-1-git-send-email-longpeng2@huawei.com -> patchew/1481612513-28556-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1481613903-17467-1-git-send-email-peterx@redhat.com -> patchew/1481613903-17467-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1481616728-148412-1-git-send-email-yuri.benditovich@daynix.com -> patchew/1481616728-148412-1-git-send-email-yuri.benditovich@daynix.com
 * [new tag]         patchew/1481625384-15077-1-git-send-email-peter.maydell@linaro.org -> patchew/1481625384-15077-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1481625780-39164-1-git-send-email-longpeng2@huawei.com -> patchew/1481625780-39164-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1481633076-24521-1-git-send-email-thuth@redhat.com -> patchew/1481633076-24521-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1481658281-24243-1-git-send-email-hpoussin@reactos.org -> patchew/1481658281-24243-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1481681345-32424-1-git-send-email-peterx@redhat.com -> patchew/1481681345-32424-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1481683803-10051-1-git-send-email-yi.y.sun@linux.intel.com -> patchew/1481683803-10051-1-git-send-email-yi.y.sun@linux.intel.com
 * [new tag]         patchew/1481706465-5636-1-git-send-email-thuth@redhat.com -> patchew/1481706465-5636-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1481732391-882-1-git-send-email-vlad.lungu@windriver.com -> patchew/1481732391-882-1-git-send-email-vlad.lungu@windriver.com
 * [new tag]         patchew/1481738323-9147-1-git-send-email-ehabkost@redhat.com -> patchew/1481738323-9147-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1481742422-15969-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1481742422-15969-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1481751857-464-1-git-send-email-thuth@redhat.com -> patchew/1481751857-464-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1481795122-11795-1-git-send-email-vlad.lungu@windriver.com -> patchew/1481795122-11795-1-git-send-email-vlad.lungu@windriver.com
 * [new tag]         patchew/1481796182-12670-1-git-send-email-vlad.lungu@windriver.com -> patchew/1481796182-12670-1-git-send-email-vlad.lungu@windriver.com
 * [new tag]         patchew/1481805124-16242-1-git-send-email-vlad.lungu@windriver.com -> patchew/1481805124-16242-1-git-send-email-vlad.lungu@windriver.com
 * [new tag]         patchew/1481810693-13733-1-git-send-email-skiver.cloud.yzy@gmail.com -> patchew/1481810693-13733-1-git-send-email-skiver.cloud.yzy@gmail.com
 * [new tag]         patchew/1481810970-9692-1-git-send-email-clg@kaod.org -> patchew/1481810970-9692-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1481822644-617-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1481822644-617-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1481856403-23599-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1481856403-23599-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1481882024-10016-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1481882024-10016-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1481894559-13974-1-git-send-email-marcin.krzeminski@nokia.com -> patchew/1481894559-13974-1-git-send-email-marcin.krzeminski@nokia.com
 * [new tag]         patchew/1481894862-14102-1-git-send-email-marcin.krzeminski@nokia.com -> patchew/1481894862-14102-1-git-send-email-marcin.krzeminski@nokia.com
 * [new tag]         patchew/148190196925.25504.12830466137601571123.stgit@bahia -> patchew/148190196925.25504.12830466137601571123.stgit@bahia
 * [new tag]         patchew/1481922841-4324-1-git-send-email-mst@redhat.com -> patchew/1481922841-4324-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1481971427-11094-1-git-send-email-wei.w.wang@intel.com -> patchew/1481971427-11094-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1482127152-84732-1-git-send-email-wei.w.wang@intel.com -> patchew/1482127152-84732-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1482137486-9843-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1482137486-9843-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1482140507-23607-1-git-send-email-vlad.lungu@windriver.com -> patchew/1482140507-23607-1-git-send-email-vlad.lungu@windriver.com
 * [new tag]         patchew/1482145554-88823-1-git-send-email-wei.w.wang@intel.com -> patchew/1482145554-88823-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1482156623-9111-1-git-send-email-peterx@redhat.com -> patchew/1482156623-9111-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/148215768690.13973.9042496691140000163.stgit@bahia -> patchew/148215768690.13973.9042496691140000163.stgit@bahia
 * [new tag]         patchew/1482158486-18597-1-git-send-email-peterx@redhat.com -> patchew/1482158486-18597-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1482187106-85065-1-git-send-email-sochin.jiang@huawei.com -> patchew/1482187106-85065-1-git-send-email-sochin.jiang@huawei.com
 * [new tag]         patchew/1482255793-19057-1-git-send-email-ehabkost@redhat.com -> patchew/1482255793-19057-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1482268300-10082-1-git-send-email-andrew.smirnov@gmail.com -> patchew/1482268300-10082-1-git-send-email-andrew.smirnov@gmail.com
 * [new tag]         patchew/1482268598-27422-1-git-send-email-thuth@redhat.com -> patchew/1482268598-27422-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1482269164-14642-1-git-send-email-minyard@acm.org -> patchew/1482269164-14642-1-git-send-email-minyard@acm.org
 * [new tag]         patchew/1482294077-29807-1-git-send-email-peterx@redhat.com -> patchew/1482294077-29807-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1482307137-5106-1-git-send-email-peterx@redhat.com -> patchew/1482307137-5106-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1482308491-25426-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1482308491-25426-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1482326402-6963-1-git-send-email-vlad.lungu@windriver.com -> patchew/1482326402-6963-1-git-send-email-vlad.lungu@windriver.com
 * [new tag]         patchew/1482332102-131788-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1482332102-131788-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1482375688-20872-1-git-send-email-arei.gonglei@huawei.com -> patchew/1482375688-20872-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1482376362-13804-1-git-send-email-arei.gonglei@huawei.com -> patchew/1482376362-13804-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1482377823-20184-1-git-send-email-arei.gonglei@huawei.com -> patchew/1482377823-20184-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1482400096-23078-1-git-send-email-peterx@redhat.com -> patchew/1482400096-23078-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1482417047-15588-1-git-send-email-minyard@acm.org -> patchew/1482417047-15588-1-git-send-email-minyard@acm.org
 * [new tag]         patchew/148243173750.7321.8231977784466776952.stgit@fimbulvetr.bsc.es -> patchew/148243173750.7321.8231977784466776952.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/1482434287-26044-1-git-send-email-minyard@acm.org -> patchew/1482434287-26044-1-git-send-email-minyard@acm.org
 * [new tag]         patchew/1482459390-14386-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1482459390-14386-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1482502027-5544-1-git-send-email-minyard@acm.org -> patchew/1482502027-5544-1-git-send-email-minyard@acm.org
 * [new tag]         patchew/1482544850-6544-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1482544850-6544-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1482559948-22772-1-git-send-email-arei.gonglei@huawei.com -> patchew/1482559948-22772-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1482579633-3393-1-git-send-email-laurent@vivier.eu -> patchew/1482579633-3393-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/148278447806.8988.12706825771606357198.stgit@fimbulvetr.bsc.es -> patchew/148278447806.8988.12706825771606357198.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/148278746972.1404.10574428039766667311.stgit@fimbulvetr.bsc.es -> patchew/148278746972.1404.10574428039766667311.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/1482824413-25837-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1482824413-25837-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1482831516-21862-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1482831516-21862-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1482852077-19397-1-git-send-email-peter.maydell@linaro.org -> patchew/1482852077-19397-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/148285303159.12721.5833400768046299304.stgit@fimbulvetr.bsc.es -> patchew/148285303159.12721.5833400768046299304.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/1482861241-17678-1-git-send-email-laurent@vivier.eu -> patchew/1482861241-17678-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1482866480-26208-1-git-send-email-ehabkost@redhat.com -> patchew/1482866480-26208-1-git-send-email-ehabkost@redhat.com
 * [new tag]         patchew/1482869621-24808-1-git-send-email-nutarojj@ornl.gov -> patchew/1482869621-24808-1-git-send-email-nutarojj@ornl.gov
 * [new tag]         patchew/1482896059-12020-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1482896059-12020-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/148292774946.380.3638349228328753405.stgit@fimbulvetr.bsc.es -> patchew/148292774946.380.3638349228328753405.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/148293406236.28901.9490775858242540392.stgit@fimbulvetr.bsc.es -> patchew/148293406236.28901.9490775858242540392.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/148293987753.31645.8166717498506500137.stgit@fimbulvetr.bsc.es -> patchew/148293987753.31645.8166717498506500137.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/148294246378.10801.8881527920302104439.stgit@fimbulvetr.bsc.es -> patchew/148294246378.10801.8881527920302104439.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/1482946636-3743-1-git-send-email-laurent@vivier.eu -> patchew/1482946636-3743-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/148295045448.19871.9819696634619157347.stgit@fimbulvetr.bsc.es -> patchew/148295045448.19871.9819696634619157347.stgit@fimbulvetr.bsc.es
 * [new tag]         patchew/1482974377-14938-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1482974377-14938-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1482999086-59795-1-git-send-email-liq3ea@gmail.com -> patchew/1482999086-59795-1-git-send-email-liq3ea@gmail.com
 * [new tag]         patchew/1483003721-65360-1-git-send-email-liq3ea@gmail.com -> patchew/1483003721-65360-1-git-send-email-liq3ea@gmail.com
 * [new tag]         patchew/1483049536-21548-1-git-send-email-hpoussin@reactos.org -> patchew/1483049536-21548-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1483092559-24488-1-git-send-email-jasowang@redhat.com -> patchew/1483092559-24488-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1483108391-199542-1-git-send-email-imammedo@redhat.com -> patchew/1483108391-199542-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1483175588-17006-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1483175588-17006-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1483194856-14079-1-git-send-email-hpoussin@reactos.org -> patchew/1483194856-14079-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1483263585-8101-1-git-send-email-hpoussin@reactos.org -> patchew/1483263585-8101-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1483311635-27905-1-git-send-email-laurent@vivier.eu -> patchew/1483311635-27905-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1483371890-289981-1-git-send-email-imammedo@redhat.com -> patchew/1483371890-289981-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1483403591-2564-1-git-send-email-longpeng2@huawei.com -> patchew/1483403591-2564-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1483426203-16196-1-git-send-email-arei.gonglei@huawei.com -> patchew/1483426203-16196-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1483428594-28880-1-git-send-email-peterx@redhat.com -> patchew/1483428594-28880-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1483455154-8106-1-git-send-email-kraxel@redhat.com -> patchew/1483455154-8106-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1483493521-9604-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1483493521-9604-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1483513091-30661-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1483513091-30661-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1483518107-13218-1-git-send-email-groug@kaod.org -> patchew/1483518107-13218-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1483528883-1753-1-git-send-email-kraxel@redhat.com -> patchew/1483528883-1753-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1483533149-12807-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1483533149-12807-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1483559838-8797-1-git-send-email-marcel@redhat.com -> patchew/1483559838-8797-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1483568308-28868-1-git-send-email-nutarojj@ornl.gov -> patchew/1483568308-28868-1-git-send-email-nutarojj@ornl.gov
 * [new tag]         patchew/1483577381-38088-1-git-send-email-longpeng2@huawei.com -> patchew/1483577381-38088-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1483592275-4496-1-git-send-email-jinguojie@loongson.cn -> patchew/1483592275-4496-1-git-send-email-jinguojie@loongson.cn
 * [new tag]         patchew/1483596532-14552-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1483596532-14552-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1483601042-6435-1-git-send-email-jitendra.kolhe@hpe.com -> patchew/1483601042-6435-1-git-send-email-jitendra.kolhe@hpe.com
 * [new tag]         patchew/1483610987-24331-1-git-send-email-peterx@redhat.com -> patchew/1483610987-24331-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1483628868-10496-1-git-send-email-nutarojj@ornl.gov -> patchew/1483628868-10496-1-git-send-email-nutarojj@ornl.gov
 * [new tag]         patchew/1483630188-32021-1-git-send-email-lvivier@redhat.com -> patchew/1483630188-32021-1-git-send-email-lvivier@redhat.com
 * [new tag]         patchew/1483633930-7103-1-git-send-email-amit.shah@redhat.com -> patchew/1483633930-7103-1-git-send-email-amit.shah@redhat.com
 * [new tag]         patchew/1483653417-17439-1-git-send-email-hpoussin@reactos.org -> patchew/1483653417-17439-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1483672082-5512-1-git-send-email-peterx@redhat.com -> patchew/1483672082-5512-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1483673544-10663-1-git-send-email-jasowang@redhat.com -> patchew/1483673544-10663-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1483675573-12636-1-git-send-email-peterx@redhat.com -> patchew/1483675573-12636-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1483690133-25104-1-git-send-email-lprosek@redhat.com -> patchew/1483690133-25104-1-git-send-email-lprosek@redhat.com
 * [new tag]         patchew/1483692945-9866-1-git-send-email-kraxel@redhat.com -> patchew/1483692945-9866-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1483724714-5469-1-git-send-email-peter.maydell@linaro.org -> patchew/1483724714-5469-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1483802623-5507-1-git-send-email-hpoussin@reactos.org -> patchew/1483802623-5507-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1483900123-7103-1-git-send-email-rami.rosen@intel.com -> patchew/1483900123-7103-1-git-send-email-rami.rosen@intel.com
 * [new tag]         patchew/1483952153-7221-1-git-send-email-peterx@redhat.com -> patchew/1483952153-7221-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1483962824-29185-1-git-send-email-peter.maydell@linaro.org -> patchew/1483962824-29185-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1483966644-14049-1-git-send-email-thuth@redhat.com -> patchew/1483966644-14049-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1483967385-12891-1-git-send-email-kraxel@redhat.com -> patchew/1483967385-12891-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1483969123-14839-1-git-send-email-peter.maydell@linaro.org -> patchew/1483969123-14839-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1483969476-7172-1-git-send-email-kwolf@redhat.com -> patchew/1483969476-7172-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1483970138-20360-1-git-send-email-kraxel@redhat.com -> patchew/1483970138-20360-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1483977924-14522-1-git-send-email-peter.maydell@linaro.org -> patchew/1483977924-14522-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1483979087-32663-1-git-send-email-clg@kaod.org -> patchew/1483979087-32663-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1483980309-30821-1-git-send-email-peter.maydell@linaro.org -> patchew/1483980309-30821-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1483981368-9965-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1483981368-9965-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1483981521-6789-1-git-send-email-peter.maydell@linaro.org -> patchew/1483981521-6789-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1483987437-12084-1-git-send-email-peter.maydell@linaro.org -> patchew/1483987437-12084-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1483988759-14606-1-git-send-email-peter.maydell@linaro.org -> patchew/1483988759-14606-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484032051-11619-1-git-send-email-he.chen@linux.intel.com -> patchew/1484032051-11619-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1484039965-25907-1-git-send-email-rami.rosen@intel.com -> patchew/1484039965-25907-1-git-send-email-rami.rosen@intel.com
 * [new tag]         patchew/1484052273-23815-1-git-send-email-gerg@uclinux.org -> patchew/1484052273-23815-1-git-send-email-gerg@uclinux.org
 * [new tag]         patchew/1484052795-158195-1-git-send-email-imammedo@redhat.com -> patchew/1484052795-158195-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1484054281-26139-1-git-send-email-kraxel@redhat.com -> patchew/1484054281-26139-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/148405872846.9522.17126828396099315346.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/148405872846.9522.17126828396099315346.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/1484061494-428-1-git-send-email-kraxel@redhat.com -> patchew/1484061494-428-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1484073849-32666-1-git-send-email-peter.maydell@linaro.org -> patchew/1484073849-32666-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484076114-5594-1-git-send-email-peter.maydell@linaro.org -> patchew/1484076114-5594-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484109132-3331-1-git-send-email-jasowang@redhat.com -> patchew/1484109132-3331-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1484124524-481-1-git-send-email-liang.z.li@intel.com -> patchew/1484124524-481-1-git-send-email-liang.z.li@intel.com
 * [new tag]         patchew/148412457273.22750.983275587432075569.stgit@bahia -> patchew/148412457273.22750.983275587432075569.stgit@bahia
 * [new tag]         patchew/1484127227-26496-1-git-send-email-kraxel@redhat.com -> patchew/1484127227-26496-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1484130518-18873-1-git-send-email-kraxel@redhat.com -> patchew/1484130518-18873-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1484132292-21458-1-git-send-email-kraxel@redhat.com -> patchew/1484132292-21458-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1484132542-22520-1-git-send-email-kraxel@redhat.com -> patchew/1484132542-22520-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1484134214-32640-1-git-send-email-gerg@uclinux.org -> patchew/1484134214-32640-1-git-send-email-gerg@uclinux.org
 * [new tag]         patchew/1484135195-29232-1-git-send-email-marcel@redhat.com -> patchew/1484135195-29232-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1484137136-8021-1-git-send-email-marcel@redhat.com -> patchew/1484137136-8021-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1484160658-15419-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1484160658-15419-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1484163327-111841-1-git-send-email-pbonzini@redhat.com -> patchew/1484163327-111841-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1484164269-27941-1-git-send-email-kraxel@redhat.com -> patchew/1484164269-27941-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1484167250-16089-1-git-send-email-thuth@redhat.com -> patchew/1484167250-16089-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484169085-2962-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1484169085-2962-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1484204658-28058-1-git-send-email-wei@redhat.com -> patchew/1484204658-28058-1-git-send-email-wei@redhat.com
 * [new tag]         patchew/1484207095-16224-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1484207095-16224-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1484210849-27697-1-git-send-email-hpoussin@reactos.org -> patchew/1484210849-27697-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1484216631-30723-1-git-send-email-thuth@redhat.com -> patchew/1484216631-30723-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484224732-1345-1-git-send-email-thuth@redhat.com -> patchew/1484224732-1345-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484229292-8415-1-git-send-email-peterx@redhat.com -> patchew/1484229292-8415-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1484236354-9640-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1484236354-9640-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1484240245-10625-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1484240245-10625-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1484244501-20283-1-git-send-email-laurent@vivier.eu -> patchew/1484244501-20283-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1484247815-15279-1-git-send-email-peter.maydell@linaro.org -> patchew/1484247815-15279-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484256243-1982-1-git-send-email-mst@redhat.com -> patchew/1484256243-1982-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484256713-10902-1-git-send-email-mst@redhat.com -> patchew/1484256713-10902-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484270047-24579-1-git-send-email-felipe@nutanix.com -> patchew/1484270047-24579-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1484272411-28073-1-git-send-email-he.chen@linux.intel.com -> patchew/1484272411-28073-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1484276800-26814-1-git-send-email-peterx@redhat.com -> patchew/1484276800-26814-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1484288903-18807-1-git-send-email-sjitindarsingh@gmail.com -> patchew/1484288903-18807-1-git-send-email-sjitindarsingh@gmail.com
 * [new tag]         patchew/1484291524-1261-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1484291524-1261-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1484295285-8809-1-git-send-email-kraxel@redhat.com -> patchew/1484295285-8809-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1484305370-6220-1-git-send-email-lprosek@redhat.com -> patchew/1484305370-6220-1-git-send-email-lprosek@redhat.com
 * [new tag]         patchew/1484309555-1935-1-git-send-email-thuth@redhat.com -> patchew/1484309555-1935-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484324249-2991-1-git-send-email-mst@redhat.com -> patchew/1484324249-2991-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/148432790018.21615.8366831585737978346.stgit@bahia -> patchew/148432790018.21615.8366831585737978346.stgit@bahia
 * [new tag]         patchew/1484328738-21149-1-git-send-email-ard.biesheuvel@linaro.org -> patchew/1484328738-21149-1-git-send-email-ard.biesheuvel@linaro.org
 * [new tag]         patchew/148434048970.31446.17153056211582691244.stgit@frigg.lan -> patchew/148434048970.31446.17153056211582691244.stgit@frigg.lan
 * [new tag]         patchew/1484375301-159804-1-git-send-email-longpeng2@huawei.com -> patchew/1484375301-159804-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1484376662-32063-1-git-send-email-thuth@redhat.com -> patchew/1484376662-32063-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484384878-29179-1-git-send-email-laurent@vivier.eu -> patchew/1484384878-29179-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1484387976-167704-1-git-send-email-longpeng2@huawei.com -> patchew/1484387976-167704-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1484467275-27919-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1484467275-27919-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1484477462-14088-1-git-send-email-zhaoshenglong@huawei.com -> patchew/1484477462-14088-1-git-send-email-zhaoshenglong@huawei.com
 * [new tag]         patchew/1484514236-11584-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1484514236-11584-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1484514707-11781-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1484514707-11781-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1484516225-12958-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1484516225-12958-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1484556005-29701-1-git-send-email-peterx@redhat.com -> patchew/1484556005-29701-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1484558821-15512-1-git-send-email-zhaoshenglong@huawei.com -> patchew/1484558821-15512-1-git-send-email-zhaoshenglong@huawei.com
 * [new tag]         patchew/1484566314-3987-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1484566314-3987-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1484579832-18589-1-git-send-email-pl@kamp.de -> patchew/1484579832-18589-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1484589515-26353-1-git-send-email-peter.maydell@linaro.org -> patchew/1484589515-26353-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484592360-23640-1-git-send-email-peter.maydell@linaro.org -> patchew/1484592360-23640-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484619334-10488-1-git-send-email-zhaoshenglong@huawei.com -> patchew/1484619334-10488-1-git-send-email-zhaoshenglong@huawei.com
 * [new tag]         patchew/1484621964-187372-1-git-send-email-longpeng2@huawei.com -> patchew/1484621964-187372-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1484625660-3312-1-git-send-email-jasowang@redhat.com -> patchew/1484625660-3312-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1484633936-25344-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1484633936-25344-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1484654591-11108-1-git-send-email-thuth@redhat.com -> patchew/1484654591-11108-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484657864-21708-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1484657864-21708-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1484660269-14363-1-git-send-email-thuth@redhat.com -> patchew/1484660269-14363-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484664152-24446-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1484664152-24446-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1484666391-15089-1-git-send-email-skiver.cloud.yzy@gmail.com -> patchew/1484666391-15089-1-git-send-email-skiver.cloud.yzy@gmail.com
 * [new tag]         patchew/1484692001-14835-1-git-send-email-nutarojj@ornl.gov -> patchew/1484692001-14835-1-git-send-email-nutarojj@ornl.gov
 * [new tag]         patchew/1484702052-7900-1-git-send-email-skiver.cloud.yzy@gmail.com -> patchew/1484702052-7900-1-git-send-email-skiver.cloud.yzy@gmail.com
 * [new tag]         patchew/1484702885-11437-1-git-send-email-skiver.cloud.yzy@gmail.com -> patchew/1484702885-11437-1-git-send-email-skiver.cloud.yzy@gmail.com
 * [new tag]         patchew/1484739954-86833-1-git-send-email-phil@philjordan.eu -> patchew/1484739954-86833-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1484743207-10721-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1484743207-10721-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1484743490-24721-1-git-send-email-thuth@redhat.com -> patchew/1484743490-24721-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484746795-19523-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1484746795-19523-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1484749457-87117-1-git-send-email-phil@philjordan.eu -> patchew/1484749457-87117-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1484749850-87206-1-git-send-email-phil@philjordan.eu -> patchew/1484749850-87206-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1484750925-176844-1-git-send-email-imammedo@redhat.com -> patchew/1484750925-176844-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1484751948-21387-1-git-send-email-christian.ehrhardt@canonical.com -> patchew/1484751948-21387-1-git-send-email-christian.ehrhardt@canonical.com
 * [new tag]         patchew/1484757581-13124-1-git-send-email-clg@kaod.org -> patchew/1484757581-13124-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1484758531-15093-1-git-send-email-clg@kaod.org -> patchew/1484758531-15093-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1484759609-264075-1-git-send-email-imammedo@redhat.com -> patchew/1484759609-264075-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1484768294-23336-1-git-send-email-mst@redhat.com -> patchew/1484768294-23336-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484771412-28024-1-git-send-email-mst@redhat.com -> patchew/1484771412-28024-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484772931-16272-1-git-send-email-mst@redhat.com -> patchew/1484772931-16272-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484773521-16530-1-git-send-email-laurent@vivier.eu -> patchew/1484773521-16530-1-git-send-email-laurent@vivier.eu
 * [new tag]         patchew/1484802878-22681-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1484802878-22681-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1484816804-12598-1-git-send-email-armbru@redhat.com -> patchew/1484816804-12598-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1484817932-14452-1-git-send-email-peterx@redhat.com -> patchew/1484817932-14452-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1484834995-26826-1-git-send-email-peter.maydell@linaro.org -> patchew/1484834995-26826-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484836667-26460-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1484836667-26460-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1484837637-16896-1-git-send-email-armbru@redhat.com -> patchew/1484837637-16896-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1484841384-9938-1-git-send-email-pl@kamp.de -> patchew/1484841384-9938-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1484843730-23848-1-git-send-email-pl@kamp.de -> patchew/1484843730-23848-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1484844230-24490-1-git-send-email-pl@kamp.de -> patchew/1484844230-24490-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1484859633-24889-1-git-send-email-mst@redhat.com -> patchew/1484859633-24889-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484859998-25074-1-git-send-email-mst@redhat.com -> patchew/1484859998-25074-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484860116-25361-1-git-send-email-mst@redhat.com -> patchew/1484860116-25361-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1484880649-12600-1-git-send-email-zhaoshenglong@huawei.com -> patchew/1484880649-12600-1-git-send-email-zhaoshenglong@huawei.com
 * [new tag]         patchew/1484881670-24237-1-git-send-email-jasowang@redhat.com -> patchew/1484881670-24237-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1484884080-28836-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1484884080-28836-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1484894128-7871-1-git-send-email-jasowang@redhat.com -> patchew/1484894128-7871-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1484903866-17940-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1484903866-17940-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1484905570-10520-1-git-send-email-pl@kamp.de -> patchew/1484905570-10520-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1484914681-2986-1-git-send-email-thuth@redhat.com -> patchew/1484914681-2986-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484915417-10499-1-git-send-email-phil@philjordan.eu -> patchew/1484915417-10499-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1484917276-7107-1-git-send-email-thuth@redhat.com -> patchew/1484917276-7107-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484917736-32056-1-git-send-email-peterx@redhat.com -> patchew/1484917736-32056-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1484917864-7928-1-git-send-email-thuth@redhat.com -> patchew/1484917864-7928-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484921496-11257-1-git-send-email-phil@philjordan.eu -> patchew/1484921496-11257-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1484927639-3841-1-git-send-email-thuth@redhat.com -> patchew/1484927639-3841-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1484937883-1068-1-git-send-email-peter.maydell@linaro.org -> patchew/1484937883-1068-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1484938222-1423-1-git-send-email-peter.maydell@linaro.org -> patchew/1484938222-1423-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/148500887769.19567.3784247823786701992.stgit@bahia.lan -> patchew/148500887769.19567.3784247823786701992.stgit@bahia.lan
 * [new tag]         patchew/1485069471-3680-1-git-send-email-pagupta@redhat.com -> patchew/1485069471-3680-1-git-send-email-pagupta@redhat.com
 * [new tag]         patchew/1485132904-17632-1-git-send-email-zhaoshenglong@huawei.com -> patchew/1485132904-17632-1-git-send-email-zhaoshenglong@huawei.com
 * [new tag]         patchew/1485150895-19753-1-git-send-email-thuth@redhat.com -> patchew/1485150895-19753-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/148516117357.20705.15695597290038452727.stgit@bahia.lan -> patchew/148516117357.20705.15695597290038452727.stgit@bahia.lan
 * [new tag]         patchew/1485164923-17736-1-git-send-email-armbru@redhat.com -> patchew/1485164923-17736-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1485167210-4757-1-git-send-email-kraxel@redhat.com -> patchew/1485167210-4757-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485178976-15225-1-git-send-email-pagupta@redhat.com -> patchew/1485178976-15225-1-git-send-email-pagupta@redhat.com
 * [new tag]         patchew/1485180353-11544-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1485180353-11544-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1485183295-10242-1-git-send-email-w.bumiller@proxmox.com -> patchew/1485183295-10242-1-git-send-email-w.bumiller@proxmox.com
 * [new tag]         patchew/1485186641-12220-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1485186641-12220-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1485199220-3298-1-git-send-email-marcel@redhat.com -> patchew/1485199220-3298-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1485207141-1941-1-git-send-email-quintela@redhat.com -> patchew/1485207141-1941-1-git-send-email-quintela@redhat.com
 * [new tag]         patchew/1485244792-11248-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1485244792-11248-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1485244958-25911-1-git-send-email-thuth@redhat.com -> patchew/1485244958-25911-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485248026-9628-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1485248026-9628-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1485248428-575-1-git-send-email-kraxel@redhat.com -> patchew/1485248428-575-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485250969-5472-1-git-send-email-thuth@redhat.com -> patchew/1485250969-5472-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485253217-7405-1-git-send-email-kraxel@redhat.com -> patchew/1485253217-7405-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485253571-19058-1-git-send-email-peterx@redhat.com -> patchew/1485253571-19058-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1485255307-11799-1-git-send-email-thuth@redhat.com -> patchew/1485255307-11799-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485255993-6322-1-git-send-email-peter.maydell@linaro.org -> patchew/1485255993-6322-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1485256239-12219-1-git-send-email-kraxel@redhat.com -> patchew/1485256239-12219-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485257020-18542-1-git-send-email-paul.durrant@citrix.com -> patchew/1485257020-18542-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1485258485-22844-1-git-send-email-thuth@redhat.com -> patchew/1485258485-22844-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485262161-18543-1-git-send-email-pl@kamp.de -> patchew/1485262161-18543-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1485266538-10119-1-git-send-email-peter.maydell@linaro.org -> patchew/1485266538-10119-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1485266747-4694-1-git-send-email-paul.durrant@citrix.com -> patchew/1485266747-4694-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1485272138-23249-1-git-send-email-w.bumiller@proxmox.com -> patchew/1485272138-23249-1-git-send-email-w.bumiller@proxmox.com
 * [new tag]         patchew/1485277734-16871-1-git-send-email-mst@redhat.com -> patchew/1485277734-16871-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1485287742-31374-1-git-send-email-atar4qemu@gmail.com -> patchew/1485287742-31374-1-git-send-email-atar4qemu@gmail.com
 * [new tag]         patchew/1485297322-10595-1-git-send-email-mst@redhat.com -> patchew/1485297322-10595-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/148530022936.13158.7140713668400986309.stgit@bahia -> patchew/148530022936.13158.7140713668400986309.stgit@bahia
 * [new tag]         patchew/1485327241-15104-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1485327241-15104-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1485328025-3783-1-git-send-email-kraxel@redhat.com -> patchew/1485328025-3783-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485333658-23035-1-git-send-email-thuth@redhat.com -> patchew/1485333658-23035-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485333886-6111-1-git-send-email-marcel@redhat.com -> patchew/1485333886-6111-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1485338957-16939-1-git-send-email-kraxel@redhat.com -> patchew/1485338957-16939-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485338996-17095-1-git-send-email-kraxel@redhat.com -> patchew/1485338996-17095-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485346353-23814-1-git-send-email-w.bumiller@proxmox.com -> patchew/1485346353-23814-1-git-send-email-w.bumiller@proxmox.com
 * [new tag]         patchew/1485352082-16830-1-git-send-email-groug@kaod.org -> patchew/1485352082-16830-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1485352137-29367-1-git-send-email-w.bumiller@proxmox.com -> patchew/1485352137-29367-1-git-send-email-w.bumiller@proxmox.com
 * [new tag]         patchew/1485365075-32702-1-git-send-email-phil@philjordan.eu -> patchew/1485365075-32702-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1485371038-737-1-git-send-email-marcel@redhat.com -> patchew/1485371038-737-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1485377117-18105-1-git-send-email-thuth@redhat.com -> patchew/1485377117-18105-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485381149-19044-1-git-send-email-mst@redhat.com -> patchew/1485381149-19044-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1485422212-31546-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1485422212-31546-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1485423445-12302-1-git-send-email-paul.durrant@citrix.com -> patchew/1485423445-12302-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1485436265-12573-1-git-send-email-thuth@redhat.com -> patchew/1485436265-12573-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485440557-10384-1-git-send-email-lprosek@redhat.com -> patchew/1485440557-10384-1-git-send-email-lprosek@redhat.com
 * [new tag]         patchew/1485443388-27253-1-git-send-email-armbru@redhat.com -> patchew/1485443388-27253-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1485444454-30749-1-git-send-email-armbru@redhat.com -> patchew/1485444454-30749-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1485445171-16935-1-git-send-email-imbrenda@linux.vnet.ibm.com -> patchew/1485445171-16935-1-git-send-email-imbrenda@linux.vnet.ibm.com
 * [new tag]         patchew/1485447262-27014-1-git-send-email-mst@redhat.com -> patchew/1485447262-27014-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1485452251-1593-1-git-send-email-clg@kaod.org -> patchew/1485452251-1593-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1485502157-25445-1-git-send-email-armbru@redhat.com -> patchew/1485502157-25445-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1485504213-21632-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1485504213-21632-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1485523252-88288-1-git-send-email-pbonzini@redhat.com -> patchew/1485523252-88288-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1485527778-29560-1-git-send-email-thuth@redhat.com -> patchew/1485527778-29560-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485528688-29914-1-git-send-email-thuth@redhat.com -> patchew/1485528688-29914-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485531137-2362-1-git-send-email-peter.maydell@linaro.org -> patchew/1485531137-2362-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1485531620-121182-1-git-send-email-pbonzini@redhat.com -> patchew/1485531620-121182-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1485540693-31723-1-git-send-email-imbrenda@linux.vnet.ibm.com -> patchew/1485540693-31723-1-git-send-email-imbrenda@linux.vnet.ibm.com
 * [new tag]         patchew/1485586582-6490-1-git-send-email-huth@tuxfamily.org -> patchew/1485586582-6490-1-git-send-email-huth@tuxfamily.org
 * [new tag]         patchew/148577817618.10533.9740628265078537215.stgit@bahia.lan -> patchew/148577817618.10533.9740628265078537215.stgit@bahia.lan
 * [new tag]         patchew/1485778921-20869-1-git-send-email-thuth@redhat.com -> patchew/1485778921-20869-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485778972-20924-1-git-send-email-thuth@redhat.com -> patchew/1485778972-20924-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485787271-8754-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1485787271-8754-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1485788877-3823-1-git-send-email-abologna@redhat.com -> patchew/1485788877-3823-1-git-send-email-abologna@redhat.com
 * [new tag]         patchew/1485790607-31399-1-git-send-email-kraxel@redhat.com -> patchew/1485790607-31399-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485800032-24404-1-git-send-email-hch@lst.de -> patchew/1485800032-24404-1-git-send-email-hch@lst.de
 * [new tag]         patchew/1485826335-15686-1-git-send-email-skiver.cloud.yzy@gmail.com -> patchew/1485826335-15686-1-git-send-email-skiver.cloud.yzy@gmail.com
 * [new tag]         patchew/1485852398-2327-1-git-send-email-thuth@redhat.com -> patchew/1485852398-2327-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485868319-16151-1-git-send-email-thuth@redhat.com -> patchew/1485868319-16151-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485870106-25016-1-git-send-email-kraxel@redhat.com -> patchew/1485870106-25016-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485870329-79428-1-git-send-email-eswierk@skyportsystems.com -> patchew/1485870329-79428-1-git-send-email-eswierk@skyportsystems.com
 * [new tag]         patchew/1485875745-27741-1-git-send-email-wei@redhat.com -> patchew/1485875745-27741-1-git-send-email-wei@redhat.com
 * [new tag]         patchew/1485876994-14555-1-git-send-email-pl@kamp.de -> patchew/1485876994-14555-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1485877831-28786-1-git-send-email-kraxel@redhat.com -> patchew/1485877831-28786-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485878172-15463-1-git-send-email-pl@kamp.de -> patchew/1485878172-15463-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1485879287-12548-1-git-send-email-peter.maydell@linaro.org -> patchew/1485879287-12548-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1485880595-16376-1-git-send-email-thuth@redhat.com -> patchew/1485880595-16376-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485888144-16531-1-git-send-email-mst@redhat.com -> patchew/1485888144-16531-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1485893872-26524-1-git-send-email-mst@redhat.com -> patchew/1485893872-26524-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1485900317-3256-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1485900317-3256-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1485916178-17838-1-git-send-email-douly.fnst@cn.fujitsu.com -> patchew/1485916178-17838-1-git-send-email-douly.fnst@cn.fujitsu.com
 * [new tag]         patchew/1485938101-26602-1-git-send-email-kraxel@redhat.com -> patchew/1485938101-26602-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485939884-39956-1-git-send-email-borntraeger@de.ibm.com -> patchew/1485939884-39956-1-git-send-email-borntraeger@de.ibm.com
 * [new tag]         patchew/1485940779-24225-1-git-send-email-kraxel@redhat.com -> patchew/1485940779-24225-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1485942829-10756-1-git-send-email-pl@kamp.de -> patchew/1485942829-10756-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1485943606-13998-1-git-send-email-lprosek@redhat.com -> patchew/1485943606-13998-1-git-send-email-lprosek@redhat.com
 * [new tag]         patchew/1485946146-21639-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1485946146-21639-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1485946990-11090-1-git-send-email-thuth@redhat.com -> patchew/1485946990-11090-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1485951502-28774-1-git-send-email-batuzovk@ispras.ru -> patchew/1485951502-28774-1-git-send-email-batuzovk@ispras.ru
 * [new tag]         patchew/1485968933-9162-1-git-send-email-armbru@redhat.com -> patchew/1485968933-9162-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1485969640-8149-1-git-send-email-abologna@redhat.com -> patchew/1485969640-8149-1-git-send-email-abologna@redhat.com
 * [new tag]         patchew/1486023789-28995-1-git-send-email-kraxel@redhat.com -> patchew/1486023789-28995-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486035372-3621-1-git-send-email-kraxel@redhat.com -> patchew/1486035372-3621-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486046099-17726-1-git-send-email-batuzovk@ispras.ru -> patchew/1486046099-17726-1-git-send-email-batuzovk@ispras.ru
 * [new tag]         patchew/1486046738-26059-1-git-send-email-abologna@redhat.com -> patchew/1486046738-26059-1-git-send-email-abologna@redhat.com
 * [new tag]         patchew/1486047907-26685-1-git-send-email-kraxel@redhat.com -> patchew/1486047907-26685-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486051604-32310-1-git-send-email-pl@kamp.de -> patchew/1486051604-32310-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1486065742-28639-1-git-send-email-peter.maydell@linaro.org -> patchew/1486065742-28639-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486073152-27152-1-git-send-email-marcel@redhat.com -> patchew/1486073152-27152-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1486104705-13761-1-git-send-email-kraxel@redhat.com -> patchew/1486104705-13761-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486106298-3699-1-git-send-email-peterx@redhat.com -> patchew/1486106298-3699-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1486110164-13797-1-git-send-email-peterx@redhat.com -> patchew/1486110164-13797-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1486115213-24250-1-git-send-email-abologna@redhat.com -> patchew/1486115213-24250-1-git-send-email-abologna@redhat.com
 * [new tag]         patchew/1486115402-9288-1-git-send-email-mjt@msgid.tls.msk.ru -> patchew/1486115402-9288-1-git-send-email-mjt@msgid.tls.msk.ru
 * [new tag]         patchew/1486115549-9398-1-git-send-email-mjt@msgid.tls.msk.ru -> patchew/1486115549-9398-1-git-send-email-mjt@msgid.tls.msk.ru
 * [new tag]         patchew/1486116298-25046-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1486116298-25046-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1486118198-8965-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1486118198-8965-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1486120416-11566-1-git-send-email-amit.shah@redhat.com -> patchew/1486120416-11566-1-git-send-email-amit.shah@redhat.com
 * [new tag]         patchew/1486120433-11628-1-git-send-email-amit.shah@redhat.com -> patchew/1486120433-11628-1-git-send-email-amit.shah@redhat.com
 * [new tag]         patchew/1486123043-26493-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1486123043-26493-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1486125060-24923-1-git-send-email-gerg@uclinux.org -> patchew/1486125060-24923-1-git-send-email-gerg@uclinux.org
 * [new tag]         patchew/1486141597-13941-1-git-send-email-fred.konrad@greensocs.com -> patchew/1486141597-13941-1-git-send-email-fred.konrad@greensocs.com
 * [new tag]         patchew/1486144135-4894-1-git-send-email-peter.maydell@linaro.org -> patchew/1486144135-4894-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486144722-6021-1-git-send-email-peter.maydell@linaro.org -> patchew/1486144722-6021-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486146260-8092-1-git-send-email-peter.maydell@linaro.org -> patchew/1486146260-8092-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486148371-11692-1-git-send-email-peter.maydell@linaro.org -> patchew/1486148371-11692-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486159277-25949-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1486159277-25949-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1486198784-31523-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1486198784-31523-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1486210863-14924-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1486210863-14924-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1486249533-5260-1-git-send-email-peter.maydell@linaro.org -> patchew/1486249533-5260-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486249715-5513-1-git-send-email-peter.maydell@linaro.org -> patchew/1486249715-5513-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486360515-22989-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1486360515-22989-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1486377000-25701-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1486377000-25701-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1486380501-13431-1-git-send-email-kraxel@redhat.com -> patchew/1486380501-13431-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486382139-30630-1-git-send-email-kraxel@redhat.com -> patchew/1486382139-30630-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486391007-10116-1-git-send-email-kraxel@redhat.com -> patchew/1486391007-10116-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486399909-16338-1-git-send-email-quintela@redhat.com -> patchew/1486399909-16338-1-git-send-email-quintela@redhat.com
 * [new tag]         patchew/148640163738.20116.15256467457494672940.stgit@bahia -> patchew/148640163738.20116.15256467457494672940.stgit@bahia
 * [new tag]         patchew/1486454676-29112-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1486454676-29112-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1486456099-7345-1-git-send-email-peterx@redhat.com -> patchew/1486456099-7345-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1486479940-163258-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1486479940-163258-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1486492645-27803-1-git-send-email-peter.maydell@linaro.org -> patchew/1486492645-27803-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486504171-26807-1-git-send-email-wei@redhat.com -> patchew/1486504171-26807-1-git-send-email-wei@redhat.com
 * [new tag]         patchew/1486531462-13882-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1486531462-13882-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1486560712-44171-1-git-send-email-agraf@suse.de -> patchew/1486560712-44171-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1486564125-31366-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1486564125-31366-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1486569864-17005-1-git-send-email-armbru@redhat.com -> patchew/1486569864-17005-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1486575331-14455-1-git-send-email-abologna@redhat.com -> patchew/1486575331-14455-1-git-send-email-abologna@redhat.com
 * [new tag]         patchew/1486576658-29719-1-git-send-email-thuth@redhat.com -> patchew/1486576658-29719-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486576669-29760-1-git-send-email-thuth@redhat.com -> patchew/1486576669-29760-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486578717-30324-1-git-send-email-thuth@redhat.com -> patchew/1486578717-30324-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486589255-24577-1-git-send-email-juro.bystricky@intel.com -> patchew/1486589255-24577-1-git-send-email-juro.bystricky@intel.com
 * [new tag]         patchew/1486590191-10949-1-git-send-email-juro.bystricky@intel.com -> patchew/1486590191-10949-1-git-send-email-juro.bystricky@intel.com
 * [new tag]         patchew/1486595166-34097-1-git-send-email-juro.bystricky@intel.com -> patchew/1486595166-34097-1-git-send-email-juro.bystricky@intel.com
 * [new tag]         patchew/1486618411-7018-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1486618411-7018-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1486623844-13140-1-git-send-email-liqiang6-s@360.cn -> patchew/1486623844-13140-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1486636445-24109-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1486636445-24109-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1486638881-17290-1-git-send-email-thuth@redhat.com -> patchew/1486638881-17290-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486642218-18520-1-git-send-email-thuth@redhat.com -> patchew/1486642218-18520-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486644810-33181-1-git-send-email-agraf@suse.de -> patchew/1486644810-33181-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1486645277-4724-1-git-send-email-kraxel@redhat.com -> patchew/1486645277-4724-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486648058-520-1-git-send-email-clg@kaod.org -> patchew/1486648058-520-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1486649607-31248-1-git-send-email-thuth@redhat.com -> patchew/1486649607-31248-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486653206-14553-1-git-send-email-den@openvz.org -> patchew/1486653206-14553-1-git-send-email-den@openvz.org
 * [new tag]         patchew/1486653934-14805-1-git-send-email-den@openvz.org -> patchew/1486653934-14805-1-git-send-email-den@openvz.org
 * [new tag]         patchew/1486658842-7143-1-git-send-email-kraxel@redhat.com -> patchew/1486658842-7143-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486666321-21536-1-git-send-email-juro.bystricky@intel.com -> patchew/1486666321-21536-1-git-send-email-juro.bystricky@intel.com
 * [new tag]         patchew/1486668676-24680-1-git-send-email-peter.maydell@linaro.org -> patchew/1486668676-24680-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486693159-29029-1-git-send-email-liqiang6-s@360.cn -> patchew/1486693159-29029-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1486704360-27361-1-git-send-email-sjitindarsingh@gmail.com -> patchew/1486704360-27361-1-git-send-email-sjitindarsingh@gmail.com
 * [new tag]         patchew/1486722639-6586-1-git-send-email-thuth@redhat.com -> patchew/1486722639-6586-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486739699-1076-1-git-send-email-thuth@redhat.com -> patchew/1486739699-1076-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486744104-15590-1-git-send-email-peter.maydell@linaro.org -> patchew/1486744104-15590-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486747506-15876-1-git-send-email-abologna@redhat.com -> patchew/1486747506-15876-1-git-send-email-abologna@redhat.com
 * [new tag]         patchew/1486750082-12324-1-git-send-email-peter.maydell@linaro.org -> patchew/1486750082-12324-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486750977-15211-1-git-send-email-thuth@redhat.com -> patchew/1486750977-15211-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1486925722-19264-1-git-send-email-juro.bystricky@intel.com -> patchew/1486925722-19264-1-git-send-email-juro.bystricky@intel.com
 * [new tag]         patchew/1486939835-3452-1-git-send-email-huth@tuxfamily.org -> patchew/1486939835-3452-1-git-send-email-huth@tuxfamily.org
 * [new tag]         patchew/1486947403-22548-1-git-send-email-juro.bystricky@intel.com -> patchew/1486947403-22548-1-git-send-email-juro.bystricky@intel.com
 * [new tag]         patchew/1486956627-11123-1-git-send-email-sjitindarsingh@gmail.com -> patchew/1486956627-11123-1-git-send-email-sjitindarsingh@gmail.com
 * [new tag]         patchew/1486969742-16539-1-git-send-email-den@openvz.org -> patchew/1486969742-16539-1-git-send-email-den@openvz.org
 * [new tag]         patchew/1486973851-21645-1-git-send-email-kraxel@redhat.com -> patchew/1486973851-21645-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1486976456-17657-1-git-send-email-jitendra.kolhe@hpe.com -> patchew/1486976456-17657-1-git-send-email-jitendra.kolhe@hpe.com
 * [new tag]         patchew/1486978404-17509-1-git-send-email-clg@kaod.org -> patchew/1486978404-17509-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1486979689-230770-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1486979689-230770-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1486996099-15820-1-git-send-email-peter.maydell@linaro.org -> patchew/1486996099-15820-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1486997062-23227-1-git-send-email-clg@kaod.org -> patchew/1486997062-23227-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1487001847-19082-1-git-send-email-pl@kamp.de -> patchew/1487001847-19082-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1487006388-7966-1-git-send-email-quintela@redhat.com -> patchew/1487006388-7966-1-git-send-email-quintela@redhat.com
 * [new tag]         patchew/1487006583-24350-1-git-send-email-kwolf@redhat.com -> patchew/1487006583-24350-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1487009088-23891-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1487009088-23891-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1487053524-18674-1-git-send-email-den@openvz.org -> patchew/1487053524-18674-1-git-send-email-den@openvz.org
 * [new tag]         patchew/1487058692-2789-1-git-send-email-peterx@redhat.com -> patchew/1487058692-2789-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1487067971-10443-1-git-send-email-armbru@redhat.com -> patchew/1487067971-10443-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487079565-3548-1-git-send-email-pl@kamp.de -> patchew/1487079565-3548-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1487083704-51658-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1487083704-51658-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1487091579-67092-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1487091579-67092-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1487092068-16562-1-git-send-email-imbrenda@linux.vnet.ibm.com -> patchew/1487092068-16562-1-git-send-email-imbrenda@linux.vnet.ibm.com
 * [new tag]         patchew/1487097476-14259-1-git-send-email-nutarojj@ornl.gov -> patchew/1487097476-14259-1-git-send-email-nutarojj@ornl.gov
 * [new tag]         patchew/1487130802-27953-1-git-send-email-jasowang@redhat.com -> patchew/1487130802-27953-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1487140636-19955-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1487140636-19955-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1487147657-166092-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1487147657-166092-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1487150504-30335-1-git-send-email-thuth@redhat.com -> patchew/1487150504-30335-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1487153147-11530-1-git-send-email-armbru@redhat.com -> patchew/1487153147-11530-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487153430-17260-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1487153430-17260-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1487156985-18321-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1487156985-18321-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1487161136-9018-1-git-send-email-armbru@redhat.com -> patchew/1487161136-9018-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487170693-28224-1-git-send-email-vsementsov@virtuozzo.com -> patchew/1487170693-28224-1-git-send-email-vsementsov@virtuozzo.com
 * [new tag]         patchew/1487179434-13306-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1487179434-13306-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1487191768-8489-1-git-send-email-mst@redhat.com -> patchew/1487191768-8489-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1487204850-16448-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1487204850-16448-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1487224821-120916-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1487224821-120916-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1487248176-29602-1-git-send-email-dmitry@daynix.com -> patchew/1487248176-29602-1-git-send-email-dmitry@daynix.com
 * [new tag]         patchew/1487250819-23764-1-git-send-email-kraxel@redhat.com -> patchew/1487250819-23764-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487253461-269218-1-git-send-email-imammedo@redhat.com -> patchew/1487253461-269218-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1487255413-14196-1-git-send-email-fred.konrad@greensocs.com -> patchew/1487255413-14196-1-git-send-email-fred.konrad@greensocs.com
 * [new tag]         patchew/1487255507-106654-1-git-send-email-pbonzini@redhat.com -> patchew/1487255507-106654-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1487262963-11519-1-git-send-email-peter.maydell@linaro.org -> patchew/1487262963-11519-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1487266008-13492-1-git-send-email-peter.maydell@linaro.org -> patchew/1487266008-13492-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1487266760-80500-1-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1487266760-80500-1-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/1487266760-80500-2-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1487266760-80500-2-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/1487313115-9510-1-git-send-email-vijay.kilari@gmail.com -> patchew/1487313115-9510-1-git-send-email-vijay.kilari@gmail.com
 * [new tag]         patchew/1487318764-29513-1-git-send-email-pagupta@redhat.com -> patchew/1487318764-29513-1-git-send-email-pagupta@redhat.com
 * [new tag]         patchew/1487326479-8664-1-git-send-email-abologna@redhat.com -> patchew/1487326479-8664-1-git-send-email-abologna@redhat.com
 * [new tag]         patchew/1487339599-20910-1-git-send-email-eric.auger@redhat.com -> patchew/1487339599-20910-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1487341525-5785-1-git-send-email-eric.auger@redhat.com -> patchew/1487341525-5785-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1487344340-30471-1-git-send-email-peter.maydell@linaro.org -> patchew/1487344340-30471-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1487347224-8667-1-git-send-email-pl@kamp.de -> patchew/1487347224-8667-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1487349541-10201-1-git-send-email-pl@kamp.de -> patchew/1487349541-10201-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1487354284-7587-1-git-send-email-nreilly@blackberry.com -> patchew/1487354284-7587-1-git-send-email-nreilly@blackberry.com
 * [new tag]         patchew/1487357968-31000-1-git-send-email-peter.maydell@linaro.org -> patchew/1487357968-31000-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1487361200-29966-1-git-send-email-mst@redhat.com -> patchew/1487361200-29966-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1487362554-5688-1-git-send-email-armbru@redhat.com -> patchew/1487362554-5688-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487362633-25018-1-git-send-email-fred.konrad@greensocs.com -> patchew/1487362633-25018-1-git-send-email-fred.konrad@greensocs.com
 * [new tag]         patchew/1487363905-9480-1-git-send-email-armbru@redhat.com -> patchew/1487363905-9480-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487461713-23092-1-git-send-email-huth@tuxfamily.org -> patchew/1487461713-23092-1-git-send-email-huth@tuxfamily.org
 * [new tag]         patchew/1487563478-22265-1-git-send-email-sjitindarsingh@gmail.com -> patchew/1487563478-22265-1-git-send-email-sjitindarsingh@gmail.com
 * [new tag]         patchew/1487577721-31084-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1487577721-31084-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1487585521-19445-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1487585521-19445-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1487591031-28991-1-git-send-email-kraxel@redhat.com -> patchew/1487591031-28991-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487597065-27023-1-git-send-email-kraxel@redhat.com -> patchew/1487597065-27023-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487597638-28323-1-git-send-email-armbru@redhat.com -> patchew/1487597638-28323-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487599939-4776-1-git-send-email-kraxel@redhat.com -> patchew/1487599939-4776-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/148760155821.31154.13876757160410915057.stgit@bahia.lan -> patchew/148760155821.31154.13876757160410915057.stgit@bahia.lan
 * [new tag]         patchew/1487603763-14932-1-git-send-email-kraxel@redhat.com -> patchew/1487603763-14932-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487614915-18710-1-git-send-email-den@openvz.org -> patchew/1487614915-18710-1-git-send-email-den@openvz.org
 * [new tag]         patchew/1487616072-9226-1-git-send-email-peter.maydell@linaro.org -> patchew/1487616072-9226-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1487622662-62984-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1487622662-62984-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1487623279-29930-1-git-send-email-hpoussin@reactos.org -> patchew/1487623279-29930-1-git-send-email-hpoussin@reactos.org
 * [new tag]         patchew/1487623393-2492-1-git-send-email-marcel@redhat.com -> patchew/1487623393-2492-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1487645041-28919-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1487645041-28919-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1487648239-83616-1-git-send-email-liqiang6-s@360.cn -> patchew/1487648239-83616-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1487659615-15820-1-git-send-email-xyjxie@linux.vnet.ibm.com -> patchew/1487659615-15820-1-git-send-email-xyjxie@linux.vnet.ibm.com
 * [new tag]         patchew/1487661385-7720-1-git-send-email-kraxel@redhat.com -> patchew/1487661385-7720-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487663858-11731-1-git-send-email-kraxel@redhat.com -> patchew/1487663858-11731-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487663871-11859-1-git-send-email-kraxel@redhat.com -> patchew/1487663871-11859-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487665107-88004-1-git-send-email-liqiang6-s@360.cn -> patchew/1487665107-88004-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1487669841-13668-1-git-send-email-kraxel@redhat.com -> patchew/1487669841-13668-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487674859-26249-1-git-send-email-armbru@redhat.com -> patchew/1487674859-26249-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487679663-3264-1-git-send-email-kraxel@redhat.com -> patchew/1487679663-3264-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487680191-13096-1-git-send-email-pl@kamp.de -> patchew/1487680191-13096-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1487680479-15132-1-git-send-email-armbru@redhat.com -> patchew/1487680479-15132-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487681108-14452-1-git-send-email-eric.auger@redhat.com -> patchew/1487681108-14452-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1487682332-29154-1-git-send-email-kraxel@redhat.com -> patchew/1487682332-29154-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487683100-16013-1-git-send-email-eric.auger@redhat.com -> patchew/1487683100-16013-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1487684021-22713-1-git-send-email-peter.maydell@linaro.org -> patchew/1487684021-22713-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1487689130-30373-1-git-send-email-kwolf@redhat.com -> patchew/1487689130-30373-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1487708048-2131-1-git-send-email-armbru@redhat.com -> patchew/1487708048-2131-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487709988-14322-1-git-send-email-armbru@redhat.com -> patchew/1487709988-14322-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487711458-18198-1-git-send-email-eric.auger@redhat.com -> patchew/1487711458-18198-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1487715299-21102-1-git-send-email-kraxel@redhat.com -> patchew/1487715299-21102-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487722868-9111-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1487722868-9111-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1487735198-127300-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1487735198-127300-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1487742565-2513-1-git-send-email-peterx@redhat.com -> patchew/1487742565-2513-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1487755788-16415-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1487755788-16415-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/148776029578.5865.5785337570950575739.stgit@bahia -> patchew/148776029578.5865.5785337570950575739.stgit@bahia
 * [new tag]         patchew/1487760990-115925-1-git-send-email-liqiang6-s@360.cn -> patchew/1487760990-115925-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1487763883-4877-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1487763883-4877-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1487767351-9190-1-git-send-email-kraxel@redhat.com -> patchew/1487767351-9190-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487784248-112130-1-git-send-email-imammedo@redhat.com -> patchew/1487784248-112130-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1487790898-24921-1-git-send-email-armbru@redhat.com -> patchew/1487790898-24921-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487834070-31374-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1487834070-31374-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1487843773-22344-1-git-send-email-jitendra.kolhe@hpe.com -> patchew/1487843773-22344-1-git-send-email-jitendra.kolhe@hpe.com
 * [new tag]         patchew/1487850673-26455-1-git-send-email-vijay.kilari@gmail.com -> patchew/1487850673-26455-1-git-send-email-vijay.kilari@gmail.com
 * [new tag]         patchew/1487851157-9354-1-git-send-email-marcel@redhat.com -> patchew/1487851157-9354-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1487861635-17560-1-git-send-email-paul.durrant@citrix.com -> patchew/1487861635-17560-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1487864414-25485-1-git-send-email-kraxel@redhat.com -> patchew/1487864414-25485-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487875968-23454-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1487875968-23454-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1487876014-23543-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1487876014-23543-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1487879642-16139-1-git-send-email-armbru@redhat.com -> patchew/1487879642-16139-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487886317-27400-1-git-send-email-armbru@redhat.com -> patchew/1487886317-27400-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1487895752-28659-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1487895752-28659-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1487907103-32350-1-git-send-email-jitendra.kolhe@hpe.com -> patchew/1487907103-32350-1-git-send-email-jitendra.kolhe@hpe.com
 * [new tag]         patchew/1487910561-17825-1-git-send-email-peterx@redhat.com -> patchew/1487910561-17825-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1487920971-16519-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1487920971-16519-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1487928416-131310-1-git-send-email-imammedo@redhat.com -> patchew/1487928416-131310-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1487937300-33744-2-git-send-email-yongbok.kim@imgtec.com -> patchew/1487937300-33744-2-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1487943877-17318-1-git-send-email-kraxel@redhat.com -> patchew/1487943877-17318-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1487958030-51417-1-git-send-email-pbonzini@redhat.com -> patchew/1487958030-51417-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1487960230-18054-1-git-send-email-kwolf@redhat.com -> patchew/1487960230-18054-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1487990764-27397-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1487990764-27397-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1488011202-32121-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1488011202-32121-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1488145424-14974-1-git-send-email-armbru@redhat.com -> patchew/1488145424-14974-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488148156-2036-1-git-send-email-atar4qemu@gmail.com -> patchew/1488148156-2036-1-git-send-email-atar4qemu@gmail.com
 * [new tag]         patchew/148814889214.28146.16915712763478774662.stgit@bahia -> patchew/148814889214.28146.16915712763478774662.stgit@bahia
 * [new tag]         patchew/1488171164-28319-1-git-send-email-xyjxie@linux.vnet.ibm.com -> patchew/1488171164-28319-1-git-send-email-xyjxie@linux.vnet.ibm.com
 * [new tag]         patchew/1488193394-28453-1-git-send-email-pl@kamp.de -> patchew/1488193394-28453-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1488200143-2140-1-git-send-email-armbru@redhat.com -> patchew/1488200143-2140-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488201146-19580-1-git-send-email-marcel@redhat.com -> patchew/1488201146-19580-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1488205773-30436-1-git-send-email-clg@kaod.org -> patchew/1488205773-30436-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1488208291-14775-1-git-send-email-kraxel@redhat.com -> patchew/1488208291-14775-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488212323-26882-1-git-send-email-kraxel@redhat.com -> patchew/1488212323-26882-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488218699-31035-1-git-send-email-peter.maydell@linaro.org -> patchew/1488218699-31035-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1488226184-9044-1-git-send-email-kwolf@redhat.com -> patchew/1488226184-9044-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1488236421-30983-1-git-send-email-groug@kaod.org -> patchew/1488236421-30983-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1488254059-22716-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1488254059-22716-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1488259090-30034-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1488259090-30034-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1488271971-12624-1-git-send-email-thuth@redhat.com -> patchew/1488271971-12624-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1488274334-6387-1-git-send-email-kraxel@redhat.com -> patchew/1488274334-6387-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488275176-16613-1-git-send-email-groug@kaod.org -> patchew/1488275176-16613-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1488276185-31168-1-git-send-email-fred.konrad@greensocs.com -> patchew/1488276185-31168-1-git-send-email-fred.konrad@greensocs.com
 * [new tag]         patchew/1488277840-18608-1-git-send-email-groug@kaod.org -> patchew/1488277840-18608-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1488285607-23657-1-git-send-email-pl@kamp.de -> patchew/1488285607-23657-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1488286469-9381-1-git-send-email-kwolf@redhat.com -> patchew/1488286469-9381-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1488288927-4607-1-git-send-email-pl@kamp.de -> patchew/1488288927-4607-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1488289786-22754-1-git-send-email-kraxel@redhat.com -> patchew/1488289786-22754-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488291209-29430-1-git-send-email-marcel@redhat.com -> patchew/1488291209-29430-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1488293711-14195-1-git-send-email-peter.maydell@linaro.org -> patchew/1488293711-14195-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1488302176-19463-1-git-send-email-peter.maydell@linaro.org -> patchew/1488302176-19463-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1488303560-18803-1-git-send-email-armbru@redhat.com -> patchew/1488303560-18803-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488303601-23741-1-git-send-email-thuth@redhat.com -> patchew/1488303601-23741-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1488308796-28832-1-git-send-email-armbru@redhat.com -> patchew/1488308796-28832-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488314205-16264-1-git-send-email-kwolf@redhat.com -> patchew/1488314205-16264-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1488329807-11193-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1488329807-11193-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1488341440-4347-1-git-send-email-jasowang@redhat.com -> patchew/1488341440-4347-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1488354251-20802-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1488354251-20802-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1488376297-19711-1-git-send-email-kraxel@redhat.com -> patchew/1488376297-19711-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488381854-7275-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1488381854-7275-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1488382850-19252-1-git-send-email-kraxel@redhat.com -> patchew/1488382850-19252-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488425538-13785-1-git-send-email-peterx@redhat.com -> patchew/1488425538-13785-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1488427170-28050-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1488427170-28050-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1488448458-4976-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1488448458-4976-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1488449293-80280-1-git-send-email-liqiang6-s@360.cn -> patchew/1488449293-80280-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1488452986-24501-1-git-send-email-paul.durrant@citrix.com -> patchew/1488452986-24501-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1488463829-26839-1-git-send-email-nikunj@linux.vnet.ibm.com -> patchew/1488463829-26839-1-git-send-email-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/1488472983-9108-1-git-send-email-felipe@nutanix.com -> patchew/1488472983-9108-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1488479153-21203-1-git-send-email-felipe@nutanix.com -> patchew/1488479153-21203-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1488491046-2549-1-git-send-email-armbru@redhat.com -> patchew/1488491046-2549-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488517304-23131-1-git-send-email-he.chen@linux.intel.com -> patchew/1488517304-23131-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1488531088-12483-1-git-send-email-jasowang@redhat.com -> patchew/1488531088-12483-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1488531980-13235-1-git-send-email-jasowang@redhat.com -> patchew/1488531980-13235-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1488540021-35506-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1488540021-35506-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1488541671-26740-1-git-send-email-paul.durrant@citrix.com -> patchew/1488541671-26740-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1488542374-1256-1-git-send-email-peter.maydell@linaro.org -> patchew/1488542374-1256-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1488544368-30622-1-git-send-email-armbru@redhat.com -> patchew/1488544368-30622-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488545463-19776-1-git-send-email-clg@kaod.org -> patchew/1488545463-19776-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1488555707-14669-1-git-send-email-pbonzini@redhat.com -> patchew/1488555707-14669-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1488556233-31246-1-git-send-email-peter.maydell@linaro.org -> patchew/1488556233-31246-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/148855786023.23661.6584039229850547004.stgit@bahia -> patchew/148855786023.23661.6584039229850547004.stgit@bahia
 * [new tag]         patchew/1488558530-21016-1-git-send-email-pbonzini@redhat.com -> patchew/1488558530-21016-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1488558530-21016-3-git-send-email-pbonzini@redhat.com -> patchew/1488558530-21016-3-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/148856193073.554.6631259860971664030.stgit@bahia -> patchew/148856193073.554.6631259860971664030.stgit@bahia
 * [new tag]         patchew/148856356236.7604.4296371092878661257.stgit@bahia.lan -> patchew/148856356236.7604.4296371092878661257.stgit@bahia.lan
 * [new tag]         patchew/148856422757.9841.6298006998523421948.stgit@bahia.lan -> patchew/148856422757.9841.6298006998523421948.stgit@bahia.lan
 * [new tag]         patchew/1488583977-32253-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1488583977-32253-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/148862487677.5452.160308730808722965.stgit@bahia.lan -> patchew/148862487677.5452.160308730808722965.stgit@bahia.lan
 * [new tag]         patchew/1488702958-24336-1-git-send-email-armbru@redhat.com -> patchew/1488702958-24336-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488770972-322500-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1488770972-322500-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1488777954-4578-1-git-send-email-jasowang@redhat.com -> patchew/1488777954-4578-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1488787422-30487-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1488787422-30487-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/148878895545.4635.12311472774377490920.stgit@bahia -> patchew/148878895545.4635.12311472774377490920.stgit@bahia
 * [new tag]         patchew/1488789111-27340-1-git-send-email-kraxel@redhat.com -> patchew/1488789111-27340-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488800894-22421-1-git-send-email-eric.auger@redhat.com -> patchew/1488800894-22421-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1488809515-4047-1-git-send-email-armbru@redhat.com -> patchew/1488809515-4047-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488810230-31945-1-git-send-email-kraxel@redhat.com -> patchew/1488810230-31945-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488817322-11397-1-git-send-email-kwolf@redhat.com -> patchew/1488817322-11397-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1488822850-23070-1-git-send-email-groug@kaod.org -> patchew/1488822850-23070-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1488826849-32384-1-git-send-email-armbru@redhat.com -> patchew/1488826849-32384-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488871237-12332-1-git-send-email-armbru@redhat.com -> patchew/1488871237-12332-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488875257-7870-1-git-send-email-caoj.fnst@cn.fujitsu.com -> patchew/1488875257-7870-1-git-send-email-caoj.fnst@cn.fujitsu.com
 * [new tag]         patchew/1488875361-4959-1-git-send-email-jasowang@redhat.com -> patchew/1488875361-4959-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1488876018-31576-1-git-send-email-kraxel@redhat.com -> patchew/1488876018-31576-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1488876478-6889-1-git-send-email-jasowang@redhat.com -> patchew/1488876478-6889-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1488877751-13419-1-git-send-email-jasowang@redhat.com -> patchew/1488877751-13419-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1488878620-30617-1-git-send-email-clg@kaod.org -> patchew/1488878620-30617-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1488884134-29190-1-git-send-email-paul.durrant@citrix.com -> patchew/1488884134-29190-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1488896348-13560-1-git-send-email-borntraeger@de.ibm.com -> patchew/1488896348-13560-1-git-send-email-borntraeger@de.ibm.com
 * [new tag]         patchew/1488900045-26344-1-git-send-email-armbru@redhat.com -> patchew/1488900045-26344-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1488901251-16214-1-git-send-email-kwolf@redhat.com -> patchew/1488901251-16214-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1488903794-10789-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1488903794-10789-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1488970371-8865-1-git-send-email-clg@kaod.org -> patchew/1488970371-8865-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1488975205-26312-1-git-send-email-thuth@redhat.com -> patchew/1488975205-26312-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1488985872-22447-1-git-send-email-yang.zhong@intel.com -> patchew/1488985872-22447-1-git-send-email-yang.zhong@intel.com
 * [new tag]         patchew/1488999936-16898-1-git-send-email-thuth@redhat.com -> patchew/1488999936-16898-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1489003123-3641-1-git-send-email-thuth@redhat.com -> patchew/1489003123-3641-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/148900626714.27090.1616990932333159904.stgit@brijesh-build-machine -> patchew/148900626714.27090.1616990932333159904.stgit@brijesh-build-machine
 * [new tag]         patchew/1489045207-27706-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1489045207-27706-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1489048710-22084-1-git-send-email-kraxel@redhat.com -> patchew/1489048710-22084-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489050661-17989-1-git-send-email-kraxel@redhat.com -> patchew/1489050661-17989-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489059542-14232-1-git-send-email-kwolf@redhat.com -> patchew/1489059542-14232-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1489079383-11162-1-git-send-email-ard.biesheuvel@linaro.org -> patchew/1489079383-11162-1-git-send-email-ard.biesheuvel@linaro.org
 * [new tag]         patchew/1489084673-31595-1-git-send-email-thuth@redhat.com -> patchew/1489084673-31595-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1489084689-19008-1-git-send-email-igor.druzhinin@citrix.com -> patchew/1489084689-19008-1-git-send-email-igor.druzhinin@citrix.com
 * [new tag]         patchew/1489119213-977-1-git-send-email-peterx@redhat.com -> patchew/1489119213-977-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1489141097-28587-1-git-send-email-he.chen@linux.intel.com -> patchew/1489141097-28587-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1489151370-15453-1-git-send-email-peterx@redhat.com -> patchew/1489151370-15453-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1489153475-14888-1-git-send-email-yang.zhong@intel.com -> patchew/1489153475-14888-1-git-send-email-yang.zhong@intel.com
 * [new tag]         patchew/1489176412-30529-1-git-send-email-igor.druzhinin@citrix.com -> patchew/1489176412-30529-1-git-send-email-igor.druzhinin@citrix.com
 * [new tag]         patchew/1489233245-27057-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1489233245-27057-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1489273293-22586-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1489273293-22586-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1489273313-22628-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1489273313-22628-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1489298291-25154-1-git-send-email-phil@philjordan.eu -> patchew/1489298291-25154-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1489345956-29167-1-git-send-email-mst@redhat.com -> patchew/1489345956-29167-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1489381017-15733-1-git-send-email-gerg@uclinux.org -> patchew/1489381017-15733-1-git-send-email-gerg@uclinux.org
 * [new tag]         patchew/1489414630-21609-1-git-send-email-ard.biesheuvel@linaro.org -> patchew/1489414630-21609-1-git-send-email-ard.biesheuvel@linaro.org
 * [new tag]         patchew/1489415605-13105-1-git-send-email-clg@kaod.org -> patchew/1489415605-13105-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1489416892-2719-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1489416892-2719-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1489416908-3771-1-git-send-email-kwolf@redhat.com -> patchew/1489416908-3771-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1489434313-11639-1-git-send-email-igor.druzhinin@citrix.com -> patchew/1489434313-11639-1-git-send-email-igor.druzhinin@citrix.com
 * [new tag]         patchew/1489460502-6686-1-git-send-email-jasowang@redhat.com -> patchew/1489460502-6686-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1489476305-27139-1-git-send-email-jasowang@redhat.com -> patchew/1489476305-27139-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1489477952-6901-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1489477952-6901-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1489478243-10366-1-git-send-email-jemmy858585@gmail.com -> patchew/1489478243-10366-1-git-send-email-jemmy858585@gmail.com
 * [new tag]         patchew/1489478550-19431-1-git-send-email-jasowang@redhat.com -> patchew/1489478550-19431-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1489480018-11443-1-git-send-email-kraxel@redhat.com -> patchew/1489480018-11443-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489488980-130668-1-git-send-email-liqiang6-s@360.cn -> patchew/1489488980-130668-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1489491125-23648-1-git-send-email-peter.maydell@linaro.org -> patchew/1489491125-23648-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1489492012-8002-1-git-send-email-xiecl.fnst@cn.fujitsu.com -> patchew/1489492012-8002-1-git-send-email-xiecl.fnst@cn.fujitsu.com
 * [new tag]         patchew/1489494419-14340-1-git-send-email-kraxel@redhat.com -> patchew/1489494419-14340-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489494514-15606-1-git-send-email-kraxel@redhat.com -> patchew/1489494514-15606-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489496187-624-1-git-send-email-peterx@redhat.com -> patchew/1489496187-624-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1489507437-32301-1-git-send-email-kwolf@redhat.com -> patchew/1489507437-32301-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1489507451-32356-1-git-send-email-kwolf@redhat.com -> patchew/1489507451-32356-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1489508300-48184-1-git-send-email-pbonzini@redhat.com -> patchew/1489508300-48184-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1489509310-24166-1-git-send-email-igor.druzhinin@citrix.com -> patchew/1489509310-24166-1-git-send-email-igor.druzhinin@citrix.com
 * [new tag]         patchew/1489511503-13334-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1489511503-13334-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1489512045-49206-1-git-send-email-pbonzini@redhat.com -> patchew/1489512045-49206-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1489549053-31728-1-git-send-email-jemmy858585@gmail.com -> patchew/1489549053-31728-1-git-send-email-jemmy858585@gmail.com
 * [new tag]         patchew/1489558827-28971-1-git-send-email-phil@philjordan.eu -> patchew/1489558827-28971-1-git-send-email-phil@philjordan.eu
 * [new tag]         patchew/1489574872-8679-1-git-send-email-kraxel@redhat.com -> patchew/1489574872-8679-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489578512-14031-1-git-send-email-jasowang@redhat.com -> patchew/1489578512-14031-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1489579606-26020-1-git-send-email-kraxel@redhat.com -> patchew/1489579606-26020-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489583887-14126-1-git-send-email-armbru@redhat.com -> patchew/1489583887-14126-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1489585188-14504-1-git-send-email-yang.zhong@intel.com -> patchew/1489585188-14504-1-git-send-email-yang.zhong@intel.com
 * [new tag]         patchew/1489593679-31468-1-git-send-email-igor.druzhinin@citrix.com -> patchew/1489593679-31468-1-git-send-email-igor.druzhinin@citrix.com
 * [new tag]         patchew/1489600837-11541-1-git-send-email-mst@redhat.com -> patchew/1489600837-11541-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1489631689-6382-1-git-send-email-mst@redhat.com -> patchew/1489631689-6382-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1489638621-31978-1-git-send-email-rimjhim0107@gmail.com -> patchew/1489638621-31978-1-git-send-email-rimjhim0107@gmail.com
 * [new tag]         patchew/1489645685-4750-1-git-send-email-armbru@redhat.com -> patchew/1489645685-4750-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1489653504-25229-1-git-send-email-he.chen@linux.intel.com -> patchew/1489653504-25229-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1489656642-12925-1-git-send-email-kraxel@redhat.com -> patchew/1489656642-12925-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489657928-14919-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1489657928-14919-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1489674912-21942-1-git-send-email-clg@kaod.org -> patchew/1489674912-21942-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1489680169-7638-1-git-send-email-pl@kamp.de -> patchew/1489680169-7638-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/148968198512.5555.1880820193606077571.stgit@bahia -> patchew/148968198512.5555.1880820193606077571.stgit@bahia
 * [new tag]         patchew/1489735296-19047-1-git-send-email-kraxel@redhat.com -> patchew/1489735296-19047-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489738282-28383-1-git-send-email-kraxel@redhat.com -> patchew/1489738282-28383-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1489746872-10327-1-git-send-email-thuth@redhat.com -> patchew/1489746872-10327-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/148974701986.29545.5414999102981738774.stgit@bahia -> patchew/148974701986.29545.5414999102981738774.stgit@bahia
 * [new tag]         patchew/148974744281.30636.17973264008285415592.stgit@bahia -> patchew/148974744281.30636.17973264008285415592.stgit@bahia
 * [new tag]         patchew/1489748902-21765-1-git-send-email-peter.maydell@linaro.org -> patchew/1489748902-21765-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1489750157-17401-1-git-send-email-tianyu.lan@intel.com -> patchew/1489750157-17401-1-git-send-email-tianyu.lan@intel.com
 * [new tag]         patchew/1489756546-27142-1-git-send-email-kwolf@redhat.com -> patchew/1489756546-27142-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/148976155089.11859.11860739290129101204.stgit@bahia -> patchew/148976155089.11859.11860739290129101204.stgit@bahia
 * [new tag]         patchew/1489765795-32398-1-git-send-email-craig@rancher.com -> patchew/1489765795-32398-1-git-send-email-craig@rancher.com
 * [new tag]         patchew/148979281961.4342.6047114276763582872.stgit@bahia.lan -> patchew/148979281961.4342.6047114276763582872.stgit@bahia.lan
 * [new tag]         patchew/1489850003-5652-1-git-send-email-a.perevalov@samsung.com -> patchew/1489850003-5652-1-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1489997042-1824-1-git-send-email-kraxel@redhat.com -> patchew/1489997042-1824-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490000078-31202-1-git-send-email-kraxel@redhat.com -> patchew/1490000078-31202-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490000743-3615-1-git-send-email-kraxel@redhat.com -> patchew/1490000743-3615-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490003796-6261-1-git-send-email-kraxel@redhat.com -> patchew/1490003796-6261-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490005227-1997-1-git-send-email-kraxel@redhat.com -> patchew/1490005227-1997-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490009093-28083-1-git-send-email-kraxel@redhat.com -> patchew/1490009093-28083-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490014476-25672-1-git-send-email-peter.maydell@linaro.org -> patchew/1490014476-25672-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490014548-15083-1-git-send-email-armbru@redhat.com -> patchew/1490014548-15083-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490014826-4472-1-git-send-email-yongbok.kim@imgtec.com -> patchew/1490014826-4472-1-git-send-email-yongbok.kim@imgtec.com
 * [new tag]         patchew/1490015240-49118-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1490015240-49118-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1490015515-25851-1-git-send-email-armbru@redhat.com -> patchew/1490015515-25851-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490018607-11838-1-git-send-email-kraxel@redhat.com -> patchew/1490018607-11838-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490021158-4469-1-git-send-email-pbonzini@redhat.com -> patchew/1490021158-4469-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1490026424-11330-1-git-send-email-armbru@redhat.com -> patchew/1490026424-11330-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490034784-28177-1-git-send-email-peter.maydell@linaro.org -> patchew/1490034784-28177-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490074437-17059-1-git-send-email-guangrong.xiao@linux.intel.com -> patchew/1490074437-17059-1-git-send-email-guangrong.xiao@linux.intel.com
 * [new tag]         patchew/1490079006-32495-1-git-send-email-jitendra.kolhe@hpe.com -> patchew/1490079006-32495-1-git-send-email-jitendra.kolhe@hpe.com
 * [new tag]         patchew/1490079888-29029-1-git-send-email-kraxel@redhat.com -> patchew/1490079888-29029-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490091581-21912-1-git-send-email-maozy.fnst@cn.fujitsu.com -> patchew/1490091581-21912-1-git-send-email-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/1490092792-30957-1-git-send-email-thuth@redhat.com -> patchew/1490092792-30957-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1490105580-5008-1-git-send-email-groug@kaod.org -> patchew/1490105580-5008-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1490106717-9542-1-git-send-email-peter.maydell@linaro.org -> patchew/1490106717-9542-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490115473-24839-1-git-send-email-armbru@redhat.com -> patchew/1490115473-24839-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490118290-6133-1-git-send-email-armbru@redhat.com -> patchew/1490118290-6133-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490118490-5597-1-git-send-email-pbonzini@redhat.com -> patchew/1490118490-5597-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1490119729-26206-1-git-send-email-peter.maydell@linaro.org -> patchew/1490119729-26206-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490130086-22057-1-git-send-email-sstabellini@kernel.org -> patchew/1490130086-22057-1-git-send-email-sstabellini@kernel.org
 * [new tag]         patchew/1490152052-9660-1-git-send-email-jasowang@redhat.com -> patchew/1490152052-9660-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1490168303-24588-1-git-send-email-kraxel@redhat.com -> patchew/1490168303-24588-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490175166-19785-1-git-send-email-he.chen@linux.intel.com -> patchew/1490175166-19785-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1490189568-167621-1-git-send-email-imammedo@redhat.com -> patchew/1490189568-167621-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1490198476-12244-1-git-send-email-mst@redhat.com -> patchew/1490198476-12244-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1490198748-4753-1-git-send-email-armbru@redhat.com -> patchew/1490198748-4753-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490199642-5521-1-git-send-email-armbru@redhat.com -> patchew/1490199642-5521-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490204908-26567-1-git-send-email-armbru@redhat.com -> patchew/1490204908-26567-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490207781-18965-1-git-send-email-armbru@redhat.com -> patchew/1490207781-18965-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490236226-30248-1-git-send-email-wang.guang55@zte.com.cn -> patchew/1490236226-30248-1-git-send-email-wang.guang55@zte.com.cn
 * [new tag]         patchew/1490237627-31312-1-git-send-email-wang.guang55@zte.com.cn -> patchew/1490237627-31312-1-git-send-email-wang.guang55@zte.com.cn
 * [new tag]         patchew/1490259133-44411-1-git-send-email-liqiang6-s@360.cn -> patchew/1490259133-44411-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1490261951-21352-1-git-send-email-arei.gonglei@huawei.com -> patchew/1490261951-21352-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1490263801-25206-1-git-send-email-paul.durrant@citrix.com -> patchew/1490263801-25206-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1490264111-25273-1-git-send-email-paul.durrant@citrix.com -> patchew/1490264111-25273-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1490266548-22500-1-git-send-email-armbru@redhat.com -> patchew/1490266548-22500-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490268208-23368-1-git-send-email-armbru@redhat.com -> patchew/1490268208-23368-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490272961-1128-1-git-send-email-peter.maydell@linaro.org -> patchew/1490272961-1128-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490276212-32008-1-git-send-email-diana.craciun@nxp.com -> patchew/1490276212-32008-1-git-send-email-diana.craciun@nxp.com
 * [new tag]         patchew/1490279788-12995-1-git-send-email-peter.maydell@linaro.org -> patchew/1490279788-12995-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490310863-12890-1-git-send-email-wang.guang55@zte.com.cn -> patchew/1490310863-12890-1-git-send-email-wang.guang55@zte.com.cn
 * [new tag]         patchew/1490317489-3544-1-git-send-email-wang.guang55@zte.com.cn -> patchew/1490317489-3544-1-git-send-email-wang.guang55@zte.com.cn
 * [new tag]         patchew/1490347615-19222-1-git-send-email-thuth@redhat.com -> patchew/1490347615-19222-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1490360147-26450-1-git-send-email-fred.konrad@greensocs.com -> patchew/1490360147-26450-1-git-send-email-fred.konrad@greensocs.com
 * [new tag]         patchew/1490361570-288658-1-git-send-email-borntraeger@de.ibm.com -> patchew/1490361570-288658-1-git-send-email-borntraeger@de.ibm.com
 * [new tag]         patchew/1490362825-24854-1-git-send-email-paul.durrant@citrix.com -> patchew/1490362825-24854-1-git-send-email-paul.durrant@citrix.com
 * [new tag]         patchew/1490365490-4854-1-git-send-email-lprosek@redhat.com -> patchew/1490365490-4854-1-git-send-email-lprosek@redhat.com
 * [new tag]         patchew/1490365705-2912-1-git-send-email-sochin@aliyun.com -> patchew/1490365705-2912-1-git-send-email-sochin@aliyun.com
 * [new tag]         patchew/1490377482-13337-1-git-send-email-armbru@redhat.com -> patchew/1490377482-13337-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490440701-12037-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1490440701-12037-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1490579897-3793-1-git-send-email-wang.guang55@zte.com.cn -> patchew/1490579897-3793-1-git-send-email-wang.guang55@zte.com.cn
 * [new tag]         patchew/1490599288-11751-1-git-send-email-peterx@redhat.com -> patchew/1490599288-11751-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1490608126-22187-1-git-send-email-eric.auger@redhat.com -> patchew/1490608126-22187-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1490610662-5483-1-git-send-email-tejaswinipoluri3@gmail.com -> patchew/1490610662-5483-1-git-send-email-tejaswinipoluri3@gmail.com
 * [new tag]         patchew/1490621195-2228-1-git-send-email-armbru@redhat.com -> patchew/1490621195-2228-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490621317-25483-1-git-send-email-kraxel@redhat.com -> patchew/1490621317-25483-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490624810-44752-1-git-send-email-agraf@suse.de -> patchew/1490624810-44752-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1490630670-15818-1-git-send-email-peter.maydell@linaro.org -> patchew/1490630670-15818-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/149063674781.4447.14258971700726134711.stgit@bahia.lan -> patchew/149063674781.4447.14258971700726134711.stgit@bahia.lan
 * [new tag]         patchew/1490637544-15650-1-git-send-email-peter.maydell@linaro.org -> patchew/1490637544-15650-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490638725-19939-1-git-send-email-peter.maydell@linaro.org -> patchew/1490638725-19939-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490653177-131484-1-git-send-email-agraf@suse.de -> patchew/1490653177-131484-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1490685583-16987-1-git-send-email-tejaswinipoluri3@gmail.com -> patchew/1490685583-16987-1-git-send-email-tejaswinipoluri3@gmail.com
 * [new tag]         patchew/1490686352-24017-1-git-send-email-clg@kaod.org -> patchew/1490686352-24017-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1490690794-19023-1-git-send-email-groug@kaod.org -> patchew/1490690794-19023-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1490691368-32099-1-git-send-email-armbru@redhat.com -> patchew/1490691368-32099-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490693009-10037-1-git-send-email-lidongchen@tencent.com -> patchew/1490693009-10037-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1490694017-7532-1-git-send-email-peter.maydell@linaro.org -> patchew/1490694017-7532-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490698718-23762-1-git-send-email-peter.maydell@linaro.org -> patchew/1490698718-23762-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490707129-12622-1-git-send-email-peter.maydell@linaro.org -> patchew/1490707129-12622-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490708752-26902-2-git-send-email-armbru@redhat.com -> patchew/1490708752-26902-2-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490709513-7180-1-git-send-email-eric.auger@redhat.com -> patchew/1490709513-7180-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1490720098-4745-2-git-send-email-armbru@redhat.com -> patchew/1490720098-4745-2-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490721640-13052-1-git-send-email-eric.auger@redhat.com -> patchew/1490721640-13052-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1490722018-13322-1-git-send-email-eric.auger@redhat.com -> patchew/1490722018-13322-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1490750257-19907-1-git-send-email-mst@redhat.com -> patchew/1490750257-19907-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1490760604-9756-1-git-send-email-jasowang@redhat.com -> patchew/1490760604-9756-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1490767970-23689-1-git-send-email-jasowang@redhat.com -> patchew/1490767970-23689-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1490769502-4723-1-git-send-email-jasowang@redhat.com -> patchew/1490769502-4723-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1490795611-4762-1-git-send-email-clg@kaod.org -> patchew/1490795611-4762-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1490805920-17029-1-git-send-email-armbru@redhat.com -> patchew/1490805920-17029-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490818790-3100-1-git-send-email-vyasevic@redhat.com -> patchew/1490818790-3100-1-git-send-email-vyasevic@redhat.com
 * [new tag]         patchew/1490856931-21732-1-git-send-email-kraxel@redhat.com -> patchew/1490856931-21732-1-git-send-email-kraxel@redhat.com
 * [new tag]         patchew/1490860207-8302-1-git-send-email-thuth@redhat.com -> patchew/1490860207-8302-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/149086238428.3338.4129463785289801461.stgit@bahia.lan -> patchew/149086238428.3338.4129463785289801461.stgit@bahia.lan
 * [new tag]         patchew/1490869641-29873-1-git-send-email-xiong.y.zhang@intel.com -> patchew/1490869641-29873-1-git-send-email-xiong.y.zhang@intel.com
 * [new tag]         patchew/1490871151-29029-1-git-send-email-peter.maydell@linaro.org -> patchew/1490871151-29029-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490872341-9959-1-git-send-email-marcel@redhat.com -> patchew/1490872341-9959-1-git-send-email-marcel@redhat.com
 * [new tag]         patchew/1490875813-35588-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1490875813-35588-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1490876834-61392-1-git-send-email-liqiang6-s@360.cn -> patchew/1490876834-61392-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1490879707-6060-1-git-send-email-armbru@redhat.com -> patchew/1490879707-6060-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490880938-90331-1-git-send-email-agraf@suse.de -> patchew/1490880938-90331-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1490883775-94658-1-git-send-email-agraf@suse.de -> patchew/1490883775-94658-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1490888143-31601-1-git-send-email-mst@redhat.com -> patchew/1490888143-31601-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1490890571-2786-1-git-send-email-mst@redhat.com -> patchew/1490890571-2786-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1490892852-6771-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1490892852-6771-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1490894892-8055-1-git-send-email-minyard@acm.org -> patchew/1490894892-8055-1-git-send-email-minyard@acm.org
 * [new tag]         patchew/1490895797-29094-1-git-send-email-armbru@redhat.com -> patchew/1490895797-29094-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1490902938-9009-1-git-send-email-eric.auger@redhat.com -> patchew/1490902938-9009-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1490922956-19731-1-git-send-email-jasowang@redhat.com -> patchew/1490922956-19731-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1490922956-19731-2-git-send-email-jasowang@redhat.com -> patchew/1490922956-19731-2-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1490932869-31217-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1490932869-31217-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1490945793-21276-1-git-send-email-peterx@redhat.com -> patchew/1490945793-21276-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149095959109.26233.3201018420228514740.stgit@bahia -> patchew/149095959109.26233.3201018420228514740.stgit@bahia
 * [new tag]         patchew/1490963801-27870-1-git-send-email-peter.maydell@linaro.org -> patchew/1490963801-27870-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490965817-16913-1-git-send-email-amarnath.valluri@intel.com -> patchew/1490965817-16913-1-git-send-email-amarnath.valluri@intel.com
 * [new tag]         patchew/1490965980-513-1-git-send-email-peter.maydell@linaro.org -> patchew/1490965980-513-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490967529-4767-1-git-send-email-peter.maydell@linaro.org -> patchew/1490967529-4767-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490968309-13672-1-git-send-email-peter.maydell@linaro.org -> patchew/1490968309-13672-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/149096834395.26958.7919143982719167728.stgit@bahia.lan -> patchew/149096834395.26958.7919143982719167728.stgit@bahia.lan
 * [new tag]         patchew/1490970671-20560-1-git-send-email-peter.maydell@linaro.org -> patchew/1490970671-20560-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1490970783-29231-1-git-send-email-minyard@acm.org -> patchew/1490970783-29231-1-git-send-email-minyard@acm.org
 * [new tag]         patchew/1490978921-3782-1-git-send-email-gsomlo@gmail.com -> patchew/1490978921-3782-1-git-send-email-gsomlo@gmail.com
 * [new tag]         patchew/1491005709-29989-1-git-send-email-yaolujing@huawei.com -> patchew/1491005709-29989-1-git-send-email-yaolujing@huawei.com
 * [new tag]         patchew/1491034725-23968-1-git-send-email-peterx@redhat.com -> patchew/1491034725-23968-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1491042326-24335-1-git-send-email-he.chen@linux.intel.com -> patchew/1491042326-24335-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1491221116-11776-1-git-send-email-thuth@redhat.com -> patchew/1491221116-11776-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1491224655-5776-1-git-send-email-peter.maydell@linaro.org -> patchew/1491224655-5776-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1491277689-24949-1-git-send-email-Ashish.Mittal@veritas.com -> patchew/1491277689-24949-1-git-send-email-Ashish.Mittal@veritas.com
 * [new tag]         patchew/1491320063-12719-1-git-send-email-mst@redhat.com -> patchew/1491320063-12719-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1491320156-4629-1-git-send-email-kwolf@redhat.com -> patchew/1491320156-4629-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1491322410-24532-1-git-send-email-groug@kaod.org -> patchew/1491322410-24532-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1491325264-14502-1-git-send-email-gsomlo@gmail.com -> patchew/1491325264-14502-1-git-send-email-gsomlo@gmail.com
 * [new tag]         patchew/1491381329-3995-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1491381329-3995-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1491382705-10279-1-git-send-email-lidongchen@tencent.com -> patchew/1491382705-10279-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1491384478-12325-1-git-send-email-lidongchen@tencent.com -> patchew/1491384478-12325-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1491405126-30591-1-git-send-email-den@openvz.org -> patchew/1491405126-30591-1-git-send-email-den@openvz.org
 * [new tag]         patchew/1491434491-1765-1-git-send-email-anthony.xu@intel.com -> patchew/1491434491-1765-1-git-send-email-anthony.xu@intel.com
 * [new tag]         patchew/1491445133-6534-1-git-send-email-he.chen@linux.intel.com -> patchew/1491445133-6534-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1491462524-1617-1-git-send-email-peterx@redhat.com -> patchew/1491462524-1617-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1491484536-22776-1-git-send-email-lidongchen@tencent.com -> patchew/1491484536-22776-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1491486152-24304-1-git-send-email-peter.maydell@linaro.org -> patchew/1491486152-24304-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1491486314-25823-1-git-send-email-peter.maydell@linaro.org -> patchew/1491486314-25823-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1491486340-25988-1-git-send-email-peter.maydell@linaro.org -> patchew/1491486340-25988-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1491498851-16709-1-git-send-email-kwolf@redhat.com -> patchew/1491498851-16709-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1491501593-23613-1-git-send-email-kwolf@redhat.com -> patchew/1491501593-23613-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1491505055-31845-1-git-send-email-anthony.xu@intel.com -> patchew/1491505055-31845-1-git-send-email-anthony.xu@intel.com
 * [new tag]         patchew/1491554685-1288-1-git-send-email-lidongchen@tencent.com -> patchew/1491554685-1288-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1491561165-12415-1-git-send-email-kwolf@redhat.com -> patchew/1491561165-12415-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1491562132-69066-1-git-send-email-liqiang6-s@360.cn -> patchew/1491562132-69066-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1491562755-23867-1-git-send-email-peterx@redhat.com -> patchew/1491562755-23867-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1491572865-8549-1-git-send-email-kwolf@redhat.com -> patchew/1491572865-8549-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1491575431-32170-1-git-send-email-amarnath.valluri@intel.com -> patchew/1491575431-32170-1-git-send-email-amarnath.valluri@intel.com
 * [new tag]         patchew/1491612336-31066-1-git-send-email-anthony.xu@intel.com -> patchew/1491612336-31066-1-git-send-email-anthony.xu@intel.com
 * [new tag]         patchew/1491614183-4580-1-git-send-email-wang.guang55@zte.com.cn -> patchew/1491614183-4580-1-git-send-email-wang.guang55@zte.com.cn
 * [new tag]         patchew/1491614183-4580-2-git-send-email-wang.guang55@zte.com.cn -> patchew/1491614183-4580-2-git-send-email-wang.guang55@zte.com.cn
 * [new tag]         patchew/1491614650-5144-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1491614650-5144-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1491629987-6826-1-git-send-email-chugh.ishani@research.iiit.ac.in -> patchew/1491629987-6826-1-git-send-email-chugh.ishani@research.iiit.ac.in
 * [new tag]         patchew/1491741460-10308-1-git-send-email-lidongchen@tencent.com -> patchew/1491741460-10308-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1491834095-6476-2-git-send-email-groug@kaod.org -> patchew/1491834095-6476-2-git-send-email-groug@kaod.org
 * [new tag]         patchew/1491900566-32222-1-git-send-email-he.chen@linux.intel.com -> patchew/1491900566-32222-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1491912312-23393-1-git-send-email-lidongchen@tencent.com -> patchew/1491912312-23393-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1491919733-21065-1-git-send-email-kwolf@redhat.com -> patchew/1491919733-21065-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1491959850-30756-1-git-send-email-cota@braap.org -> patchew/1491959850-30756-1-git-send-email-cota@braap.org
 * [new tag]         patchew/1491965999-17528-1-git-send-email-huang.yong@zte.com.cn -> patchew/1491965999-17528-1-git-send-email-huang.yong@zte.com.cn
 * [new tag]         patchew/1491984907-9894-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1491984907-9894-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1491995456-6411-1-git-send-email-huang.yong@zte.com.cn -> patchew/1491995456-6411-1-git-send-email-huang.yong@zte.com.cn
 * [new tag]         patchew/1491999127-21103-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1491999127-21103-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492002476-26784-1-git-send-email-lidongchen@tencent.com -> patchew/1492002476-26784-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1492005921-15664-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1492005921-15664-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1492050868-16200-1-git-send-email-lidongchen@tencent.com -> patchew/1492050868-16200-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1492069906-11300-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1492069906-11300-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1492104214-29994-1-git-send-email-kwolf@redhat.com -> patchew/1492104214-29994-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1492141282-28708-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1492141282-28708-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1492151235-16173-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1492151235-16173-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492158903-8016-1-git-send-email-clg@kaod.org -> patchew/1492158903-8016-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1492173995-14140-1-git-send-email-eric.auger@redhat.com -> patchew/1492173995-14140-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1492175840-5021-1-git-send-email-a.perevalov@samsung.com -> patchew/1492175840-5021-1-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1492334677-14170-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1492334677-14170-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492345561-10267-1-git-send-email-tgnyang@gmail.com -> patchew/1492345561-10267-1-git-send-email-tgnyang@gmail.com
 * [new tag]         patchew/1492392806-53720-1-git-send-email-longpeng2@huawei.com -> patchew/1492392806-53720-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1492428140-1968-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1492428140-1968-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1492482020-29745-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1492482020-29745-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492484893-23435-1-git-send-email-xiecl.fnst@cn.fujitsu.com -> patchew/1492484893-23435-1-git-send-email-xiecl.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492564532-91680-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1492564532-91680-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1492620502-71509-1-git-send-email-bernhard.kaindl@thalesgroup.com -> patchew/1492620502-71509-1-git-send-email-bernhard.kaindl@thalesgroup.com
 * [new tag]         patchew/1492621028-16280-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1492621028-16280-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1492623684-25799-1-git-send-email-alindsay@codeaurora.org -> patchew/1492623684-25799-1-git-send-email-alindsay@codeaurora.org
 * [new tag]         patchew/1492631083-23965-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1492631083-23965-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1492661065-18510-1-git-send-email-lidongchen@tencent.com -> patchew/1492661065-18510-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1492662763-13852-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1492662763-13852-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492670346-18004-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1492670346-18004-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492674416-9408-1-git-send-email-zhang.zhanghailiang@huawei.com -> patchew/1492674416-9408-1-git-send-email-zhang.zhanghailiang@huawei.com
 * [new tag]         patchew/1492677526-4739-1-git-send-email-lidongchen@tencent.com -> patchew/1492677526-4739-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1492679992-7805-1-git-send-email-lidongchen@tencent.com -> patchew/1492679992-7805-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1492684955-27154-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1492684955-27154-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1492685851-27921-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1492685851-27921-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1492706470-10921-1-git-send-email-peter.maydell@linaro.org -> patchew/1492706470-10921-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1492719341-11476-1-git-send-email-kwolf@redhat.com -> patchew/1492719341-11476-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1492753213-26516-1-git-send-email-armbru@redhat.com -> patchew/1492753213-26516-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1492758767-19716-1-git-send-email-xiecl.fnst@cn.fujitsu.com -> patchew/1492758767-19716-1-git-send-email-xiecl.fnst@cn.fujitsu.com
 * [new tag]         patchew/1492759935-23933-1-git-send-email-he.chen@linux.intel.com -> patchew/1492759935-23933-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1492761662-5644-1-git-send-email-kwolf@redhat.com -> patchew/1492761662-5644-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1492763327-12742-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1492763327-12742-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1492765915-32253-1-git-send-email-pl@kamp.de -> patchew/1492765915-32253-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1492768654-11053-1-git-send-email-lidongchen@tencent.com -> patchew/1492768654-11053-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1492789220-15901-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1492789220-15901-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1492789303-16008-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1492789303-16008-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1492814072-4276-1-git-send-email-li.ping288@zte.com.cn -> patchew/1492814072-4276-1-git-send-email-li.ping288@zte.com.cn
 * [new tag]         patchew/1492838021-10538-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1492838021-10538-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1492845627-4384-1-git-send-email-longpeng2@huawei.com -> patchew/1492845627-4384-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1492956615-2395-1-git-send-email-vip-ak47@yandex.ru -> patchew/1492956615-2395-1-git-send-email-vip-ak47@yandex.ru
 * [new tag]         patchew/1493010966-22976-1-git-send-email-jasowang@redhat.com -> patchew/1493010966-22976-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1493018820-23445-1-git-send-email-armbru@redhat.com -> patchew/1493018820-23445-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1493042140-25551-1-git-send-email-lidongchen@tencent.com -> patchew/1493042140-25551-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1493044126-21488-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1493044126-21488-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1493051615-30715-1-git-send-email-peter.maydell@linaro.org -> patchew/1493051615-30715-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1493054398-26013-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1493054398-26013-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1493085153-18191-1-git-send-email-he.chen@linux.intel.com -> patchew/1493085153-18191-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1493106644-6049-1-git-send-email-thuth@redhat.com -> patchew/1493106644-6049-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493107736-6608-1-git-send-email-thuth@redhat.com -> patchew/1493107736-6608-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493107940-29950-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1493107940-29950-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1493113753-30025-1-git-send-email-peterx@redhat.com -> patchew/1493113753-30025-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1493119568-15218-1-git-send-email-jasowang@redhat.com -> patchew/1493119568-15218-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1493120560-117434-1-git-send-email-agraf@suse.de -> patchew/1493120560-117434-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1493122030-32191-1-git-send-email-peter.maydell@linaro.org -> patchew/1493122030-32191-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1493126327-13162-1-git-send-email-thuth@redhat.com -> patchew/1493126327-13162-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493150351-28918-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1493150351-28918-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1493157212-22070-1-git-send-email-gm.ijewski@web.de -> patchew/1493157212-22070-1-git-send-email-gm.ijewski@web.de
 * [new tag]         patchew/1493158501-22284-1-git-send-email-gm.ijewski@web.de -> patchew/1493158501-22284-1-git-send-email-gm.ijewski@web.de
 * [new tag]         patchew/1493161481-29595-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1493161481-29595-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1493179907-22516-1-git-send-email-thuth@redhat.com -> patchew/1493179907-22516-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493189156-14656-1-git-send-email-wangyunjian@huawei.com -> patchew/1493189156-14656-1-git-send-email-wangyunjian@huawei.com
 * [new tag]         patchew/1493191019-32442-1-git-send-email-thuth@redhat.com -> patchew/1493191019-32442-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493192202-3184-1-git-send-email-armbru@redhat.com -> patchew/1493192202-3184-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1493192675-16104-1-git-send-email-peterx@redhat.com -> patchew/1493192675-16104-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1493205192-26743-1-git-send-email-peterx@redhat.com -> patchew/1493205192-26743-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149321107781.13002.9081643707477650100.stgit@bahia.lan -> patchew/149321107781.13002.9081643707477650100.stgit@bahia.lan
 * [new tag]         patchew/149321290672.6890.14889421479138766387.stgit@bahia -> patchew/149321290672.6890.14889421479138766387.stgit@bahia
 * [new tag]         patchew/149321376763.7874.12797658801011614451.stgit@bahia -> patchew/149321376763.7874.12797658801011614451.stgit@bahia
 * [new tag]         patchew/1493226792-3237-1-git-send-email-peter.maydell@linaro.org -> patchew/1493226792-3237-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1493233622-14485-1-git-send-email-brogers@suse.com -> patchew/1493233622-14485-1-git-send-email-brogers@suse.com
 * [new tag]         patchew/1493260558-20728-1-git-send-email-he.chen@linux.intel.com -> patchew/1493260558-20728-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1493261907-18734-1-git-send-email-lidongchen@tencent.com -> patchew/1493261907-18734-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1493264805-15398-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1493264805-15398-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1493270454-1448-1-git-send-email-thuth@redhat.com -> patchew/1493270454-1448-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493271996-23607-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1493271996-23607-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1493280397-9622-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1493280397-9622-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1493282486-28338-1-git-send-email-armbru@redhat.com -> patchew/1493282486-28338-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1493285103-15769-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1493285103-15769-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1493285660-4470-1-git-send-email-peterx@redhat.com -> patchew/1493285660-4470-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149328633283.30266.4224847428546759127.stgit@bahia -> patchew/149328633283.30266.4224847428546759127.stgit@bahia
 * [new tag]         patchew/1493287126-19072-1-git-send-email-peterx@redhat.com -> patchew/1493287126-19072-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149328811036.1628.11119485249329354693.stgit@bahia.lan -> patchew/149328811036.1628.11119485249329354693.stgit@bahia.lan
 * [new tag]         patchew/1493298053-17140-1-git-send-email-armbru@redhat.com -> patchew/1493298053-17140-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1493299264-10669-1-git-send-email-daniel@daynix.com -> patchew/1493299264-10669-1-git-send-email-daniel@daynix.com
 * [new tag]         patchew/1493314727-6951-1-git-send-email-wei@redhat.com -> patchew/1493314727-6951-1-git-send-email-wei@redhat.com
 * [new tag]         patchew/1493323148-32461-1-git-send-email-brogers@suse.com -> patchew/1493323148-32461-1-git-send-email-brogers@suse.com
 * [new tag]         patchew/1493360392-20628-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1493360392-20628-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1493362658-8179-1-git-send-email-a.perevalov@samsung.com -> patchew/1493362658-8179-1-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1493363372-16861-1-git-send-email-zhiyong.yang@intel.com -> patchew/1493363372-16861-1-git-send-email-zhiyong.yang@intel.com
 * [new tag]         patchew/149336968270.4566.7770744042249761246.stgit@bahia.lan -> patchew/149336968270.4566.7770744042249761246.stgit@bahia.lan
 * [new tag]         patchew/1493372840-24551-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1493372840-24551-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1493380626-10883-1-git-send-email-brogers@suse.com -> patchew/1493380626-10883-1-git-send-email-brogers@suse.com
 * [new tag]         patchew/1493384110-32060-1-git-send-email-tgnyang@gmail.com -> patchew/1493384110-32060-1-git-send-email-tgnyang@gmail.com
 * [new tag]         patchew/1493391576-29401-1-git-send-email-fred.konrad@greensocs.com -> patchew/1493391576-29401-1-git-send-email-fred.konrad@greensocs.com
 * [new tag]         patchew/1493398313-6673-1-git-send-email-sundeep.lkml@gmail.com -> patchew/1493398313-6673-1-git-send-email-sundeep.lkml@gmail.com
 * [new tag]         patchew/1493624375-12707-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1493624375-12707-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1493692691-30801-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1493692691-30801-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1493711597-21803-1-git-send-email-thuth@redhat.com -> patchew/1493711597-21803-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493712420-22480-1-git-send-email-thuth@redhat.com -> patchew/1493712420-22480-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493718721-29774-1-git-send-email-thuth@redhat.com -> patchew/1493718721-29774-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493719600-30853-1-git-send-email-thuth@redhat.com -> patchew/1493719600-30853-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493725969-19518-1-git-send-email-amarnath.valluri@intel.com -> patchew/1493725969-19518-1-git-send-email-amarnath.valluri@intel.com
 * [new tag]         patchew/1493726062-31743-1-git-send-email-thuth@redhat.com -> patchew/1493726062-31743-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493735386-39622-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1493735386-39622-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/149373610338.5144.9635049015143453288.stgit@bahia.lan -> patchew/149373610338.5144.9635049015143453288.stgit@bahia.lan
 * [new tag]         patchew/1493803036-4048-1-git-send-email-he.chen@linux.intel.com -> patchew/1493803036-4048-1-git-send-email-he.chen@linux.intel.com
 * [new tag]         patchew/1493816238-33120-1-git-send-email-imammedo@redhat.com -> patchew/1493816238-33120-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1493875481-16388-1-git-send-email-thuth@redhat.com -> patchew/1493875481-16388-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493883704-27604-1-git-send-email-thuth@redhat.com -> patchew/1493883704-27604-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493888311-30839-1-git-send-email-thuth@redhat.com -> patchew/1493888311-30839-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493894491-26130-1-git-send-email-vip-ak47@yandex.ru -> patchew/1493894491-26130-1-git-send-email-vip-ak47@yandex.ru
 * [new tag]         patchew/1493911445-19568-1-git-send-email-armbru@redhat.com -> patchew/1493911445-19568-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1493915136-19150-1-git-send-email-zhiyong.yang@intel.com -> patchew/1493915136-19150-1-git-send-email-zhiyong.yang@intel.com
 * [new tag]         patchew/1493971429-10441-1-git-send-email-lidongchen@tencent.com -> patchew/1493971429-10441-1-git-send-email-lidongchen@tencent.com
 * [new tag]         patchew/1493977087-26668-1-git-send-email-thuth@redhat.com -> patchew/1493977087-26668-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1493977730-20581-1-git-send-email-pbonzini@redhat.com -> patchew/1493977730-20581-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/149399500677.29022.12340124231191204194.stgit@bahia.lan -> patchew/149399500677.29022.12340124231191204194.stgit@bahia.lan
 * [new tag]         patchew/1494223204-16388-1-git-send-email-peterx@redhat.com -> patchew/1494223204-16388-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494243504-127980-1-git-send-email-arei.gonglei@huawei.com -> patchew/1494243504-127980-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1494253073-30622-1-git-send-email-thuth@redhat.com -> patchew/1494253073-30622-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494256429-31720-1-git-send-email-thuth@redhat.com -> patchew/1494256429-31720-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494266456-2251-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1494266456-2251-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1494274635-11029-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1494274635-11029-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1494304108-9805-1-git-send-email-peterx@redhat.com -> patchew/1494304108-9805-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494309644-18743-1-git-send-email-peterx@redhat.com -> patchew/1494309644-18743-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494317205-2211-1-git-send-email-armbru@redhat.com -> patchew/1494317205-2211-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1494322876-28843-1-git-send-email-armbru@redhat.com -> patchew/1494322876-28843-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1494327362-30727-1-git-send-email-armbru@redhat.com -> patchew/1494327362-30727-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1494330527-24163-1-git-send-email-mst@redhat.com -> patchew/1494330527-24163-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1494338586-13416-1-git-send-email-wangyunjian@huawei.com -> patchew/1494338586-13416-1-git-send-email-wangyunjian@huawei.com
 * [new tag]         patchew/1494348286-10253-1-git-send-email-sundeep.lkml@gmail.com -> patchew/1494348286-10253-1-git-send-email-sundeep.lkml@gmail.com
 * [new tag]         patchew/1494369432-15418-1-git-send-email-anthony.xu@intel.com -> patchew/1494369432-15418-1-git-send-email-anthony.xu@intel.com
 * [new tag]         patchew/1494389972-26471-1-git-send-email-thuth@redhat.com -> patchew/1494389972-26471-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494398933-8366-1-git-send-email-thuth@redhat.com -> patchew/1494398933-8366-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494403315-12760-1-git-send-email-peterx@redhat.com -> patchew/1494403315-12760-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494405683-20877-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1494405683-20877-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1494430493-23119-1-git-send-email-thuth@redhat.com -> patchew/1494430493-23119-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494431442-25163-1-git-send-email-thuth@redhat.com -> patchew/1494431442-25163-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494443192-17177-1-git-send-email-mst@redhat.com -> patchew/1494443192-17177-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1494449551-20227-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1494449551-20227-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1494478641-24549-1-git-send-email-wei.w.wang@intel.com -> patchew/1494478641-24549-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1494502528-12670-1-git-send-email-pbonzini@redhat.com -> patchew/1494502528-12670-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1494505358-15287-1-git-send-email-peterx@redhat.com -> patchew/1494505358-15287-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494513181-7900-1-git-send-email-kwolf@redhat.com -> patchew/1494513181-7900-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1494552955-30529-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1494552955-30529-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1494553288-30764-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1494553288-30764-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1494562661-9063-1-git-send-email-peterx@redhat.com -> patchew/1494562661-9063-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494578148-102868-1-git-send-email-wei.w.wang@intel.com -> patchew/1494578148-102868-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1494585229-9119-1-git-send-email-thuth@redhat.com -> patchew/1494585229-9119-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494586944-7253-1-git-send-email-Milos.Stojanovic@rt-rk.com -> patchew/1494586944-7253-1-git-send-email-Milos.Stojanovic@rt-rk.com
 * [new tag]         patchew/1494588703-9076-1-git-send-email-a.perevalov@samsung.com -> patchew/1494588703-9076-1-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1494632164-23799-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1494632164-23799-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1494637401-15849-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1494637401-15849-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1494697399-352-1-git-send-email-eric.auger@redhat.com -> patchew/1494697399-352-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1494827476-1487-1-git-send-email-clg@kaod.org -> patchew/1494827476-1487-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1494827909-640-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1494827909-640-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1494829102-1812-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1494829102-1812-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1494838260-30439-1-git-send-email-peterx@redhat.com -> patchew/1494838260-30439-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494842563-6534-1-git-send-email-pl@kamp.de -> patchew/1494842563-6534-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/149484833874.20089.4164801378197848306.stgit@bahia.lan -> patchew/149484833874.20089.4164801378197848306.stgit@bahia.lan
 * [new tag]         patchew/1494851980-6831-1-git-send-email-kwolf@redhat.com -> patchew/1494851980-6831-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1494854073-19898-1-git-send-email-peterx@redhat.com -> patchew/1494854073-19898-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1494855176-11127-1-git-send-email-thuth@redhat.com -> patchew/1494855176-11127-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494860396-24930-1-git-send-email-Milos.Stojanovic@rt-rk.com -> patchew/1494860396-24930-1-git-send-email-Milos.Stojanovic@rt-rk.com
 * [new tag]         patchew/149486383099.19357.10170962018755572073.stgit@bahia.lan -> patchew/149486383099.19357.10170962018755572073.stgit@bahia.lan
 * [new tag]         patchew/1494866344-11013-1-git-send-email-armbru@redhat.com -> patchew/1494866344-11013-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1494897683-16395-1-git-send-email-anthony.xu@intel.com -> patchew/1494897683-16395-1-git-send-email-anthony.xu@intel.com
 * [new tag]         patchew/1494916103-32207-2-git-send-email-groug@kaod.org -> patchew/1494916103-32207-2-git-send-email-groug@kaod.org
 * [new tag]         patchew/1494921494-33717-1-git-send-email-amarnath.valluri@intel.com -> patchew/1494921494-33717-1-git-send-email-amarnath.valluri@intel.com
 * [new tag]         patchew/1494926884-10118-1-git-send-email-thuth@redhat.com -> patchew/1494926884-10118-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494947277-26158-1-git-send-email-thuth@redhat.com -> patchew/1494947277-26158-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1494949133-2202-1-git-send-email-sundeep.lkml@gmail.com -> patchew/1494949133-2202-1-git-send-email-sundeep.lkml@gmail.com
 * [new tag]         patchew/1494972923-31756-1-git-send-email-anthony.xu@intel.com -> patchew/1494972923-31756-1-git-send-email-anthony.xu@intel.com
 * [new tag]         patchew/1494986980-11277-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1494986980-11277-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1494992962-6929-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1494992962-6929-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/149500797926.28874.3877030098009500731.stgit@bahia -> patchew/149500797926.28874.3877030098009500731.stgit@bahia
 * [new tag]         patchew/1495011462-8735-1-git-send-email-peterx@redhat.com -> patchew/1495011462-8735-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1495021572-20852-1-git-send-email-sameeh@daynix.com -> patchew/1495021572-20852-1-git-send-email-sameeh@daynix.com
 * [new tag]         patchew/149503190026.11264.1637374942003022823.stgit@bahia.lan -> patchew/149503190026.11264.1637374942003022823.stgit@bahia.lan
 * [new tag]         patchew/1495035337-13337-1-git-send-email-thuth@redhat.com -> patchew/1495035337-13337-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495057396-13387-1-git-send-email-mst@redhat.com -> patchew/1495057396-13387-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1495085580-10631-1-git-send-email-tianyu.lan@intel.com -> patchew/1495085580-10631-1-git-send-email-tianyu.lan@intel.com
 * [new tag]         patchew/1495094971-177754-1-git-send-email-imammedo@redhat.com -> patchew/1495094971-177754-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1495107549-6097-1-git-send-email-thuth@redhat.com -> patchew/1495107549-6097-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/149511591185.8828.11947901967942107196.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/149511591185.8828.11947901967942107196.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/1495117161-22671-1-git-send-email-thuth@redhat.com -> patchew/1495117161-22671-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495128400-23759-1-git-send-email-thuth@redhat.com -> patchew/1495128400-23759-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495161139-28757-1-git-send-email-wei.w.wang@intel.com -> patchew/1495161139-28757-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1495163989-9994-1-git-send-email-peterx@redhat.com -> patchew/1495163989-9994-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1495170583-30905-1-git-send-email-yang.zhong@intel.com -> patchew/1495170583-30905-1-git-send-email-yang.zhong@intel.com
 * [new tag]         patchew/1495175716-12735-1-git-send-email-thuth@redhat.com -> patchew/1495175716-12735-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495175803-12830-1-git-send-email-thuth@redhat.com -> patchew/1495175803-12830-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495176212-14446-1-git-send-email-peterx@redhat.com -> patchew/1495176212-14446-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1495177204-16808-1-git-send-email-thuth@redhat.com -> patchew/1495177204-16808-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495186480-114192-1-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1495186480-114192-1-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/1495192872-27667-1-git-send-email-pbonzini@redhat.com -> patchew/1495192872-27667-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1495198042-124203-1-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1495198042-124203-1-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/149520423435.7495.2756710723268429379.stgit@bahia.lan -> patchew/149520423435.7495.2756710723268429379.stgit@bahia.lan
 * [new tag]         patchew/149520531371.9327.383828886525307842.stgit@bahia -> patchew/149520531371.9327.383828886525307842.stgit@bahia
 * [new tag]         patchew/1495229390-18909-1-git-send-email-felipe@nutanix.com -> patchew/1495229390-18909-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1495231142-19055-1-git-send-email-felipe@nutanix.com -> patchew/1495231142-19055-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1495238065-15846-1-git-send-email-thuth@redhat.com -> patchew/1495238065-15846-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495446630-365062-2-git-send-email-eyakovlev@virtuozzo.com -> patchew/1495446630-365062-2-git-send-email-eyakovlev@virtuozzo.com
 * [new tag]         patchew/1495452382-19840-1-git-send-email-sameeh@daynix.com -> patchew/1495452382-19840-1-git-send-email-sameeh@daynix.com
 * [new tag]         patchew/1495467654-30911-1-git-send-email-thuth@redhat.com -> patchew/1495467654-30911-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495471335-23707-1-git-send-email-armbru@redhat.com -> patchew/1495471335-23707-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1495484805-4201-1-git-send-email-thuth@redhat.com -> patchew/1495484805-4201-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495486409-5197-1-git-send-email-thuth@redhat.com -> patchew/1495486409-5197-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495507439-1784-1-git-send-email-jasowang@redhat.com -> patchew/1495507439-1784-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1495537965-4187-1-git-send-email-diana.craciun@nxp.com -> patchew/1495537965-4187-1-git-send-email-diana.craciun@nxp.com
 * [new tag]         patchew/1495539071-12995-1-git-send-email-a.perevalov@samsung.com -> patchew/1495539071-12995-1-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1495542638-12335-1-git-send-email-armbru@redhat.com -> patchew/1495542638-12335-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1495548064-10926-1-git-send-email-kwolf@redhat.com -> patchew/1495548064-10926-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1495549241-23380-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1495549241-23380-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/149554993519.23396.2947622015408783770.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/149554993519.23396.2947622015408783770.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/1495550330-34087-1-git-send-email-imammedo@redhat.com -> patchew/1495550330-34087-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1495613046-6430-1-git-send-email-thuth@redhat.com -> patchew/1495613046-6430-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495616063-19386-1-git-send-email-thuth@redhat.com -> patchew/1495616063-19386-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495634844-14777-1-git-send-email-dplotnikov@virtuozzo.com -> patchew/1495634844-14777-1-git-send-email-dplotnikov@virtuozzo.com
 * [new tag]         patchew/1495642203-12702-1-git-send-email-felipe@nutanix.com -> patchew/1495642203-12702-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/149564764390.1804.5304274992848891131.stgit@bahia.lan -> patchew/149564764390.1804.5304274992848891131.stgit@bahia.lan
 * [new tag]         patchew/1495649128-10529-1-git-send-email-vyasevic@redhat.com -> patchew/1495649128-10529-1-git-send-email-vyasevic@redhat.com
 * [new tag]         patchew/1495704132-5675-1-git-send-email-thuth@redhat.com -> patchew/1495704132-5675-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1495790468-23862-1-git-send-email-zhlcindy@gmail.com -> patchew/1495790468-23862-1-git-send-email-zhlcindy@gmail.com
 * [new tag]         patchew/1495797727-16695-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1495797727-16695-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1495801522-27628-1-git-send-email-dplotnikov@virtuozzo.com -> patchew/1495801522-27628-1-git-send-email-dplotnikov@virtuozzo.com
 * [new tag]         patchew/1495830130-30611-1-git-send-email-kwolf@redhat.com -> patchew/1495830130-30611-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1495865408-13848-1-git-send-email-arei.gonglei@huawei.com -> patchew/1495865408-13848-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1496029936-6381-1-git-send-email-peterx@redhat.com -> patchew/1496029936-6381-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1496030545-8719-1-git-send-email-peterx@redhat.com -> patchew/1496030545-8719-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1496048740-26578-1-git-send-email-groug@kaod.org -> patchew/1496048740-26578-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1496054944-25623-1-git-send-email-dplotnikov@virtuozzo.com -> patchew/1496054944-25623-1-git-send-email-dplotnikov@virtuozzo.com
 * [new tag]         patchew/1496060313-30190-1-git-send-email-kwolf@redhat.com -> patchew/1496060313-30190-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1496070414-6744-1-git-send-email-kwolf@redhat.com -> patchew/1496070414-6744-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1496075404-8845-1-git-send-email-joserz@linux.vnet.ibm.com -> patchew/1496075404-8845-1-git-send-email-joserz@linux.vnet.ibm.com
 * [new tag]         patchew/1496079043-26694-1-git-send-email-zhi.a.wang@intel.com -> patchew/1496079043-26694-1-git-send-email-zhi.a.wang@intel.com
 * [new tag]         patchew/1496151640-29919-1-git-send-email-groug@kaod.org -> patchew/1496151640-29919-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1496152683-102751-1-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1496152683-102751-1-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/149615665491.28067.17765793725374594694.stgit@bahia.lan -> patchew/149615665491.28067.17765793725374594694.stgit@bahia.lan
 * [new tag]         patchew/1496157773-10779-1-git-send-email-kwolf@redhat.com -> patchew/1496157773-10779-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1496161442-96665-1-git-send-email-imammedo@redhat.com -> patchew/1496161442-96665-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/1496212378-22605-1-git-send-email-peterx@redhat.com -> patchew/1496212378-22605-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1496223756-24929-1-git-send-email-peterx@redhat.com -> patchew/1496223756-24929-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1496224367-24935-1-git-send-email-kwolf@redhat.com -> patchew/1496224367-24935-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1496226934-29752-1-git-send-email-peterx@redhat.com -> patchew/1496226934-29752-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1496227532-15192-1-git-send-email-wangyunjian@huawei.com -> patchew/1496227532-15192-1-git-send-email-wangyunjian@huawei.com
 * [new tag]         patchew/1496230005-12265-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1496230005-12265-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/149623617700.4947.12490877660892961664.stgit@bahia.lan -> patchew/149623617700.4947.12490877660892961664.stgit@bahia.lan
 * [new tag]         patchew/1496250547-20701-1-git-send-email-armbru@redhat.com -> patchew/1496250547-20701-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1496285994-5390-1-git-send-email-peterx@redhat.com -> patchew/1496285994-5390-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1496303518-25638-1-git-send-email-felipe@nutanix.com -> patchew/1496303518-25638-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1496310843-28771-1-git-send-email-thuth@redhat.com -> patchew/1496310843-28771-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496316915-121196-1-git-send-email-arei.gonglei@huawei.com -> patchew/1496316915-121196-1-git-send-email-arei.gonglei@huawei.com
 * [new tag]         patchew/1496320911-51305-1-git-send-email-pbonzini@redhat.com -> patchew/1496320911-51305-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1496328687-13121-1-git-send-email-indiffPig@126.com -> patchew/1496328687-13121-1-git-send-email-indiffPig@126.com
 * [new tag]         patchew/1496330073-51338-1-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1496330073-51338-1-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/1496337035-30213-1-git-send-email-peter.maydell@linaro.org -> patchew/1496337035-30213-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/149639817593.15167.7338592152743589651.stgit@bahia.lan -> patchew/149639817593.15167.7338592152743589651.stgit@bahia.lan
 * [new tag]         patchew/1496414138-7622-1-git-send-email-peter.maydell@linaro.org -> patchew/1496414138-7622-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1496421247-857-1-git-send-email-mst@redhat.com -> patchew/1496421247-857-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1496437930-12654-1-git-send-email-kwolf@redhat.com -> patchew/1496437930-12654-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1496468917-7489-1-git-send-email-sochin.jiang@huawei.com -> patchew/1496468917-7489-1-git-send-email-sochin.jiang@huawei.com
 * [new tag]         patchew/1496481564-20545-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1496481564-20545-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1496531612-22166-1-git-send-email-mdroth@linux.vnet.ibm.com -> patchew/1496531612-22166-1-git-send-email-mdroth@linux.vnet.ibm.com
 * [new tag]         patchew/1496642007-8309-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1496642007-8309-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1496649172-26982-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1496649172-26982-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1496653049-44530-1-git-send-email-wei.w.wang@intel.com -> patchew/1496653049-44530-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1496670954-664-1-git-send-email-peter.maydell@linaro.org -> patchew/1496670954-664-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1496675657-11599-1-git-send-email-peter.maydell@linaro.org -> patchew/1496675657-11599-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1496677461-22320-1-git-send-email-clg@kaod.org -> patchew/1496677461-22320-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1496678118-27350-2-git-send-email-felipe@nutanix.com -> patchew/1496678118-27350-2-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1496679576-14336-1-git-send-email-peter.maydell@linaro.org -> patchew/1496679576-14336-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1496682098-1540-1-git-send-email-peter.maydell@linaro.org -> patchew/1496682098-1540-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1496702979-26132-1-git-send-email-cota@braap.org -> patchew/1496702979-26132-1-git-send-email-cota@braap.org
 * [new tag]         patchew/1496732599-7977-1-git-send-email-sochin.jiang@huawei.com -> patchew/1496732599-7977-1-git-send-email-sochin.jiang@huawei.com
 * [new tag]         patchew/1496734448-19256-1-git-send-email-armbru@redhat.com -> patchew/1496734448-19256-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1496739230-32109-1-git-send-email-clg@kaod.org -> patchew/1496739230-32109-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1496739312-32304-1-git-send-email-clg@kaod.org -> patchew/1496739312-32304-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1496745042-2379-1-git-send-email-peterx@redhat.com -> patchew/1496745042-2379-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149676256254.31274.13156728863519964419.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/149676256254.31274.13156728863519964419.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/149676554488.4134.16095044562334102742.stgit@bahia.lab.toulouse-stg.fr.ibm.com -> patchew/149676554488.4134.16095044562334102742.stgit@bahia.lab.toulouse-stg.fr.ibm.com
 * [new tag]         patchew/1496773755-53343-1-git-send-email-borntraeger@de.ibm.com -> patchew/1496773755-53343-1-git-send-email-borntraeger@de.ibm.com
 * [new tag]         patchew/1496790745-314-1-git-send-email-cota@braap.org -> patchew/1496790745-314-1-git-send-email-cota@braap.org
 * [new tag]         patchew/1496806444-27910-1-git-send-email-jasowang@redhat.com -> patchew/1496806444-27910-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1496820931-27416-10-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-10-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496820931-27416-12-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-12-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496820931-27416-2-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-2-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496820931-27416-3-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-3-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496820931-27416-4-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-4-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496820931-27416-6-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-6-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496820931-27416-8-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-8-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496820931-27416-9-git-send-email-a.perevalov@samsung.com -> patchew/1496820931-27416-9-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496822093-5700-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1496822093-5700-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1496823627-17609-1-git-send-email-thuth@redhat.com -> patchew/1496823627-17609-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496824556-1883-1-git-send-email-eric.auger@redhat.com -> patchew/1496824556-1883-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1496828798-27548-1-git-send-email-a.perevalov@samsung.com -> patchew/1496828798-27548-1-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1496849369-30282-1-git-send-email-peter.maydell@linaro.org -> patchew/1496849369-30282-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1496851287-9428-1-git-send-email-eric.auger@redhat.com -> patchew/1496851287-9428-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/149685579678.12025.9278446121024037161.stgit@bahia.lan -> patchew/149685579678.12025.9278446121024037161.stgit@bahia.lan
 * [new tag]         patchew/1496857819-12466-1-git-send-email-kwolf@redhat.com -> patchew/1496857819-12466-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1496862674-23626-1-git-send-email-thuth@redhat.com -> patchew/1496862674-23626-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496864204-5954-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1496864204-5954-1-git-send-email-jcmvbkbc@gmail.com
 * [new tag]         patchew/1496893672-8313-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1496893672-8313-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/1496899257-25800-1-git-send-email-thuth@redhat.com -> patchew/1496899257-25800-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496907604-2393-1-git-send-email-thuth@redhat.com -> patchew/1496907604-2393-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496926799-13040-1-git-send-email-thuth@redhat.com -> patchew/1496926799-13040-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496927734-29174-1-git-send-email-owen.smith@citrix.com -> patchew/1496927734-29174-1-git-send-email-owen.smith@citrix.com
 * [new tag]         patchew/1496927934-21815-1-git-send-email-thuth@redhat.com -> patchew/1496927934-21815-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496927940-13301-1-git-send-email-borntraeger@de.ibm.com -> patchew/1496927940-13301-1-git-send-email-borntraeger@de.ibm.com
 * [new tag]         patchew/1496931482-29914-1-git-send-email-thuth@redhat.com -> patchew/1496931482-29914-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1496950567-26343-1-git-send-email-mst@redhat.com -> patchew/1496950567-26343-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1496957498-17127-1-git-send-email-chugh.ishani@research.iiit.ac.in -> patchew/1496957498-17127-1-git-send-email-chugh.ishani@research.iiit.ac.in
 * [new tag]         patchew/1496975122-16999-1-git-send-email-cota@braap.org -> patchew/1496975122-16999-1-git-send-email-cota@braap.org
 * [new tag]         patchew/1496980142-8986-1-git-send-email-peterx@redhat.com -> patchew/1496980142-8986-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1496991197-1815-1-git-send-email-thuth@redhat.com -> patchew/1496991197-1815-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497013453-13688-1-git-send-email-peterx@redhat.com -> patchew/1497013453-13688-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1497016045-6009-1-git-send-email-armbru@redhat.com -> patchew/1497016045-6009-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1497016409-22650-1-git-send-email-peterx@redhat.com -> patchew/1497016409-22650-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1497023553-18411-1-git-send-email-eric.auger@redhat.com -> patchew/1497023553-18411-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1497078250-19505-1-git-send-email-lizhengui@huawei.com -> patchew/1497078250-19505-1-git-send-email-lizhengui@huawei.com
 * [new tag]         patchew/1497097821-32754-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1497097821-32754-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1497099616-2615-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1497099616-2615-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1497245555-32472-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1497245555-32472-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1497274251-26448-1-git-send-email-jianjay.zhou@huawei.com -> patchew/1497274251-26448-1-git-send-email-jianjay.zhou@huawei.com
 * [new tag]         patchew/1497302470-10776-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1497302470-10776-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1497346256-10073-1-git-send-email-gi-oh.kim@profitbricks.com -> patchew/1497346256-10073-1-git-send-email-gi-oh.kim@profitbricks.com
 * [new tag]         patchew/1497346593-8791-1-git-send-email-a.perevalov@samsung.com -> patchew/1497346593-8791-1-git-send-email-a.perevalov@samsung.com
 * [new tag]         patchew/1497348515-6391-1-git-send-email-sbates@raithlin.com -> patchew/1497348515-6391-1-git-send-email-sbates@raithlin.com
 * [new tag]         patchew/1497349303-3076-1-git-send-email-li.ping288@zte.com.cn -> patchew/1497349303-3076-1-git-send-email-li.ping288@zte.com.cn
 * [new tag]         patchew/1497350121-15256-1-git-send-email-gi-oh.kim@profitbricks.com -> patchew/1497350121-15256-1-git-send-email-gi-oh.kim@profitbricks.com
 * [new tag]         patchew/1497351329-12936-1-git-send-email-thuth@redhat.com -> patchew/1497351329-12936-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497360677-4780-1-git-send-email-eric.auger@redhat.com -> patchew/1497360677-4780-1-git-send-email-eric.auger@redhat.com
 * [new tag]         patchew/1497362826-21125-1-git-send-email-peter.maydell@linaro.org -> patchew/1497362826-21125-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1497367206-4295-1-git-send-email-chugh.ishani@research.iiit.ac.in -> patchew/1497367206-4295-1-git-send-email-chugh.ishani@research.iiit.ac.in
 * [new tag]         patchew/1497369290-20401-1-git-send-email-peter.maydell@linaro.org -> patchew/1497369290-20401-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1497376844-26561-1-git-send-email-thuth@redhat.com -> patchew/1497376844-26561-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497383329-10393-1-git-send-email-thuth@redhat.com -> patchew/1497383329-10393-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497411544-80213-1-git-send-email-liqiang6-s@360.cn -> patchew/1497411544-80213-1-git-send-email-liqiang6-s@360.cn
 * [new tag]         patchew/1497421359-32660-1-git-send-email-sochin.jiang@huawei.com -> patchew/1497421359-32660-1-git-send-email-sochin.jiang@huawei.com
 * [new tag]         patchew/1497426958-20871-1-git-send-email-peterx@redhat.com -> patchew/1497426958-20871-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149744692318.5507.14451686460325895979.stgit@bahia.lan -> patchew/149744692318.5507.14451686460325895979.stgit@bahia.lan
 * [new tag]         patchew/1497458486-15673-1-git-send-email-felipe@nutanix.com -> patchew/1497458486-15673-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1497462278-15961-1-git-send-email-felipe@nutanix.com -> patchew/1497462278-15961-1-git-send-email-felipe@nutanix.com
 * [new tag]         patchew/1497462353-3432-1-git-send-email-edgar.iglesias@gmail.com -> patchew/1497462353-3432-1-git-send-email-edgar.iglesias@gmail.com
 * [new tag]         patchew/1497468113-2874-1-git-send-email-thuth@redhat.com -> patchew/1497468113-2874-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497486973-25845-1-git-send-email-cota@braap.org -> patchew/1497486973-25845-1-git-send-email-cota@braap.org
 * [new tag]         patchew/1497495164-9894-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1497495164-9894-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1497505464-12796-1-git-send-email-bharata@linux.vnet.ibm.com -> patchew/1497505464-12796-1-git-send-email-bharata@linux.vnet.ibm.com
 * [new tag]         patchew/1497509253-28941-1-git-send-email-sochin.jiang@huawei.com -> patchew/1497509253-28941-1-git-send-email-sochin.jiang@huawei.com
 * [new tag]         patchew/1497520197-56796-1-git-send-email-pbonzini@redhat.com -> patchew/1497520197-56796-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1497536433-28009-1-git-send-email-miodrag.dinic@rt-rk.com -> patchew/1497536433-28009-1-git-send-email-miodrag.dinic@rt-rk.com
 * [new tag]         patchew/1497614651-1017-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1497614651-1017-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1497624077-32614-1-git-send-email-kchamart@redhat.com -> patchew/1497624077-32614-1-git-send-email-kchamart@redhat.com
 * [new tag]         patchew/1497624690-1156-2-git-send-email-kchamart@redhat.com -> patchew/1497624690-1156-2-git-send-email-kchamart@redhat.com
 * [new tag]         patchew/1497625153-19812-1-git-send-email-thuth@redhat.com -> patchew/1497625153-19812-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497628168-30489-1-git-send-email-mst@redhat.com -> patchew/1497628168-30489-1-git-send-email-mst@redhat.com
 * [new tag]         patchew/1497628474-13275-1-git-send-email-kwolf@redhat.com -> patchew/1497628474-13275-1-git-send-email-kwolf@redhat.com
 * [new tag]         patchew/1497639316-22202-1-git-send-email-gsomlo@gmail.com -> patchew/1497639316-22202-1-git-send-email-gsomlo@gmail.com
 * [new tag]         patchew/1497639397-19453-1-git-send-email-cota@braap.org -> patchew/1497639397-19453-1-git-send-email-cota@braap.org
 * [new tag]         patchew/1497772934-15561-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1497772934-15561-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1497863771-24929-1-git-send-email-thuth@redhat.com -> patchew/1497863771-24929-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497877149-19253-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1497877149-19253-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1497877896-35700-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1497877896-35700-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1497879848-7612-1-git-send-email-cludwig@genua.de -> patchew/1497879848-7612-1-git-send-email-cludwig@genua.de
 * [new tag]         patchew/1497891926-25299-1-git-send-email-thuth@redhat.com -> patchew/1497891926-25299-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497894617-12143-1-git-send-email-thuth@redhat.com -> patchew/1497894617-12143-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497903262-18626-1-git-send-email-chugh.ishani@research.iiit.ac.in -> patchew/1497903262-18626-1-git-send-email-chugh.ishani@research.iiit.ac.in
 * [new tag]         patchew/1497937927-19738-1-git-send-email-thuth@redhat.com -> patchew/1497937927-19738-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1497962468-22936-1-git-send-email-armbru@redhat.com -> patchew/1497962468-22936-1-git-send-email-armbru@redhat.com
 * [new tag]         patchew/1497973886-26257-1-git-send-email-edgar.iglesias@gmail.com -> patchew/1497973886-26257-1-git-send-email-edgar.iglesias@gmail.com
 * [new tag]         patchew/1498014889-52658-1-git-send-email-wanpeng.li@hotmail.com -> patchew/1498014889-52658-1-git-send-email-wanpeng.li@hotmail.com
 * [new tag]         patchew/1498031528-1990-1-git-send-email-peterx@redhat.com -> patchew/1498031528-1990-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1498040351-6376-2-git-send-email-kchamart@redhat.com -> patchew/1498040351-6376-2-git-send-email-kchamart@redhat.com
 * [new tag]         patchew/1498040401-16361-1-git-send-email-yang.zhong@intel.com -> patchew/1498040401-16361-1-git-send-email-yang.zhong@intel.com
 * [new tag]         patchew/149806690313.3840.13274158676579302242.stgit@bahia.lan -> patchew/149806690313.3840.13274158676579302242.stgit@bahia.lan
 * [new tag]         patchew/1498097238-6301-1-git-send-email-wanpeng.li@hotmail.com -> patchew/1498097238-6301-1-git-send-email-wanpeng.li@hotmail.com
 * [new tag]         patchew/1498117295-162030-1-git-send-email-agraf@suse.de -> patchew/1498117295-162030-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1498117318-162102-1-git-send-email-agraf@suse.de -> patchew/1498117318-162102-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/149814756006.27338.8723356702388175951.stgit@bahia -> patchew/149814756006.27338.8723356702388175951.stgit@bahia
 * [new tag]         patchew/1498155182-27351-1-git-send-email-chugh.ishani@research.iiit.ac.in -> patchew/1498155182-27351-1-git-send-email-chugh.ishani@research.iiit.ac.in
 * [new tag]         patchew/1498187397-127781-1-git-send-email-jsli@synology.com -> patchew/1498187397-127781-1-git-send-email-jsli@synology.com
 * [new tag]         patchew/1498187863-4937-1-git-send-email-li.ping288@zte.com.cn -> patchew/1498187863-4937-1-git-send-email-li.ping288@zte.com.cn
 * [new tag]         patchew/149820029273.7187.14110849422638329192.stgit@bahia.lan -> patchew/149820029273.7187.14110849422638329192.stgit@bahia.lan
 * [new tag]         patchew/149838891852.10366.11525912227070211356.stgit@frigg.lan -> patchew/149838891852.10366.11525912227070211356.stgit@frigg.lan
 * [new tag]         patchew/1498410660-15762-2-git-send-email-zuban32s@gmail.com -> patchew/1498410660-15762-2-git-send-email-zuban32s@gmail.com
 * [new tag]         patchew/1498472935-14461-1-git-send-email-peterx@redhat.com -> patchew/1498472935-14461-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1498475064-39816-1-git-send-email-sochin.jiang@huawei.com -> patchew/1498475064-39816-1-git-send-email-sochin.jiang@huawei.com
 * [new tag]         patchew/1498487280-17836-1-git-send-email-peter.maydell@linaro.org -> patchew/1498487280-17836-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1498490724-20674-1-git-send-email-peter.maydell@linaro.org -> patchew/1498490724-20674-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1498512656-75289-1-git-send-email-agraf@suse.de -> patchew/1498512656-75289-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1498554219-4942-1-git-send-email-peterx@redhat.com -> patchew/1498554219-4942-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149855711979.4578.11884555663631849051.stgit@frigg.lan -> patchew/149855711979.4578.11884555663631849051.stgit@frigg.lan
 * [new tag]         patchew/1498564100-10045-1-git-send-email-thuth@redhat.com -> patchew/1498564100-10045-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1498566850-7934-1-git-send-email-pl@kamp.de -> patchew/1498566850-7934-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1498568923-115764-1-git-send-email-agraf@suse.de -> patchew/1498568923-115764-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1498577737-130264-1-git-send-email-agraf@suse.de -> patchew/1498577737-130264-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1498582198-6649-1-git-send-email-peter.maydell@linaro.org -> patchew/1498582198-6649-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1498584769-12439-1-git-send-email-peter.maydell@linaro.org -> patchew/1498584769-12439-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1498617479-5809-1-git-send-email-wei.w.wang@intel.com -> patchew/1498617479-5809-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/1498629200-35463-1-git-send-email-wei.w.wang@intel.com -> patchew/1498629200-35463-1-git-send-email-wei.w.wang@intel.com
 * [new tag]         patchew/149865219962.17063.10630533069463266646.stgit@frigg.lan -> patchew/149865219962.17063.10630533069463266646.stgit@frigg.lan
 * [new tag]         patchew/1498652927-10554-1-git-send-email-wanpeng.li@hotmail.com -> patchew/1498652927-10554-1-git-send-email-wanpeng.li@hotmail.com
 * [new tag]         patchew/1498661881-9605-1-git-send-email-kchamart@redhat.com -> patchew/1498661881-9605-1-git-send-email-kchamart@redhat.com
 * [new tag]         patchew/149868263738.23385.16723444264552987199.stgit@bahia.lan -> patchew/149868263738.23385.16723444264552987199.stgit@bahia.lan
 * [new tag]         patchew/1498710417-7807-1-git-send-email-peterx@redhat.com -> patchew/1498710417-7807-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1498715394-16402-1-git-send-email-tianyu.lan@intel.com -> patchew/1498715394-16402-1-git-send-email-tianyu.lan@intel.com
 * [new tag]         patchew/1498728221-23979-1-git-send-email-ashijeetacharya@gmail.com -> patchew/1498728221-23979-1-git-send-email-ashijeetacharya@gmail.com
 * [new tag]         patchew/1498728533-23160-1-git-send-email-frederic.konrad@adacore.com -> patchew/1498728533-23160-1-git-send-email-frederic.konrad@adacore.com
 * [new tag]         patchew/1498733831-15254-1-git-send-email-pl@kamp.de -> patchew/1498733831-15254-1-git-send-email-pl@kamp.de
 * [new tag]         patchew/1498734863-164338-1-git-send-email-imammedo@redhat.com -> patchew/1498734863-164338-1-git-send-email-imammedo@redhat.com
 * [new tag]         patchew/149873841036.9180.16600465902334229930.stgit@frigg.lan -> patchew/149873841036.9180.16600465902334229930.stgit@frigg.lan
 * [new tag]         patchew/1498743831-28676-1-git-send-email-groug@kaod.org -> patchew/1498743831-28676-1-git-send-email-groug@kaod.org
 * [new tag]         patchew/1498745240-30658-1-git-send-email-mark.cave-ayland@ilande.co.uk -> patchew/1498745240-30658-1-git-send-email-mark.cave-ayland@ilande.co.uk
 * [new tag]         patchew/1498749056-38565-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1498749056-38565-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1498759215-25382-1-git-send-email-stefanb@linux.vnet.ibm.com -> patchew/1498759215-25382-1-git-send-email-stefanb@linux.vnet.ibm.com
 * [new tag]         patchew/1498768109-4092-1-git-send-email-cota@braap.org -> patchew/1498768109-4092-1-git-send-email-cota@braap.org
 * [new tag]         patchew/1498807478-23921-1-git-send-email-peterx@redhat.com -> patchew/1498807478-23921-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149881542765.17418.16611868807694688341.stgit@bahia -> patchew/149881542765.17418.16611868807694688341.stgit@bahia
 * [new tag]         patchew/149881713243.18888.18140083803237379387.stgit@bahia -> patchew/149881713243.18888.18140083803237379387.stgit@bahia
 * [new tag]         patchew/1498820791-8130-1-git-send-email-peter.maydell@linaro.org -> patchew/1498820791-8130-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1498824184-1249-1-git-send-email-jsli@synology.com -> patchew/1498824184-1249-1-git-send-email-jsli@synology.com
 * [new tag]         patchew/149882869053.24031.15086612121177689276.stgit@bahia.lan -> patchew/149882869053.24031.15086612121177689276.stgit@bahia.lan
 * [new tag]         patchew/1498829133-20598-1-git-send-email-mihajlov@linux.vnet.ibm.com -> patchew/1498829133-20598-1-git-send-email-mihajlov@linux.vnet.ibm.com
 * [new tag]         patchew/1498830302-19274-1-git-send-email-edgar.iglesias@gmail.com -> patchew/1498830302-19274-1-git-send-email-edgar.iglesias@gmail.com
 * [new tag]         patchew/1498838825-23701-1-git-send-email-igor.druzhinin@citrix.com -> patchew/1498838825-23701-1-git-send-email-igor.druzhinin@citrix.com
 * [new tag]         patchew/1498849781-12776-1-git-send-email-chugh.ishani@research.iiit.ac.in -> patchew/1498849781-12776-1-git-send-email-chugh.ishani@research.iiit.ac.in
 * [new tag]         patchew/1498921030-23255-1-git-send-email-benyux.xu@intel.com -> patchew/1498921030-23255-1-git-send-email-benyux.xu@intel.com
 * [new tag]         patchew/1499049848-18012-1-git-send-email-peterx@redhat.com -> patchew/1499049848-18012-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/1499068251-6164-1-git-send-email-mihajlov@linux.vnet.ibm.com -> patchew/1499068251-6164-1-git-send-email-mihajlov@linux.vnet.ibm.com
 * [new tag]         patchew/1499076743-15477-1-git-send-email-yang.zhong@intel.com -> patchew/1499076743-15477-1-git-send-email-yang.zhong@intel.com
 * [new tag]         patchew/1499082529-16970-1-git-send-email-mihajlov@linux.vnet.ibm.com -> patchew/1499082529-16970-1-git-send-email-mihajlov@linux.vnet.ibm.com
 * [new tag]         patchew/1499087861-2132-1-git-send-email-owen.smith@citrix.com -> patchew/1499087861-2132-1-git-send-email-owen.smith@citrix.com
 * [new tag]         patchew/1499094812-13239-1-git-send-email-peter.maydell@linaro.org -> patchew/1499094812-13239-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1499099693-22903-1-git-send-email-pbonzini@redhat.com -> patchew/1499099693-22903-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/149910050540.26371.12575732020425703531.stgit@bahia.lan -> patchew/149910050540.26371.12575732020425703531.stgit@bahia.lan
 * [new tag]         patchew/1499151236-14671-1-git-send-email-zhangchen.fnst@cn.fujitsu.com -> patchew/1499151236-14671-1-git-send-email-zhangchen.fnst@cn.fujitsu.com
 * [new tag]         patchew/149915701334.6295.1724301929524364123.stgit@frigg.lan -> patchew/149915701334.6295.1724301929524364123.stgit@frigg.lan
 * [new tag]         patchew/1499158630-75260-1-git-send-email-longpeng2@huawei.com -> patchew/1499158630-75260-1-git-send-email-longpeng2@huawei.com
 * [new tag]         patchew/1499162088-1562-1-git-send-email-edgar.iglesias@gmail.com -> patchew/1499162088-1562-1-git-send-email-edgar.iglesias@gmail.com
 * [new tag]         patchew/1499166735-39360-1-git-send-email-pbonzini@redhat.com -> patchew/1499166735-39360-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1499170866-9068-1-git-send-email-jasowang@redhat.com -> patchew/1499170866-9068-1-git-send-email-jasowang@redhat.com
 * [new tag]         patchew/1499177279-131407-1-git-send-email-borntraeger@de.ibm.com -> patchew/1499177279-131407-1-git-send-email-borntraeger@de.ibm.com
 * [new tag]         patchew/1499182263-19139-1-git-send-email-pradeep.jagadeesh@huawei.com -> patchew/1499182263-19139-1-git-send-email-pradeep.jagadeesh@huawei.com
 * [new tag]         patchew/1499183267-28623-1-git-send-email-igor.druzhinin@citrix.com -> patchew/1499183267-28623-1-git-send-email-igor.druzhinin@citrix.com
 * [new tag]         patchew/1499186732-32417-1-git-send-email-lu.zhipeng@zte.com.cn -> patchew/1499186732-32417-1-git-send-email-lu.zhipeng@zte.com.cn
 * [new tag]         patchew/1499187763-8211-1-git-send-email-peter.maydell@linaro.org -> patchew/1499187763-8211-1-git-send-email-peter.maydell@linaro.org
 * [new tag]         patchew/1499207612-3560-1-git-send-email-peng.hao2@zte.com.cn -> patchew/1499207612-3560-1-git-send-email-peng.hao2@zte.com.cn
 * [new tag]         patchew/1499211867-3126-1-git-send-email-peng.hao2@zte.com.cn -> patchew/1499211867-3126-1-git-send-email-peng.hao2@zte.com.cn
 * [new tag]         patchew/1499234355-138591-1-git-send-email-agraf@suse.de -> patchew/1499234355-138591-1-git-send-email-agraf@suse.de
 * [new tag]         patchew/1499238885-26161-1-git-send-email-pbonzini@redhat.com -> patchew/1499238885-26161-1-git-send-email-pbonzini@redhat.com
 * [new tag]         patchew/1499242883-2184-1-git-send-email-peterx@redhat.com -> patchew/1499242883-2184-1-git-send-email-peterx@redhat.com
 * [new tag]         patchew/149924459296.25523.6693809356627708668.stgit@bahia.lan -> patchew/149924459296.25523.6693809356627708668.stgit@bahia.lan
 * [new tag]         patchew/1499262995-11621-1-git-send-email-anoob.soman@citrix.com -> patchew/1499262995-11621-1-git-send-email-anoob.soman@citrix.com
 * [new tag]         patchew/1499263324-15184-1-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1499263324-15184-1-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/1499268345-12552-1-git-send-email-thuth@redhat.com -> patchew/1499268345-12552-1-git-send-email-thuth@redhat.com
 * [new tag]         patchew/1499274819-15607-1-git-send-email-clg@kaod.org -> patchew/1499274819-15607-1-git-send-email-clg@kaod.org
 * [new tag]         patchew/1499325817-9166-1-git-send-email-borntraeger@de.ibm.com -> patchew/1499325817-9166-1-git-send-email-borntraeger@de.ibm.com
 * [new tag]         patchew/1499342940-56739-1-git-send-email-anton.nefedov@virtuozzo.com -> patchew/1499342940-56739-1-git-send-email-anton.nefedov@virtuozzo.com
 * [new tag]         patchew/1499351806-3359-1-git-send-email-kchamart@redhat.com -> patchew/1499351806-3359-1-git-send-email-kchamart@redhat.com
 * [new tag]         patchew/1499368127-19855-1-git-send-email-chugh.ishani@research.iiit.ac.in -> patchew/1499368127-19855-1-git-send-email-chugh.ishani@research.iiit.ac.in
 * [new tag]         patchew/19feea44a3f4010645a1b829b504481f1b574b9a.1495797845.git.maozy.fnst@cn.fujitsu.com -> patchew/19feea44a3f4010645a1b829b504481f1b574b9a.1495797845.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/1da30c06-46bd-47fa-b0ef-886ea9ab84e5@ONE.local -> patchew/1da30c06-46bd-47fa-b0ef-886ea9ab84e5@ONE.local
 - [tag update]      patchew/20160908145158.30720-1-paul.burton@imgtec.com -> patchew/20160908145158.30720-1-paul.burton@imgtec.com
 - [tag update]      patchew/20161023070653.1665-1-zxq_yx_007@163.com -> patchew/20161023070653.1665-1-zxq_yx_007@163.com
 * [new tag]         patchew/20161117122000.22577-1-Vincent.Bernat@exoscale.ch -> patchew/20161117122000.22577-1-Vincent.Bernat@exoscale.ch
 * [new tag]         patchew/20161117134948.26790-1-ze.vlad@gmail.com -> patchew/20161117134948.26790-1-ze.vlad@gmail.com
 * [new tag]         patchew/20161117152613.18578-1-marcandre.lureau@redhat.com -> patchew/20161117152613.18578-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20161117155504.21843-1-marcandre.lureau@redhat.com -> patchew/20161117155504.21843-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20161118102452.5779-1-olaf@aepfle.de -> patchew/20161118102452.5779-1-olaf@aepfle.de
 * [new tag]         patchew/20161118103659.10448-1-lersek@redhat.com -> patchew/20161118103659.10448-1-lersek@redhat.com
 * [new tag]         patchew/20161118142406.26039-1-pbonzini@redhat.com -> patchew/20161118142406.26039-1-pbonzini@redhat.com
 * [new tag]         patchew/20161118155500.11050-1-pbonzini@redhat.com -> patchew/20161118155500.11050-1-pbonzini@redhat.com
 * [new tag]         patchew/20161118164230.17870-1-pbonzini@redhat.com -> patchew/20161118164230.17870-1-pbonzini@redhat.com
 * [new tag]         patchew/20161118175128.17192-2-samuel.thibault@ens-lyon.org -> patchew/20161118175128.17192-2-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20161119185318.10564-1-sw@weilnetz.de -> patchew/20161119185318.10564-1-sw@weilnetz.de
 * [new tag]         patchew/20161119192207.18717-1-sw@weilnetz.de -> patchew/20161119192207.18717-1-sw@weilnetz.de
 * [new tag]         patchew/20161119192303.18784-1-sw@weilnetz.de -> patchew/20161119192303.18784-1-sw@weilnetz.de
 * [new tag]         patchew/20161119192926.19632-1-sw@weilnetz.de -> patchew/20161119192926.19632-1-sw@weilnetz.de
 * [new tag]         patchew/20161119194715.19841-1-sw@weilnetz.de -> patchew/20161119194715.19841-1-sw@weilnetz.de
 * [new tag]         patchew/20161119195055.19941-1-sw@weilnetz.de -> patchew/20161119195055.19941-1-sw@weilnetz.de
 * [new tag]         patchew/20161120084136.721-1-Vincent.Bernat@exoscale.ch -> patchew/20161120084136.721-1-Vincent.Bernat@exoscale.ch
 * [new tag]         patchew/20161120170517.9181-2-samuel.thibault@ens-lyon.org -> patchew/20161120170517.9181-2-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20161120231605.D90DD745789@zero.eik.bme.hu -> patchew/20161120231605.D90DD745789@zero.eik.bme.hu
 * [new tag]         patchew/20161121012439.2394-1-w90p710@gmail.com -> patchew/20161121012439.2394-1-w90p710@gmail.com
 * [new tag]         patchew/20161122061059.26058-1-jgross@suse.com -> patchew/20161122061059.26058-1-jgross@suse.com
 * [new tag]         patchew/20161122091907.13034-1-r@hev.cc -> patchew/20161122091907.13034-1-r@hev.cc
 * [new tag]         patchew/20161123094914.15675-1-olaf@aepfle.de -> patchew/20161123094914.15675-1-olaf@aepfle.de
 * [new tag]         patchew/20161123103912.26699-1-olaf@aepfle.de -> patchew/20161123103912.26699-1-olaf@aepfle.de
 * [new tag]         patchew/20161123185258.771-1-dgilbert@redhat.com -> patchew/20161123185258.771-1-dgilbert@redhat.com
 * [new tag]         patchew/20161123194605.94717-1-flus@cesar.org.br -> patchew/20161123194605.94717-1-flus@cesar.org.br
 * [new tag]         patchew/20161125100629.88589-1-haoqf@linux.vnet.ibm.com -> patchew/20161125100629.88589-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20161125153040.24477-1-anthony.perard@citrix.com -> patchew/20161125153040.24477-1-anthony.perard@citrix.com
 * [new tag]         patchew/20161126054650.4486-1-haoqf@linux.vnet.ibm.com -> patchew/20161126054650.4486-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20161126235405.1357-1-mreitz@redhat.com -> patchew/20161126235405.1357-1-mreitz@redhat.com
 * [new tag]         patchew/20161127015622.24105-1-mreitz@redhat.com -> patchew/20161127015622.24105-1-mreitz@redhat.com
 * [new tag]         patchew/20161127162817.15144-1-bunk@stusta.de -> patchew/20161127162817.15144-1-bunk@stusta.de
 * [new tag]         patchew/20161128085816.6161-1-w90p710@gmail.com -> patchew/20161128085816.6161-1-w90p710@gmail.com
 * [new tag]         patchew/20161128133201.16104-1-dgilbert@redhat.com -> patchew/20161128133201.16104-1-dgilbert@redhat.com
 * [new tag]         patchew/20161128195701.24912-1-lersek@redhat.com -> patchew/20161128195701.24912-1-lersek@redhat.com
 * [new tag]         patchew/20161129100724.15207-1-stefanha@redhat.com -> patchew/20161129100724.15207-1-stefanha@redhat.com
 * [new tag]         patchew/20161129103438.15955-1-famz@redhat.com -> patchew/20161129103438.15955-1-famz@redhat.com
 * [new tag]         patchew/20161129113245.32724-1-pbonzini@redhat.com -> patchew/20161129113245.32724-1-pbonzini@redhat.com
 * [new tag]         patchew/20161129113334.605-1-pbonzini@redhat.com -> patchew/20161129113334.605-1-pbonzini@redhat.com
 * [new tag]         patchew/20161129114707.2975-1-pbonzini@redhat.com -> patchew/20161129114707.2975-1-pbonzini@redhat.com
 * [new tag]         patchew/20161129153701.29472-1-pbonzini@redhat.com -> patchew/20161129153701.29472-1-pbonzini@redhat.com
 * [new tag]         patchew/20161129153720.29747-1-pbonzini@redhat.com -> patchew/20161129153720.29747-1-pbonzini@redhat.com
 * [new tag]         patchew/20161129193052.11736-1-flus@cesar.org.br -> patchew/20161129193052.11736-1-flus@cesar.org.br
 * [new tag]         patchew/20161129195533.23113-1-lersek@redhat.com -> patchew/20161129195533.23113-1-lersek@redhat.com
 * [new tag]         patchew/20161130011851.24696-1-mreitz@redhat.com -> patchew/20161130011851.24696-1-mreitz@redhat.com
 * [new tag]         patchew/20161130053629.23340-1-alastair@au1.ibm.com -> patchew/20161130053629.23340-1-alastair@au1.ibm.com
 * [new tag]         patchew/20161130101017.13382-1-maxime.coquelin@redhat.com -> patchew/20161130101017.13382-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20161201014621.12127-1-r@hev.cc -> patchew/20161201014621.12127-1-r@hev.cc
 * [new tag]         patchew/20161201020508.24417-1-mreitz@redhat.com -> patchew/20161201020508.24417-1-mreitz@redhat.com
 * [new tag]         patchew/20161201044441.14365-1-david@gibson.dropbear.id.au -> patchew/20161201044441.14365-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20161201052844.31819-1-bobby.prani@gmail.com -> patchew/20161201052844.31819-1-bobby.prani@gmail.com
 * [new tag]         patchew/20161201090343.16448-1-pbonzini@redhat.com -> patchew/20161201090343.16448-1-pbonzini@redhat.com
 * [new tag]         patchew/20161201093359.10218-1-berrange@redhat.com -> patchew/20161201093359.10218-1-berrange@redhat.com
 * [new tag]         patchew/20161201094117.16407-1-berrange@redhat.com -> patchew/20161201094117.16407-1-berrange@redhat.com
 * [new tag]         patchew/20161201170624.26496-1-lersek@redhat.com -> patchew/20161201170624.26496-1-lersek@redhat.com
 * [new tag]         patchew/20161201192652.9509-1-stefanha@redhat.com -> patchew/20161201192652.9509-1-stefanha@redhat.com
 * [new tag]         patchew/20161202054617.6749-1-alastair@au1.ibm.com -> patchew/20161202054617.6749-1-alastair@au1.ibm.com
 * [new tag]         patchew/20161202104037.5456-1-lersek@redhat.com -> patchew/20161202104037.5456-1-lersek@redhat.com
 * [new tag]         patchew/20161202173454.19179-1-alex.bennee@linaro.org -> patchew/20161202173454.19179-1-alex.bennee@linaro.org
 * [new tag]         patchew/20161202194854.18737-1-eblake@redhat.com -> patchew/20161202194854.18737-1-eblake@redhat.com
 * [new tag]         patchew/20161202210152.6880-1-lersek@redhat.com -> patchew/20161202210152.6880-1-lersek@redhat.com
 * [new tag]         patchew/20161203173402.12537-1-eblake@redhat.com -> patchew/20161203173402.12537-1-eblake@redhat.com
 * [new tag]         patchew/20161205035647.17406-1-npiggin@gmail.com -> patchew/20161205035647.17406-1-npiggin@gmail.com
 * [new tag]         patchew/20161205105241.8585-1-lma@suse.com -> patchew/20161205105241.8585-1-lma@suse.com
 * [new tag]         patchew/20161205154934.24999-1-eblake@redhat.com -> patchew/20161205154934.24999-1-eblake@redhat.com
 * [new tag]         patchew/20161206110836.21687-1-pbonzini@redhat.com -> patchew/20161206110836.21687-1-pbonzini@redhat.com
 * [new tag]         patchew/20161206141343.28044-1-marcandre.lureau@redhat.com -> patchew/20161206141343.28044-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20161206145104.16048-1-alex.bennee@linaro.org -> patchew/20161206145104.16048-1-alex.bennee@linaro.org
 * [new tag]         patchew/20161206150004.19758-1-alex.bennee@linaro.org -> patchew/20161206150004.19758-1-alex.bennee@linaro.org
 * [new tag]         patchew/20161206160345.22425-1-eblake@redhat.com -> patchew/20161206160345.22425-1-eblake@redhat.com
 * [new tag]         patchew/20161206182020.25736-1-eblake@redhat.com -> patchew/20161206182020.25736-1-eblake@redhat.com
 * [new tag]         patchew/20161206190007.7539-1-fabian@lesniak-it.de -> patchew/20161206190007.7539-1-fabian@lesniak-it.de
 * [new tag]         patchew/20161206193159.GE4027@thinpad.lan.raisama.net -> patchew/20161206193159.GE4027@thinpad.lan.raisama.net
 * [new tag]         patchew/20161207105511.25173-1-marcandre.lureau@redhat.com -> patchew/20161207105511.25173-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20161207123959.4565-1-fziglio@redhat.com -> patchew/20161207123959.4565-1-fziglio@redhat.com
 * [new tag]         patchew/20161207125130.5184-1-fziglio@redhat.com -> patchew/20161207125130.5184-1-fziglio@redhat.com
 * [new tag]         patchew/20161207150827.23791-1-pbonzini@redhat.com -> patchew/20161207150827.23791-1-pbonzini@redhat.com
 * [new tag]         patchew/20161207160037.4583-1-fziglio@redhat.com -> patchew/20161207160037.4583-1-fziglio@redhat.com
 * [new tag]         patchew/20161207180727.6286-1-rth@twiddle.net -> patchew/20161207180727.6286-1-rth@twiddle.net
 * [new tag]         patchew/20161207181521.6591-1-rth@twiddle.net -> patchew/20161207181521.6591-1-rth@twiddle.net
 * [new tag]         patchew/20161208104539.3045-1-fziglio@redhat.com -> patchew/20161208104539.3045-1-fziglio@redhat.com
 * [new tag]         patchew/20161208124103.9813-1-berrange@redhat.com -> patchew/20161208124103.9813-1-berrange@redhat.com
 * [new tag]         patchew/20161208162150.148763-2-kirill.shutemov@linux.intel.com -> patchew/20161208162150.148763-2-kirill.shutemov@linux.intel.com
 * [new tag]         patchew/20161209143703.29457-1-drjones@redhat.com -> patchew/20161209143703.29457-1-drjones@redhat.com
 * [new tag]         patchew/20161209172547.31550-1-jsnow@redhat.com -> patchew/20161209172547.31550-1-jsnow@redhat.com
 * [new tag]         patchew/20161210153038.9184-1-maxime.coquelin@redhat.com -> patchew/20161210153038.9184-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20161212111857.23399-1-pbonzini@redhat.com -> patchew/20161212111857.23399-1-pbonzini@redhat.com
 * [new tag]         patchew/20161212125838.14425-1-dgilbert@redhat.com -> patchew/20161212125838.14425-1-dgilbert@redhat.com
 * [new tag]         patchew/20161212213430.20071.7346.stgit@gimli.home -> patchew/20161212213430.20071.7346.stgit@gimli.home
 * [new tag]         patchew/20161212221759.28949-1-marcandre.lureau@redhat.com -> patchew/20161212221759.28949-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20161212224325.20790-1-marcandre.lureau@redhat.com -> patchew/20161212224325.20790-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20161213071439.32322-1-ppandit@redhat.com -> patchew/20161213071439.32322-1-ppandit@redhat.com
 * [new tag]         patchew/20161213132205.9114-1-alex.bennee@linaro.org -> patchew/20161213132205.9114-1-alex.bennee@linaro.org
 * [new tag]         patchew/20161213151753.17020-1-pbonzini@redhat.com -> patchew/20161213151753.17020-1-pbonzini@redhat.com
 * [new tag]         patchew/20161213151753.17020-2-pbonzini@redhat.com -> patchew/20161213151753.17020-2-pbonzini@redhat.com
 * [new tag]         patchew/20161213214917.6436-1-stefanha@redhat.com -> patchew/20161213214917.6436-1-stefanha@redhat.com
 * [new tag]         patchew/20161214064820.12480-1-hangaohuai@huawei.com -> patchew/20161214064820.12480-1-hangaohuai@huawei.com
 * [new tag]         patchew/20161214070156.23368-1-ppandit@redhat.com -> patchew/20161214070156.23368-1-ppandit@redhat.com
 * [new tag]         patchew/20161214125237.20850-1-maxime.coquelin@redhat.com -> patchew/20161214125237.20850-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20161214142518.10504-1-stefanha@redhat.com -> patchew/20161214142518.10504-1-stefanha@redhat.com
 * [new tag]         patchew/20161214161958.2958-1-maxime.coquelin@redhat.com -> patchew/20161214161958.2958-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20161214163035.3297-1-maxime.coquelin@redhat.com -> patchew/20161214163035.3297-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20161214195829.18241-1-dgilbert@redhat.com -> patchew/20161214195829.18241-1-dgilbert@redhat.com
 * [new tag]         patchew/20161215001305.146807-1-kirill.shutemov@linux.intel.com -> patchew/20161215001305.146807-1-kirill.shutemov@linux.intel.com
 * [new tag]         patchew/20161215110459.27985-1-ncopa@alpinelinux.org -> patchew/20161215110459.27985-1-ncopa@alpinelinux.org
 * [new tag]         patchew/20161215123656.27985-1-alex.bennee@linaro.org -> patchew/20161215123656.27985-1-alex.bennee@linaro.org
 * [new tag]         patchew/20161215154330.700-1-pasic@linux.vnet.ibm.com -> patchew/20161215154330.700-1-pasic@linux.vnet.ibm.com
 * [new tag]         patchew/20161216052040.53067-1-haoqf@linux.vnet.ibm.com -> patchew/20161216052040.53067-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20161216073557.2688-1-hangaohuai@huawei.com -> patchew/20161216073557.2688-1-hangaohuai@huawei.com
 * [new tag]         patchew/20161216082322.14160-1-hangaohuai@huawei.com -> patchew/20161216082322.14160-1-hangaohuai@huawei.com
 * [new tag]         patchew/20161216114155.18446-1-dgilbert@redhat.com -> patchew/20161216114155.18446-1-dgilbert@redhat.com
 * [new tag]         patchew/20161216152319.12494-1-leif.lindholm@linaro.org -> patchew/20161216152319.12494-1-leif.lindholm@linaro.org
 * [new tag]         patchew/20161219060336.10176-1-hangaohuai@huawei.com -> patchew/20161219060336.10176-1-hangaohuai@huawei.com
 * [new tag]         patchew/20161219205054.4677-1-kirkseraph@gmail.com -> patchew/20161219205054.4677-1-kirkseraph@gmail.com
 * [new tag]         patchew/20161220163139.12016-1-famz@redhat.com -> patchew/20161220163139.12016-1-famz@redhat.com
 * [new tag]         patchew/20161220191523.5779-1-eblake@redhat.com -> patchew/20161220191523.5779-1-eblake@redhat.com
 * [new tag]         patchew/20161220230732.17862-1-samuel.thibault@ens-lyon.org -> patchew/20161220230732.17862-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20161221003806.22412-1-samuel.thibault@ens-lyon.org -> patchew/20161221003806.22412-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20161221143541.9260-1-berrange@redhat.com -> patchew/20161221143541.9260-1-berrange@redhat.com
 * [new tag]         patchew/20161222011312.12778-1-aik@ozlabs.ru -> patchew/20161222011312.12778-1-aik@ozlabs.ru
 * [new tag]         patchew/20161222052212.49006-1-aik@ozlabs.ru -> patchew/20161222052212.49006-1-aik@ozlabs.ru
 * [new tag]         patchew/20161222104740.19606-1-berrange@redhat.com -> patchew/20161222104740.19606-1-berrange@redhat.com
 * [new tag]         patchew/20161222151828.28292-1-leif.lindholm@linaro.org -> patchew/20161222151828.28292-1-leif.lindholm@linaro.org
 * [new tag]         patchew/20161222152300.32395-1-pbonzini@redhat.com -> patchew/20161222152300.32395-1-pbonzini@redhat.com
 * [new tag]         patchew/20161223151253.21338-1-msuchanek@suse.de -> patchew/20161223151253.21338-1-msuchanek@suse.de
 * [new tag]         patchew/20161223154853.23672-1-msuchanek@suse.de -> patchew/20161223154853.23672-1-msuchanek@suse.de
 * [new tag]         patchew/20161224034637.12207-1-rth@twiddle.net -> patchew/20161224034637.12207-1-rth@twiddle.net
 * [new tag]         patchew/20161224151113.23955-1-jcd@tribudubois.net -> patchew/20161224151113.23955-1-jcd@tribudubois.net
 * [new tag]         patchew/20161225082559.2095-1-zxq_yx_007@163.com -> patchew/20161225082559.2095-1-zxq_yx_007@163.com
 * [new tag]         patchew/20161227165947.20184-1-Sergio.G.DelReal@gmail.com -> patchew/20161227165947.20184-1-Sergio.G.DelReal@gmail.com
 * [new tag]         patchew/20161227231156.22745-1-Sergio.G.DelReal@gmail.com -> patchew/20161227231156.22745-1-Sergio.G.DelReal@gmail.com
 * [new tag]         patchew/20161228145344.30819-1-cov@codeaurora.org -> patchew/20161228145344.30819-1-cov@codeaurora.org
 * [new tag]         patchew/20161228200433.24244-1-cov@codeaurora.org -> patchew/20161228200433.24244-1-cov@codeaurora.org
 * [new tag]         patchew/20161229091619.31049-1-fanc.fnst@cn.fujitsu.com -> patchew/20161229091619.31049-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20161229223815.13705-1-ehabkost@redhat.com -> patchew/20161229223815.13705-1-ehabkost@redhat.com
 * [new tag]         patchew/20161230143142.18214-1-pbutsykin@virtuozzo.com -> patchew/20161230143142.18214-1-pbutsykin@virtuozzo.com
 * [new tag]         patchew/20161231011720.3965-1-zxq_yx_007@163.com -> patchew/20161231011720.3965-1-zxq_yx_007@163.com
 * [new tag]         patchew/20161231011808.4037-1-zxq_yx_007@163.com -> patchew/20161231011808.4037-1-zxq_yx_007@163.com
 * [new tag]         patchew/20161231011831.4097-1-zxq_yx_007@163.com -> patchew/20161231011831.4097-1-zxq_yx_007@163.com
 * [new tag]         patchew/20161231011847.4153-1-zxq_yx_007@163.com -> patchew/20161231011847.4153-1-zxq_yx_007@163.com
 * [new tag]         patchew/20170102124424.1031-1-kirkseraph@gmail.com -> patchew/20170102124424.1031-1-kirkseraph@gmail.com
 * [new tag]         patchew/20170102184258.2442-1-bobby.prani@gmail.com -> patchew/20170102184258.2442-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170102205521.4101-1-jcd@tribudubois.net -> patchew/20170102205521.4101-1-jcd@tribudubois.net
 * [new tag]         patchew/20170102205536.4151-1-jcd@tribudubois.net -> patchew/20170102205536.4151-1-jcd@tribudubois.net
 * [new tag]         patchew/20170102211104.4753-1-jcd@tribudubois.net -> patchew/20170102211104.4753-1-jcd@tribudubois.net
 * [new tag]         patchew/20170102211110.4801-1-jcd@tribudubois.net -> patchew/20170102211110.4801-1-jcd@tribudubois.net
 * [new tag]         patchew/20170103160556.9895-1-berrange@redhat.com -> patchew/20170103160556.9895-1-berrange@redhat.com
 * [new tag]         patchew/20170103170010.25905-1-berrange@redhat.com -> patchew/20170103170010.25905-1-berrange@redhat.com
 * [new tag]         patchew/20170103170459.27662-1-berrange@redhat.com -> patchew/20170103170459.27662-1-berrange@redhat.com
 * [new tag]         patchew/20170103172210.26034-1-pbonzini@redhat.com -> patchew/20170103172210.26034-1-pbonzini@redhat.com
 * [new tag]         patchew/20170103182801.9638-1-berrange@redhat.com -> patchew/20170103182801.9638-1-berrange@redhat.com
 * [new tag]         patchew/20170103191933.19416-1-marcandre.lureau@redhat.com -> patchew/20170103191933.19416-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170103203502.25907-1-jcd@tribudubois.net -> patchew/20170103203502.25907-1-jcd@tribudubois.net
 * [new tag]         patchew/20170103211705.27876-1-jcd@tribudubois.net -> patchew/20170103211705.27876-1-jcd@tribudubois.net
 * [new tag]         patchew/20170104125218.26583-1-pbonzini@redhat.com -> patchew/20170104125218.26583-1-pbonzini@redhat.com
 * [new tag]         patchew/20170104132625.28059-1-pbonzini@redhat.com -> patchew/20170104132625.28059-1-pbonzini@redhat.com
 * [new tag]         patchew/20170104133414.6524-1-stefanha@redhat.com -> patchew/20170104133414.6524-1-stefanha@redhat.com
 * [new tag]         patchew/20170104145210.31608-1-pbonzini@redhat.com -> patchew/20170104145210.31608-1-pbonzini@redhat.com
 * [new tag]         patchew/20170104145624.2849-1-pbonzini@redhat.com -> patchew/20170104145624.2849-1-pbonzini@redhat.com
 * [new tag]         patchew/20170104145652.30442-1-nathan@nathanrossi.com -> patchew/20170104145652.30442-1-nathan@nathanrossi.com
 * [new tag]         patchew/20170104145914.3361-1-pbonzini@redhat.com -> patchew/20170104145914.3361-1-pbonzini@redhat.com
 * [new tag]         patchew/20170104150525.4246-1-pbonzini@redhat.com -> patchew/20170104150525.4246-1-pbonzini@redhat.com
 * [new tag]         patchew/20170104205722.26492-1-marcandre.lureau@redhat.com -> patchew/20170104205722.26492-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170104205936.27279-1-marcandre.lureau@redhat.com -> patchew/20170104205936.27279-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170104220624.26557-1-jcd@tribudubois.net -> patchew/20170104220624.26557-1-jcd@tribudubois.net
 * [new tag]         patchew/20170105043430.3176-1-alastair@au1.ibm.com -> patchew/20170105043430.3176-1-alastair@au1.ibm.com
 * [new tag]         patchew/20170105135957.12003-1-marcandre.lureau@redhat.com -> patchew/20170105135957.12003-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170105160321.21786-1-berrange@redhat.com -> patchew/20170105160321.21786-1-berrange@redhat.com
 * [new tag]         patchew/20170105160701.22118-1-berrange@redhat.com -> patchew/20170105160701.22118-1-berrange@redhat.com
 * [new tag]         patchew/20170105164105.23859-1-sbruno@freebsd.org -> patchew/20170105164105.23859-1-sbruno@freebsd.org
 * [new tag]         patchew/20170105173107.5426-1-stefanha@redhat.com -> patchew/20170105173107.5426-1-stefanha@redhat.com
 * [new tag]         patchew/20170105195349.28031-1-andrew.smirnov@gmail.com -> patchew/20170105195349.28031-1-andrew.smirnov@gmail.com
 * [new tag]         patchew/20170105202636.4003-1-andrew.smirnov@gmail.com -> patchew/20170105202636.4003-1-andrew.smirnov@gmail.com
 * [new tag]         patchew/20170106002628.10343-1-zxq_yx_007@163.com -> patchew/20170106002628.10343-1-zxq_yx_007@163.com
 * [new tag]         patchew/20170106011023.24057-1-zxq_yx_007@163.com -> patchew/20170106011023.24057-1-zxq_yx_007@163.com
 * [new tag]         patchew/20170106050451.11793-1-david@gibson.dropbear.id.au -> patchew/20170106050451.11793-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170106083956.53d08923@thl530 -> patchew/20170106083956.53d08923@thl530
 * [new tag]         patchew/20170106105855.12c0ce73@thl530 -> patchew/20170106105855.12c0ce73@thl530
 * [new tag]         patchew/20170106152930.6779-1-stefanha@redhat.com -> patchew/20170106152930.6779-1-stefanha@redhat.com
 * [new tag]         patchew/20170106155543.12827-1-berrange@redhat.com -> patchew/20170106155543.12827-1-berrange@redhat.com
 * [new tag]         patchew/20170106162116.12859-1-kirkseraph@gmail.com -> patchew/20170106162116.12859-1-kirkseraph@gmail.com
 * [new tag]         patchew/20170106182823.1960-1-dgilbert@redhat.com -> patchew/20170106182823.1960-1-dgilbert@redhat.com
 * [new tag]         patchew/20170106184948.3422-1-mar.krzeminski@gmail.com -> patchew/20170106184948.3422-1-mar.krzeminski@gmail.com
 * [new tag]         patchew/20170107111631.24444-1-jcd@tribudubois.net -> patchew/20170107111631.24444-1-jcd@tribudubois.net
 * [new tag]         patchew/20170107122047.26300-1-jcd@tribudubois.net -> patchew/20170107122047.26300-1-jcd@tribudubois.net
 * [new tag]         patchew/20170107123531.5994-1-kirkseraph@gmail.com -> patchew/20170107123531.5994-1-kirkseraph@gmail.com
 * [new tag]         patchew/20170108083854.5006-1-mar.krzeminski@gmail.com -> patchew/20170108083854.5006-1-mar.krzeminski@gmail.com
 * [new tag]         patchew/20170108171330.11129-1-ehabkost@redhat.com -> patchew/20170108171330.11129-1-ehabkost@redhat.com
 * [new tag]         patchew/20170108194041.10908-1-ehabkost@redhat.com -> patchew/20170108194041.10908-1-ehabkost@redhat.com
 * [new tag]         patchew/20170109100123.5080-1-jinguojie@loongson.cn -> patchew/20170109100123.5080-1-jinguojie@loongson.cn
 * [new tag]         patchew/20170109110921.4931-1-rka@sysgo.com -> patchew/20170109110921.4931-1-rka@sysgo.com
 * [new tag]         patchew/20170109112338.5629-1-rka@sysgo.com -> patchew/20170109112338.5629-1-rka@sysgo.com
 * [new tag]         patchew/20170109115608.18150-1-pbonzini@redhat.com -> patchew/20170109115608.18150-1-pbonzini@redhat.com
 * [new tag]         patchew/20170109130749.9795-1-rka@sysgo.com -> patchew/20170109130749.9795-1-rka@sysgo.com
 * [new tag]         patchew/20170109143437.30554-1-marcandre.lureau@redhat.com -> patchew/20170109143437.30554-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170109153914.27424-1-berrange@redhat.com -> patchew/20170109153914.27424-1-berrange@redhat.com
 * [new tag]         patchew/20170109201340.16593-1-dgilbert@redhat.com -> patchew/20170109201340.16593-1-dgilbert@redhat.com
 * [new tag]         patchew/20170109203520.5619-1-brogers@suse.com -> patchew/20170109203520.5619-1-brogers@suse.com
 * [new tag]         patchew/20170110110621.15287-1-marcandre.lureau@redhat.com -> patchew/20170110110621.15287-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170111021820.24416-1-rth@twiddle.net -> patchew/20170111021820.24416-1-rth@twiddle.net
 * [new tag]         patchew/20170111083815.19941-1-pbonzini@redhat.com -> patchew/20170111083815.19941-1-pbonzini@redhat.com
 * [new tag]         patchew/20170111093630.2088-1-stefanha@redhat.com -> patchew/20170111093630.2088-1-stefanha@redhat.com
 * [new tag]         patchew/20170111093742.21946-1-cornelia.huck@de.ibm.com -> patchew/20170111093742.21946-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170111094443.2790-1-stefanha@redhat.com -> patchew/20170111094443.2790-1-stefanha@redhat.com
 * [new tag]         patchew/20170111113347.7577-1-marcandre.lureau@redhat.com -> patchew/20170111113347.7577-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170111134549.32669-1-kbastian@mail.uni-paderborn.de -> patchew/20170111134549.32669-1-kbastian@mail.uni-paderborn.de
 * [new tag]         patchew/20170111173457.30455-1-lersek@redhat.com -> patchew/20170111173457.30455-1-lersek@redhat.com
 * [new tag]         patchew/20170111181432.18868-1-mreitz@redhat.com -> patchew/20170111181432.18868-1-mreitz@redhat.com
 * [new tag]         patchew/20170111182455.15160-1-nirsof@gmail.com -> patchew/20170111182455.15160-1-nirsof@gmail.com
 * [new tag]         patchew/20170112020327.24882-1-david@gibson.dropbear.id.au -> patchew/20170112020327.24882-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170112025606.27332-1-rth@twiddle.net -> patchew/20170112025606.27332-1-rth@twiddle.net
 * [new tag]         patchew/20170112040534.15179-1-rth@twiddle.net -> patchew/20170112040534.15179-1-rth@twiddle.net
 * [new tag]         patchew/20170112072513.98411-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170112072513.98411-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170112105132.10394-1-pbonzini@redhat.com -> patchew/20170112105132.10394-1-pbonzini@redhat.com
 * [new tag]         patchew/20170112114612.14520-1-stefanha@redhat.com -> patchew/20170112114612.14520-1-stefanha@redhat.com
 * [new tag]         patchew/20170112131658.19837-1-alex.bennee@linaro.org -> patchew/20170112131658.19837-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170112154731.1028-1-alex.bennee@linaro.org -> patchew/20170112154731.1028-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170112165531.11882-1-pbonzini@redhat.com -> patchew/20170112165531.11882-1-pbonzini@redhat.com
 * [new tag]         patchew/20170112175356.21701-1-ehabkost@redhat.com -> patchew/20170112175356.21701-1-ehabkost@redhat.com
 * [new tag]         patchew/20170112180800.21085-1-pbonzini@redhat.com -> patchew/20170112180800.21085-1-pbonzini@redhat.com
 * [new tag]         patchew/20170112182417.9548-1-lersek@redhat.com -> patchew/20170112182417.9548-1-lersek@redhat.com
 * [new tag]         patchew/20170113115651.17607-1-haozhong.zhang@intel.com -> patchew/20170113115651.17607-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170113144135.5150-1-marcandre.lureau@redhat.com -> patchew/20170113144135.5150-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170113145633.15384-1-alex.bennee@linaro.org -> patchew/20170113145633.15384-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170113190057.6327-1-ehabkost@redhat.com -> patchew/20170113190057.6327-1-ehabkost@redhat.com
 * [new tag]         patchew/20170113200556.2574-1-rth@twiddle.net -> patchew/20170113200556.2574-1-rth@twiddle.net
 * [new tag]         patchew/20170113220028.29687-1-shorne@gmail.com -> patchew/20170113220028.29687-1-shorne@gmail.com
 * [new tag]         patchew/20170115100334.15694-1-lma@suse.com -> patchew/20170115100334.15694-1-lma@suse.com
 * [new tag]         patchew/20170116133911.21684-1-stefanha@redhat.com -> patchew/20170116133911.21684-1-stefanha@redhat.com
 * [new tag]         patchew/20170116134455.28636-1-stefanha@redhat.com -> patchew/20170116134455.28636-1-stefanha@redhat.com
 * [new tag]         patchew/20170116155113.21034-1-pbutsykin@virtuozzo.com -> patchew/20170116155113.21034-1-pbutsykin@virtuozzo.com
 * [new tag]         patchew/20170116160730.4696-1-famz@redhat.com -> patchew/20170116160730.4696-1-famz@redhat.com
 * [new tag]         patchew/20170116165916.8575-1-pbonzini@redhat.com -> patchew/20170116165916.8575-1-pbonzini@redhat.com
 * [new tag]         patchew/20170116181212.31565-1-ehabkost@redhat.com -> patchew/20170116181212.31565-1-ehabkost@redhat.com
 * [new tag]         patchew/20170116211201.46601-1-farman@linux.vnet.ibm.com -> patchew/20170116211201.46601-1-farman@linux.vnet.ibm.com
 * [new tag]         patchew/20170116223140.18634-2-glaubitz@physik.fu-berlin.de -> patchew/20170116223140.18634-2-glaubitz@physik.fu-berlin.de
 * [new tag]         patchew/20170116224431.19010-2-glaubitz@physik.fu-berlin.de -> patchew/20170116224431.19010-2-glaubitz@physik.fu-berlin.de
 * [new tag]         patchew/20170116224915.19430-2-glaubitz@physik.fu-berlin.de -> patchew/20170116224915.19430-2-glaubitz@physik.fu-berlin.de
 * [new tag]         patchew/20170117004409.28532-1-marex@denx.de -> patchew/20170117004409.28532-1-marex@denx.de
 * [new tag]         patchew/20170117010204.4909-1-ehabkost@redhat.com -> patchew/20170117010204.4909-1-ehabkost@redhat.com
 * [new tag]         patchew/20170117043348.21314-1-lma@suse.com -> patchew/20170117043348.21314-1-lma@suse.com
 * [new tag]         patchew/20170117085645.4267-1-cornelia.huck@de.ibm.com -> patchew/20170117085645.4267-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170117180051.11958-1-ehabkost@redhat.com -> patchew/20170117180051.11958-1-ehabkost@redhat.com
 * [new tag]         patchew/20170117184638.25809-1-ehabkost@redhat.com -> patchew/20170117184638.25809-1-ehabkost@redhat.com
 * [new tag]         patchew/20170117190056.1195-2-anonym@riseup.net -> patchew/20170117190056.1195-2-anonym@riseup.net
 * [new tag]         patchew/20170117193033.23178-1-ehabkost@redhat.com -> patchew/20170117193033.23178-1-ehabkost@redhat.com
 * [new tag]         patchew/20170117230332.16279-1-rth@twiddle.net -> patchew/20170117230332.16279-1-rth@twiddle.net
 * [new tag]         patchew/20170118160332.13390-1-marcandre.lureau@redhat.com -> patchew/20170118160332.13390-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170118161653.19296-1-eblake@redhat.com -> patchew/20170118161653.19296-1-eblake@redhat.com
 * [new tag]         patchew/20170118220146.489-1-marex@denx.de -> patchew/20170118220146.489-1-marex@denx.de
 * [new tag]         patchew/20170119130759.28319-1-famz@redhat.com -> patchew/20170119130759.28319-1-famz@redhat.com
 * [new tag]         patchew/20170119143816.21972-1-famz@redhat.com -> patchew/20170119143816.21972-1-famz@redhat.com
 * [new tag]         patchew/20170119170507.16185-1-alex.bennee@linaro.org -> patchew/20170119170507.16185-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170119205134.50112-1-farman@linux.vnet.ibm.com -> patchew/20170119205134.50112-1-farman@linux.vnet.ibm.com
 * [new tag]         patchew/20170119210741.10814-1-pbonzini@redhat.com -> patchew/20170119210741.10814-1-pbonzini@redhat.com
 * [new tag]         patchew/20170120072310.8009-1-famz@redhat.com -> patchew/20170120072310.8009-1-famz@redhat.com
 * [new tag]         patchew/20170120091553.11013-1-cornelia.huck@de.ibm.com -> patchew/20170120091553.11013-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170120133139.31080-1-pbonzini@redhat.com -> patchew/20170120133139.31080-1-pbonzini@redhat.com
 * [new tag]         patchew/20170120162527.66075-1-farman@linux.vnet.ibm.com -> patchew/20170120162527.66075-1-farman@linux.vnet.ibm.com
 * [new tag]         patchew/20170120170757.30308-1-pbonzini@redhat.com -> patchew/20170120170757.30308-1-pbonzini@redhat.com
 * [new tag]         patchew/20170120230359.4244-1-eblake@redhat.com -> patchew/20170120230359.4244-1-eblake@redhat.com
 * [new tag]         patchew/20170121084600.5860-1-ale+qemu@clearmind.me -> patchew/20170121084600.5860-1-ale+qemu@clearmind.me
 * [new tag]         patchew/20170121105949.15466-1-jazeltq@gmail.com -> patchew/20170121105949.15466-1-jazeltq@gmail.com
 * [new tag]         patchew/20170121131909.17230-1-jazeltq@gmail.com -> patchew/20170121131909.17230-1-jazeltq@gmail.com
 * [new tag]         patchew/20170122133831.26150-1-sw@weilnetz.de -> patchew/20170122133831.26150-1-sw@weilnetz.de
 * [new tag]         patchew/20170122145407.27476-1-sw@weilnetz.de -> patchew/20170122145407.27476-1-sw@weilnetz.de
 * [new tag]         patchew/20170123123056.30383-1-famz@redhat.com -> patchew/20170123123056.30383-1-famz@redhat.com
 * [new tag]         patchew/20170123142629.11110-1-berrange@redhat.com -> patchew/20170123142629.11110-1-berrange@redhat.com
 * [new tag]         patchew/20170123155737.3793-1-berrange@redhat.com -> patchew/20170123155737.3793-1-berrange@redhat.com
 * [new tag]         patchew/20170123180632.28942-1-ehabkost@redhat.com -> patchew/20170123180632.28942-1-ehabkost@redhat.com
 * [new tag]         patchew/20170123221650.9267-1-rth@twiddle.net -> patchew/20170123221650.9267-1-rth@twiddle.net
 * [new tag]         patchew/20170123232738.20796-1-ehabkost@redhat.com -> patchew/20170123232738.20796-1-ehabkost@redhat.com
 * [new tag]         patchew/20170124071654.4572.41407.stgit@PASHA-ISP -> patchew/20170124071654.4572.41407.stgit@PASHA-ISP
 * [new tag]         patchew/20170124092820.23832-1-cornelia.huck@de.ibm.com -> patchew/20170124092820.23832-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170124095332.23955-1-berrange@redhat.com -> patchew/20170124095332.23955-1-berrange@redhat.com
 * [new tag]         patchew/20170124095350.16679-1-stefanha@redhat.com -> patchew/20170124095350.16679-1-stefanha@redhat.com
 * [new tag]         patchew/20170124100437.18200-1-dgilbert@redhat.com -> patchew/20170124100437.18200-1-dgilbert@redhat.com
 * [new tag]         patchew/20170124105332.15992-1-lma@suse.com -> patchew/20170124105332.15992-1-lma@suse.com
 * [new tag]         patchew/20170124110151.937-1-berrange@redhat.com -> patchew/20170124110151.937-1-berrange@redhat.com
 * [new tag]         patchew/20170124115748.21473-1-berrange@redhat.com -> patchew/20170124115748.21473-1-berrange@redhat.com
 * [new tag]         patchew/20170124145152.22980-1-berrange@redhat.com -> patchew/20170124145152.22980-1-berrange@redhat.com
 * [new tag]         patchew/20170124150823.30162-1-cornelia.huck@de.ibm.com -> patchew/20170124150823.30162-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170124180420.12430-1-pbonzini@redhat.com -> patchew/20170124180420.12430-1-pbonzini@redhat.com
 * [new tag]         patchew/20170124184742.1639-1-dgilbert@redhat.com -> patchew/20170124184742.1639-1-dgilbert@redhat.com
 * [new tag]         patchew/20170124190258.14354-1-marcandre.lureau@redhat.com -> patchew/20170124190258.14354-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170125001041.14029-1-bobby.prani@gmail.com -> patchew/20170125001041.14029-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170125052703.23571-1-lma@suse.com -> patchew/20170125052703.23571-1-lma@suse.com
 * [new tag]         patchew/20170125121710.13561-1-cornelia.huck@de.ibm.com -> patchew/20170125121710.13561-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170125130308.16104-1-marcandre.lureau@redhat.com -> patchew/20170125130308.16104-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170125141426.23454-1-stefanha@redhat.com -> patchew/20170125141426.23454-1-stefanha@redhat.com
 * [new tag]         patchew/20170125203852.19254-1-laurent@vivier.eu -> patchew/20170125203852.19254-1-laurent@vivier.eu
 * [new tag]         patchew/20170125215637.2992-1-laurent@vivier.eu -> patchew/20170125215637.2992-1-laurent@vivier.eu
 * [new tag]         patchew/20170126014416.11211-1-lersek@redhat.com -> patchew/20170126014416.11211-1-lersek@redhat.com
 * [new tag]         patchew/20170126024815.22841-1-famz@redhat.com -> patchew/20170126024815.22841-1-famz@redhat.com
 * [new tag]         patchew/20170126033406.6433-1-famz@redhat.com -> patchew/20170126033406.6433-1-famz@redhat.com
 * [new tag]         patchew/20170126080449.28255-1-laurent@vivier.eu -> patchew/20170126080449.28255-1-laurent@vivier.eu
 * [new tag]         patchew/20170126100705.6005-1-pbonzini@redhat.com -> patchew/20170126100705.6005-1-pbonzini@redhat.com
 * [new tag]         patchew/20170126101010.6375-1-pbonzini@redhat.com -> patchew/20170126101010.6375-1-pbonzini@redhat.com
 * [new tag]         patchew/20170126101600.16348-1-caliborn@sdf.lonestar.org -> patchew/20170126101600.16348-1-caliborn@sdf.lonestar.org
 * [new tag]         patchew/20170126101954.21236-1-stefanha@redhat.com -> patchew/20170126101954.21236-1-stefanha@redhat.com
 * [new tag]         patchew/20170126102757.23280-2-berrange@redhat.com -> patchew/20170126102757.23280-2-berrange@redhat.com
 * [new tag]         patchew/20170126110315.21759-1-cornelia.huck@de.ibm.com -> patchew/20170126110315.21759-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170126110435.2777-1-berrange@redhat.com -> patchew/20170126110435.2777-1-berrange@redhat.com
 * [new tag]         patchew/20170126132827.7479-1-marcandre.lureau@redhat.com -> patchew/20170126132827.7479-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170126153837.25597-1-stefanha@redhat.com -> patchew/20170126153837.25597-1-stefanha@redhat.com
 * [new tag]         patchew/20170126170119.27876-1-stefanha@redhat.com -> patchew/20170126170119.27876-1-stefanha@redhat.com
 * [new tag]         patchew/20170126171613.1399-1-stefanha@redhat.com -> patchew/20170126171613.1399-1-stefanha@redhat.com
 * [new tag]         patchew/20170126204547.9418-1-lvivier@redhat.com -> patchew/20170126204547.9418-1-lvivier@redhat.com
 * [new tag]         patchew/20170127081510.11805-1-rth@twiddle.net -> patchew/20170127081510.11805-1-rth@twiddle.net
 * [new tag]         patchew/20170127094154.19778-1-berto@igalia.com -> patchew/20170127094154.19778-1-berto@igalia.com
 * [new tag]         patchew/20170127100029.11356-1-stefanha@redhat.com -> patchew/20170127100029.11356-1-stefanha@redhat.com
 * [new tag]         patchew/20170127103922.19658-1-alex.bennee@linaro.org -> patchew/20170127103922.19658-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170127120528.30959-1-ppandit@redhat.com -> patchew/20170127120528.30959-1-ppandit@redhat.com
 * [new tag]         patchew/20170127122458.318-1-lvivier@redhat.com -> patchew/20170127122458.318-1-lvivier@redhat.com
 * [new tag]         patchew/20170127183131.6868-1-andrew.smirnov@gmail.com -> patchew/20170127183131.6868-1-andrew.smirnov@gmail.com
 * [new tag]         patchew/20170127234554.1196-1-nirsof@gmail.com -> patchew/20170127234554.1196-1-nirsof@gmail.com
 * [new tag]         patchew/20170128120307.GA17532@ls3530.fritz.box -> patchew/20170128120307.GA17532@ls3530.fritz.box
 * [new tag]         patchew/20170129210910.6333-1-pbonzini@redhat.com -> patchew/20170129210910.6333-1-pbonzini@redhat.com
 * [new tag]         patchew/20170130064736.9236-1-ppandit@redhat.com -> patchew/20170130064736.9236-1-ppandit@redhat.com
 * [new tag]         patchew/20170130104540.14660-1-marcandre.lureau@redhat.com -> patchew/20170130104540.14660-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170130105116.29337-1-berrange@redhat.com -> patchew/20170130105116.29337-1-berrange@redhat.com
 * [new tag]         patchew/20170130131517.8092-1-sw@weilnetz.de -> patchew/20170130131517.8092-1-sw@weilnetz.de
 * [new tag]         patchew/20170130133954.31353-1-marcandre.lureau@redhat.com -> patchew/20170130133954.31353-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170130141754.93075-1-vsementsov@virtuozzo.com -> patchew/20170130141754.93075-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170130145025.26475-1-david@redhat.com -> patchew/20170130145025.26475-1-david@redhat.com
 * [new tag]         patchew/20170130151409.20444-1-jgross@suse.com -> patchew/20170130151409.20444-1-jgross@suse.com
 * [new tag]         patchew/20170130161441.30493-1-berto@igalia.com -> patchew/20170130161441.30493-1-berto@igalia.com
 * [new tag]         patchew/20170130181634.13934-1-laurent@vivier.eu -> patchew/20170130181634.13934-1-laurent@vivier.eu
 * [new tag]         patchew/20170131100945.8189-1-kwolf@redhat.com -> patchew/20170131100945.8189-1-kwolf@redhat.com
 * [new tag]         patchew/20170131112308.54189-1-vsementsov@virtuozzo.com -> patchew/20170131112308.54189-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170131114054.276.62201.stgit@PASHA-ISP -> patchew/20170131114054.276.62201.stgit@PASHA-ISP
 * [new tag]         patchew/20170131114310.6768.79416.stgit@PASHA-ISP -> patchew/20170131114310.6768.79416.stgit@PASHA-ISP
 * [new tag]         patchew/20170131115728.5244.21690.stgit@PASHA-ISP -> patchew/20170131115728.5244.21690.stgit@PASHA-ISP
 * [new tag]         patchew/20170131115913.6828.12266.stgit@PASHA-ISP -> patchew/20170131115913.6828.12266.stgit@PASHA-ISP
 * [new tag]         patchew/20170131122416.10284-1-ppandit@redhat.com -> patchew/20170131122416.10284-1-ppandit@redhat.com
 * [new tag]         patchew/20170131135703.5638-1-nirsof@gmail.com -> patchew/20170131135703.5638-1-nirsof@gmail.com
 * [new tag]         patchew/20170131162122.29408-1-marcandre.lureau@redhat.com -> patchew/20170131162122.29408-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170201003120.23378-1-nirsof@gmail.com -> patchew/20170201003120.23378-1-nirsof@gmail.com
 * [new tag]         patchew/20170201053440.26002-1-jcody@redhat.com -> patchew/20170201053440.26002-1-jcody@redhat.com
 * [new tag]         patchew/20170201065202.7746-1-jgross@suse.com -> patchew/20170201065202.7746-1-jgross@suse.com
 * [new tag]         patchew/20170201123828.4815-1-berto@igalia.com -> patchew/20170201123828.4815-1-berto@igalia.com
 * [new tag]         patchew/20170201132456.11406-1-stefanha@redhat.com -> patchew/20170201132456.11406-1-stefanha@redhat.com
 * [new tag]         patchew/20170201134453.11963-1-stefanha@redhat.com -> patchew/20170201134453.11963-1-stefanha@redhat.com
 * [new tag]         patchew/20170201150553.9381-1-alex.bennee@linaro.org -> patchew/20170201150553.9381-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170202051445.5735-1-david@gibson.dropbear.id.au -> patchew/20170202051445.5735-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170202055054.4848.94901.stgit@PASHA-ISP.lan02.inno -> patchew/20170202055054.4848.94901.stgit@PASHA-ISP.lan02.inno
 * [new tag]         patchew/20170202060924.7440.78149.stgit@PASHA-ISP -> patchew/20170202060924.7440.78149.stgit@PASHA-ISP
 * [new tag]         patchew/20170202104624.13948-1-ppandit@redhat.com -> patchew/20170202104624.13948-1-ppandit@redhat.com
 * [new tag]         patchew/20170202114101.2655-1-philipp.gesang@intra2net.com -> patchew/20170202114101.2655-1-philipp.gesang@intra2net.com
 * [new tag]         patchew/20170202125956.21942-1-dgilbert@redhat.com -> patchew/20170202125956.21942-1-dgilbert@redhat.com
 * [new tag]         patchew/20170202132145.168790-1-vsementsov@virtuozzo.com -> patchew/20170202132145.168790-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170202145141.17138-1-marcandre.lureau@redhat.com -> patchew/20170202145141.17138-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170202145159.20440-2-rjones@redhat.com -> patchew/20170202145159.20440-2-rjones@redhat.com
 * [new tag]         patchew/20170202150530.1025-1-pbonzini@redhat.com -> patchew/20170202150530.1025-1-pbonzini@redhat.com
 * [new tag]         patchew/20170202155909.31784-1-dgilbert@redhat.com -> patchew/20170202155909.31784-1-dgilbert@redhat.com
 * [new tag]         patchew/20170202171625.28502-2-rjones@redhat.com -> patchew/20170202171625.28502-2-rjones@redhat.com
 * [new tag]         patchew/20170202192228.10847-1-ppandit@redhat.com -> patchew/20170202192228.10847-1-ppandit@redhat.com
 * [new tag]         patchew/20170202195601.11286-1-sw@weilnetz.de -> patchew/20170202195601.11286-1-sw@weilnetz.de
 * [new tag]         patchew/20170203003212.21992-1-haozhong.zhang@intel.com -> patchew/20170203003212.21992-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170203094018.15493-1-vsementsov@virtuozzo.com -> patchew/20170203094018.15493-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170203120254.15062-1-berrange@redhat.com -> patchew/20170203120254.15062-1-berrange@redhat.com
 * [new tag]         patchew/20170203120649.15637-1-berrange@redhat.com -> patchew/20170203120649.15637-1-berrange@redhat.com
 * [new tag]         patchew/20170203143753.9903-1-stefanha@redhat.com -> patchew/20170203143753.9903-1-stefanha@redhat.com
 * [new tag]         patchew/20170203152321.19739-1-pbutsykin@virtuozzo.com -> patchew/20170203152321.19739-1-pbutsykin@virtuozzo.com
 * [new tag]         patchew/20170203154757.36140-1-vsementsov@virtuozzo.com -> patchew/20170203154757.36140-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170203160651.19917-1-dgilbert@redhat.com -> patchew/20170203160651.19917-1-dgilbert@redhat.com
 * [new tag]         patchew/20170203170729.12399-1-pbonzini@redhat.com -> patchew/20170203170729.12399-1-pbonzini@redhat.com
 * [new tag]         patchew/20170203170925.12554-2-rjones@redhat.com -> patchew/20170203170925.12554-2-rjones@redhat.com
 * [new tag]         patchew/20170203175217.45562-1-pasic@linux.vnet.ibm.com -> patchew/20170203175217.45562-1-pasic@linux.vnet.ibm.com
 * [new tag]         patchew/20170203195037.4238-1-nirsof@gmail.com -> patchew/20170203195037.4238-1-nirsof@gmail.com
 * [new tag]         patchew/20170204100048.31850-2-rjones@redhat.com -> patchew/20170204100048.31850-2-rjones@redhat.com
 * [new tag]         patchew/20170204100317.32425-2-rjones@redhat.com -> patchew/20170204100317.32425-2-rjones@redhat.com
 * [new tag]         patchew/20170204143245.15974-1-famz@redhat.com -> patchew/20170204143245.15974-1-famz@redhat.com
 * [new tag]         patchew/20170204150319.8907-1-fabian@lesniak-it.de -> patchew/20170204150319.8907-1-fabian@lesniak-it.de
 * [new tag]         patchew/20170205133727.23424-1-zxq_yx_007@163.com -> patchew/20170205133727.23424-1-zxq_yx_007@163.com
 * [new tag]         patchew/20170206013927.13693-1-david@gibson.dropbear.id.au -> patchew/20170206013927.13693-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170206112953.16993-1-berrange@redhat.com -> patchew/20170206112953.16993-1-berrange@redhat.com
 * [new tag]         patchew/20170206132835.9440-1-marcandre.lureau@redhat.com -> patchew/20170206132835.9440-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170206153113.27729-1-alex.bennee@linaro.org -> patchew/20170206153113.27729-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170206173306.20603-1-dgilbert@redhat.com -> patchew/20170206173306.20603-1-dgilbert@redhat.com
 * [new tag]         patchew/20170206233931.14921-1-f4bug@amsat.org -> patchew/20170206233931.14921-1-f4bug@amsat.org
 * [new tag]         patchew/20170207005930.28327-1-laurent@vivier.eu -> patchew/20170207005930.28327-1-laurent@vivier.eu
 * [new tag]         patchew/20170207023229.29431-1-rth@twiddle.net -> patchew/20170207023229.29431-1-rth@twiddle.net
 * [new tag]         patchew/20170207132723.13934-1-famz@redhat.com -> patchew/20170207132723.13934-1-famz@redhat.com
 * [new tag]         patchew/20170207135211.15870-1-marcandre.lureau@redhat.com -> patchew/20170207135211.15870-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170207235757.2026-1-mreitz@redhat.com -> patchew/20170207235757.2026-1-mreitz@redhat.com
 * [new tag]         patchew/20170208061602.17666-1-david@gibson.dropbear.id.au -> patchew/20170208061602.17666-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170208064212.25307-1-ppandit@redhat.com -> patchew/20170208064212.25307-1-ppandit@redhat.com
 * [new tag]         patchew/20170208080900.4092-1-marcandre.lureau@redhat.com -> patchew/20170208080900.4092-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170208170533.28822-1-jsnow@redhat.com -> patchew/20170208170533.28822-1-jsnow@redhat.com
 * [new tag]         patchew/20170209084047.7897-1-famz@redhat.com -> patchew/20170209084047.7897-1-famz@redhat.com
 * [new tag]         patchew/20170209170904.5713-1-alex.bennee@linaro.org -> patchew/20170209170904.5713-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170209181746.29896-1-dgilbert@redhat.com -> patchew/20170209181746.29896-1-dgilbert@redhat.com
 * [new tag]         patchew/20170210061200.15373-1-vapier@gentoo.org -> patchew/20170210061200.15373-1-vapier@gentoo.org
 * [new tag]         patchew/20170210092724.6470-1-lvivier@redhat.com -> patchew/20170210092724.6470-1-lvivier@redhat.com
 * [new tag]         patchew/20170210095012.16039-1-pbonzini@redhat.com -> patchew/20170210095012.16039-1-pbonzini@redhat.com
 * [new tag]         patchew/20170210110359.8210-1-dgilbert@redhat.com -> patchew/20170210110359.8210-1-dgilbert@redhat.com
 * [new tag]         patchew/20170210150452.21550-1-alex.bennee@linaro.org -> patchew/20170210150452.21550-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170210164825.9241-1-jsnow@redhat.com -> patchew/20170210164825.9241-1-jsnow@redhat.com
 * [new tag]         patchew/20170210170910.8867-1-berrange@redhat.com -> patchew/20170210170910.8867-1-berrange@redhat.com
 * [new tag]         patchew/20170210180600.45797-1-marcinch7@gmail.com -> patchew/20170210180600.45797-1-marcinch7@gmail.com
 * [new tag]         patchew/20170210210857.47893-1-marcinch7@gmail.com -> patchew/20170210210857.47893-1-marcinch7@gmail.com
 * [new tag]         patchew/20170210214127.22071.16525.stgit@gimli.home -> patchew/20170210214127.22071.16525.stgit@gimli.home
 * [new tag]         patchew/20170211034332.12498-1-f4bug@amsat.org -> patchew/20170211034332.12498-1-f4bug@amsat.org
 * [new tag]         patchew/20170211150701.23391-1-ppandit@redhat.com -> patchew/20170211150701.23391-1-ppandit@redhat.com
 * [new tag]         patchew/20170211222602.GA6399@ls3530.fritz.box -> patchew/20170211222602.GA6399@ls3530.fritz.box
 * [new tag]         patchew/20170212014724.10618-1-mreitz@redhat.com -> patchew/20170212014724.10618-1-mreitz@redhat.com
 * [new tag]         patchew/20170212112118.16044-1-marcandre.lureau@redhat.com -> patchew/20170212112118.16044-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170213075558.786-1-ppandit@redhat.com -> patchew/20170213075558.786-1-ppandit@redhat.com
 * [new tag]         patchew/20170213092709.24711-1-lma@suse.com -> patchew/20170213092709.24711-1-lma@suse.com
 * [new tag]         patchew/20170213095148.25500-1-lma@suse.com -> patchew/20170213095148.25500-1-lma@suse.com
 * [new tag]         patchew/20170213100906.23486-1-pbonzini@redhat.com -> patchew/20170213100906.23486-1-pbonzini@redhat.com
 * [new tag]         patchew/20170213121017.12907-1-alex.bennee@linaro.org -> patchew/20170213121017.12907-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170213135235.12274-1-pbonzini@redhat.com -> patchew/20170213135235.12274-1-pbonzini@redhat.com
 * [new tag]         patchew/20170213162940.13428-1-stefanha@redhat.com -> patchew/20170213162940.13428-1-stefanha@redhat.com
 * [new tag]         patchew/20170213175033.7314-1-dgilbert@redhat.com -> patchew/20170213175033.7314-1-dgilbert@redhat.com
 * [new tag]         patchew/20170214062242.26124-1-ppandit@redhat.com -> patchew/20170214062242.26124-1-ppandit@redhat.com
 * [new tag]         patchew/20170214071510.6112.76764.stgit@PASHA-ISP -> patchew/20170214071510.6112.76764.stgit@PASHA-ISP
 * [new tag]         patchew/20170214100733.22280-1-alex.bennee@linaro.org -> patchew/20170214100733.22280-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170214133331.28997-1-lvivier@redhat.com -> patchew/20170214133331.28997-1-lvivier@redhat.com
 * [new tag]         patchew/20170214185225.7994-1-ppandit@redhat.com -> patchew/20170214185225.7994-1-ppandit@redhat.com
 * [new tag]         patchew/20170214192525.18624-1-eblake@redhat.com -> patchew/20170214192525.18624-1-eblake@redhat.com
 * [new tag]         patchew/20170214225535.6880-1-f4bug@amsat.org -> patchew/20170214225535.6880-1-f4bug@amsat.org
 * [new tag]         patchew/20170215024030.23895-1-lma@suse.com -> patchew/20170215024030.23895-1-lma@suse.com
 * [new tag]         patchew/20170215083143.15897-1-famz@redhat.com -> patchew/20170215083143.15897-1-famz@redhat.com
 * [new tag]         patchew/20170215093147.29711-1-famz@redhat.com -> patchew/20170215093147.29711-1-famz@redhat.com
 * [new tag]         patchew/20170215101427.23736-1-eduardo.otubo@profitbricks.com -> patchew/20170215101427.23736-1-eduardo.otubo@profitbricks.com
 * [new tag]         patchew/20170215181922.11624-1-dgilbert@redhat.com -> patchew/20170215181922.11624-1-dgilbert@redhat.com
 * [new tag]         patchew/20170215211925.8614-1-rth@twiddle.net -> patchew/20170215211925.8614-1-rth@twiddle.net
 * [new tag]         patchew/20170216084318.11122-1-jazeltq@gmail.com -> patchew/20170216084318.11122-1-jazeltq@gmail.com
 * [new tag]         patchew/20170216085857.23501-1-snaipe@diacritic.io -> patchew/20170216085857.23501-1-snaipe@diacritic.io
 * [new tag]         patchew/20170216090002.12511-1-jazeltq@gmail.com -> patchew/20170216090002.12511-1-jazeltq@gmail.com
 * [new tag]         patchew/20170216103016.6669-1-marcandre.lureau@redhat.com -> patchew/20170216103016.6669-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170216105827.1486-1-marcandre.lureau@redhat.com -> patchew/20170216105827.1486-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170216121140.9061-1-pasic@linux.vnet.ibm.com -> patchew/20170216121140.9061-1-pasic@linux.vnet.ibm.com
 * [new tag]         patchew/20170216123456.28621-1-alex.bennee@linaro.org -> patchew/20170216123456.28621-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170216142227.27448-1-laurent@vivier.eu -> patchew/20170216142227.27448-1-laurent@vivier.eu
 * [new tag]         patchew/20170216143816.2384-1-laurent@vivier.eu -> patchew/20170216143816.2384-1-laurent@vivier.eu
 * [new tag]         patchew/20170216173707.16209-1-laurent@vivier.eu -> patchew/20170216173707.16209-1-laurent@vivier.eu
 * [new tag]         patchew/20170216220000.1004-1-jsnow@redhat.com -> patchew/20170216220000.1004-1-jsnow@redhat.com
 * [new tag]         patchew/20170217005431.4016-1-bobby.prani@gmail.com -> patchew/20170217005431.4016-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170217082704.23270-1-skiver.cloud.yzy@gmail.com -> patchew/20170217082704.23270-1-skiver.cloud.yzy@gmail.com
 * [new tag]         patchew/20170217082844.89466-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170217082844.89466-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170217085800.28873-1-snaipe@diacritic.io -> patchew/20170217085800.28873-1-snaipe@diacritic.io
 * [new tag]         patchew/20170217085800.28873-2-snaipe@diacritic.io -> patchew/20170217085800.28873-2-snaipe@diacritic.io
 * [new tag]         patchew/20170217093416.27688-1-marcandre.lureau@redhat.com -> patchew/20170217093416.27688-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170217133134.10735-1-lvivier@redhat.com -> patchew/20170217133134.10735-1-lvivier@redhat.com
 * [new tag]         patchew/20170217154200.10504-1-bobby.prani@gmail.com -> patchew/20170217154200.10504-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170217154311.13920-1-bobby.prani@gmail.com -> patchew/20170217154311.13920-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170217172607.25575-1-danielhb@linux.vnet.ibm.com -> patchew/20170217172607.25575-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170217194028.8398-1-pbonzini@redhat.com -> patchew/20170217194028.8398-1-pbonzini@redhat.com
 * [new tag]         patchew/20170217210831.GA26068@ls3530.fritz.box -> patchew/20170217210831.GA26068@ls3530.fritz.box
 * [new tag]         patchew/20170218083114.GA3424@ls3530.fritz.box -> patchew/20170218083114.GA3424@ls3530.fritz.box
 * [new tag]         patchew/20170218223130.GA25278@ls3530.fritz.box -> patchew/20170218223130.GA25278@ls3530.fritz.box
 * [new tag]         patchew/20170220093304.20515-1-stefanha@redhat.com -> patchew/20170220093304.20515-1-stefanha@redhat.com
 * [new tag]         patchew/20170220095055.4234-1-fziglio@redhat.com -> patchew/20170220095055.4234-1-fziglio@redhat.com
 * [new tag]         patchew/20170220095734.7890-1-cornelia.huck@de.ibm.com -> patchew/20170220095734.7890-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170220105139.21581-1-alex.bennee@linaro.org -> patchew/20170220105139.21581-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170220111716.10471-1-xiong.y.zhang@intel.com -> patchew/20170220111716.10471-1-xiong.y.zhang@intel.com
 * [new tag]         patchew/20170220112307.31695-1-ppandit@redhat.com -> patchew/20170220112307.31695-1-ppandit@redhat.com
 * [new tag]         patchew/20170220114254.12265-1-xiong.y.zhang@intel.com -> patchew/20170220114254.12265-1-xiong.y.zhang@intel.com
 * [new tag]         patchew/20170220151921.22842-1-berrange@redhat.com -> patchew/20170220151921.22842-1-berrange@redhat.com
 * [new tag]         patchew/20170220160316.16803-1-danielhb@linux.vnet.ibm.com -> patchew/20170220160316.16803-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170220164509.27868-1-v.maffione@gmail.com -> patchew/20170220164509.27868-1-v.maffione@gmail.com
 * [new tag]         patchew/20170220165204.1980-1-stefanha@redhat.com -> patchew/20170220165204.1980-1-stefanha@redhat.com
 * [new tag]         patchew/20170220173430.31630-1-clement.deschamps@antfield.fr -> patchew/20170220173430.31630-1-clement.deschamps@antfield.fr
 * [new tag]         patchew/20170220185020.774-1-dgilbert@redhat.com -> patchew/20170220185020.774-1-dgilbert@redhat.com
 * [new tag]         patchew/20170221024248.11027-1-eblake@redhat.com -> patchew/20170221024248.11027-1-eblake@redhat.com
 * [new tag]         patchew/20170221025211.30007-1-david@gibson.dropbear.id.au -> patchew/20170221025211.30007-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170221034336.10097-1-jazeltq@gmail.com -> patchew/20170221034336.10097-1-jazeltq@gmail.com
 * [new tag]         patchew/20170221065003.26103-1-jazeltq@gmail.com -> patchew/20170221065003.26103-1-jazeltq@gmail.com
 * [new tag]         patchew/20170221090859.10172-1-pbonzini@redhat.com -> patchew/20170221090859.10172-1-pbonzini@redhat.com
 * [new tag]         patchew/20170221090859.10172-2-pbonzini@redhat.com -> patchew/20170221090859.10172-2-pbonzini@redhat.com
 * [new tag]         patchew/20170221104256.5153-1-pbonzini@redhat.com -> patchew/20170221104256.5153-1-pbonzini@redhat.com
 * [new tag]         patchew/20170221115512.21918-1-berrange@redhat.com -> patchew/20170221115512.21918-1-berrange@redhat.com
 * [new tag]         patchew/20170221115644.28264-1-stefanha@redhat.com -> patchew/20170221115644.28264-1-stefanha@redhat.com
 * [new tag]         patchew/20170221122920.16245-1-pbonzini@redhat.com -> patchew/20170221122920.16245-1-pbonzini@redhat.com
 * [new tag]         patchew/20170221124638.19573-1-pbonzini@redhat.com -> patchew/20170221124638.19573-1-pbonzini@redhat.com
 * [new tag]         patchew/20170221141451.28305-1-marcandre.lureau@redhat.com -> patchew/20170221141451.28305-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170221154057.20313-1-jcody@redhat.com -> patchew/20170221154057.20313-1-jcody@redhat.com
 * [new tag]         patchew/20170221161354.22204-1-berto@igalia.com -> patchew/20170221161354.22204-1-berto@igalia.com
 * [new tag]         patchew/20170221185527.3901-1-dgilbert@redhat.com -> patchew/20170221185527.3901-1-dgilbert@redhat.com
 * [new tag]         patchew/20170221185901.3256-1-stefanha@redhat.com -> patchew/20170221185901.3256-1-stefanha@redhat.com
 * [new tag]         patchew/20170221190955.8616.21658.stgit@gimli.home -> patchew/20170221190955.8616.21658.stgit@gimli.home
 * [new tag]         patchew/20170221214228.12515.79751.stgit@gimli.home -> patchew/20170221214228.12515.79751.stgit@gimli.home
 * [new tag]         patchew/20170222021801.28658-1-famz@redhat.com -> patchew/20170222021801.28658-1-famz@redhat.com
 * [new tag]         patchew/20170222063348.32176-1-david@gibson.dropbear.id.au -> patchew/20170222063348.32176-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170222112338.25492-1-clement.deschamps@antfield.fr -> patchew/20170222112338.25492-1-clement.deschamps@antfield.fr
 * [new tag]         patchew/20170222121527.7009-1-cornelia.huck@de.ibm.com -> patchew/20170222121527.7009-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170222151729.5812-1-danielhb@linux.vnet.ibm.com -> patchew/20170222151729.5812-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170222160119.52771-1-pasic@linux.vnet.ibm.com -> patchew/20170222160119.52771-1-pasic@linux.vnet.ibm.com
 * [new tag]         patchew/20170222162507.25987-1-alex.bennee@linaro.org -> patchew/20170222162507.25987-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170222163734.13104-1-stefanha@redhat.com -> patchew/20170222163734.13104-1-stefanha@redhat.com
 * [new tag]         patchew/20170222171327.26624-1-alex.bennee@linaro.org -> patchew/20170222171327.26624-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170222174737.2639-1-xiong.y.zhang@intel.com -> patchew/20170222174737.2639-1-xiong.y.zhang@intel.com
 * [new tag]         patchew/20170222180423.26571-1-pbonzini@redhat.com -> patchew/20170222180423.26571-1-pbonzini@redhat.com
 * [new tag]         patchew/20170222180725.28611-1-pbonzini@redhat.com -> patchew/20170222180725.28611-1-pbonzini@redhat.com
 * [new tag]         patchew/20170222192647.19690-1-ehabkost@redhat.com -> patchew/20170222192647.19690-1-ehabkost@redhat.com
 * [new tag]         patchew/20170223081109.4686-1-marcandre.lureau@redhat.com -> patchew/20170223081109.4686-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170223085130.19954-1-pbonzini@redhat.com -> patchew/20170223085130.19954-1-pbonzini@redhat.com
 * [new tag]         patchew/20170223091845.18523-1-famz@redhat.com -> patchew/20170223091845.18523-1-famz@redhat.com
 * [new tag]         patchew/20170223105922.22989-1-berrange@redhat.com -> patchew/20170223105922.22989-1-berrange@redhat.com
 * [new tag]         patchew/20170223120827.8942-1-cornelia.huck@de.ibm.com -> patchew/20170223120827.8942-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170223133441.16010-1-dgilbert@redhat.com -> patchew/20170223133441.16010-1-dgilbert@redhat.com
 * [new tag]         patchew/20170223182927.7166-1-alex.bennee@linaro.org -> patchew/20170223182927.7166-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170223193048.16909.25661.stgit@gimli.home -> patchew/20170223193048.16909.25661.stgit@gimli.home
 * [new tag]         patchew/20170224045531.7026-1-aik@ozlabs.ru -> patchew/20170224045531.7026-1-aik@ozlabs.ru
 * [new tag]         patchew/20170224063205.2537-1-famz@redhat.com -> patchew/20170224063205.2537-1-famz@redhat.com
 * [new tag]         patchew/20170224092259.16483-1-cornelia.huck@de.ibm.com -> patchew/20170224092259.16483-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170224112109.3147-1-alex.bennee@linaro.org -> patchew/20170224112109.3147-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170224131918.15480-2-ebischoff@suse.com -> patchew/20170224131918.15480-2-ebischoff@suse.com
 * [new tag]         patchew/20170224134411.28882-1-mmarek@suse.com -> patchew/20170224134411.28882-1-mmarek@suse.com
 * [new tag]         patchew/20170224135045.10613-1-mbenes@suse.cz -> patchew/20170224135045.10613-1-mbenes@suse.cz
 * [new tag]         patchew/20170224164021.9066-1-clement.deschamps@antfield.fr -> patchew/20170224164021.9066-1-clement.deschamps@antfield.fr
 * [new tag]         patchew/20170224172714.26026-1-berrange@redhat.com -> patchew/20170224172714.26026-1-berrange@redhat.com
 * [new tag]         patchew/20170224174700.30816-1-jcody@redhat.com -> patchew/20170224174700.30816-1-jcody@redhat.com
 * [new tag]         patchew/20170224182844.32452-1-dgilbert@redhat.com -> patchew/20170224182844.32452-1-dgilbert@redhat.com
 * [new tag]         patchew/20170224202345.13311-1-marcandre.lureau@redhat.com -> patchew/20170224202345.13311-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170225110517.2832-1-laurent@vivier.eu -> patchew/20170225110517.2832-1-laurent@vivier.eu
 * [new tag]         patchew/20170225170758.427066-1-vsementsov@virtuozzo.com -> patchew/20170225170758.427066-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170225193155.447462-1-vsementsov@virtuozzo.com -> patchew/20170225193155.447462-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170225213158.32452-1-vincent@bernat.im -> patchew/20170225213158.32452-1-vincent@bernat.im
 * [new tag]         patchew/20170225230416.9775-1-bobby.prani@gmail.com -> patchew/20170225230416.9775-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170225231653.14942-1-mmarek@suse.com -> patchew/20170225231653.14942-1-mmarek@suse.com
 * [new tag]         patchew/20170225233845.25828-1-mmarek@suse.com -> patchew/20170225233845.25828-1-mmarek@suse.com
 * [new tag]         patchew/20170226144353.2502-1-samuel.thibault@ens-lyon.org -> patchew/20170226144353.2502-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20170226164815.26799-1-marex@denx.de -> patchew/20170226164815.26799-1-marex@denx.de
 * [new tag]         patchew/20170226165345.8757-1-bobby.prani@gmail.com -> patchew/20170226165345.8757-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170226202709.2114-1-samuel.thibault@ens-lyon.org -> patchew/20170226202709.2114-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20170227004545.hzpr266jzturlxdh@var.youpi.perso.aquilenet.fr -> patchew/20170227004545.hzpr266jzturlxdh@var.youpi.perso.aquilenet.fr
 * [new tag]         patchew/20170227051239.2680-1-david@gibson.dropbear.id.au -> patchew/20170227051239.2680-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170227081456.7131-1-shah.suramya@gmail.com -> patchew/20170227081456.7131-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170227085353.20787-1-mbenes@suse.cz -> patchew/20170227085353.20787-1-mbenes@suse.cz
 * [new tag]         patchew/20170227101811.22722-1-marcandre.lureau@redhat.com -> patchew/20170227101811.22722-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170227101817.11748-1-mmarek@suse.com -> patchew/20170227101817.11748-1-mmarek@suse.com
 * [new tag]         patchew/20170227104956.24729-1-marcandre.lureau@redhat.com -> patchew/20170227104956.24729-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170227111726.9237-1-pbonzini@redhat.com -> patchew/20170227111726.9237-1-pbonzini@redhat.com
 * [new tag]         patchew/20170227112219.29313-2-ebischoff@suse.com -> patchew/20170227112219.29313-2-ebischoff@suse.com
 * [new tag]         patchew/20170227124551.8673-1-pbonzini@redhat.com -> patchew/20170227124551.8673-1-pbonzini@redhat.com
 * [new tag]         patchew/20170227132343.30824-1-berrange@redhat.com -> patchew/20170227132343.30824-1-berrange@redhat.com
 * [new tag]         patchew/20170227133531.31874-1-berrange@redhat.com -> patchew/20170227133531.31874-1-berrange@redhat.com
 * [new tag]         patchew/20170227133927.759-1-berrange@redhat.com -> patchew/20170227133927.759-1-berrange@redhat.com
 * [new tag]         patchew/20170227134202.2991-1-marcandre.lureau@redhat.com -> patchew/20170227134202.2991-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170227143028.16428-1-alex.bennee@linaro.org -> patchew/20170227143028.16428-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170227160118.3557-1-shah.suramya@gmail.com -> patchew/20170227160118.3557-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170227162501.29280-1-ehabkost@redhat.com -> patchew/20170227162501.29280-1-ehabkost@redhat.com
 * [new tag]         patchew/20170227163447.20428-1-stefanha@redhat.com -> patchew/20170227163447.20428-1-stefanha@redhat.com
 * [new tag]         patchew/20170227171314.9518-1-jsnow@redhat.com -> patchew/20170227171314.9518-1-jsnow@redhat.com
 * [new tag]         patchew/20170227173706.15210-1-drjones@redhat.com -> patchew/20170227173706.15210-1-drjones@redhat.com
 * [new tag]         patchew/20170227193857.9368-1-marex@denx.de -> patchew/20170227193857.9368-1-marex@denx.de
 * [new tag]         patchew/20170227201456.31814-1-berrange@redhat.com -> patchew/20170227201456.31814-1-berrange@redhat.com
 * [new tag]         patchew/20170227223337.17434-1-laurent@vivier.eu -> patchew/20170227223337.17434-1-laurent@vivier.eu
 * [new tag]         patchew/20170228004651.20674-2-rth@twiddle.net -> patchew/20170228004651.20674-2-rth@twiddle.net
 * [new tag]         patchew/20170228025157.3499-1-tim@hentenaar.com -> patchew/20170228025157.3499-1-tim@hentenaar.com
 * [new tag]         patchew/20170228041626.11038-1-michael.nawrocki@gtri.gatech.edu -> patchew/20170228041626.11038-1-michael.nawrocki@gtri.gatech.edu
 * [new tag]         patchew/20170228043707.23121-1-jcody@redhat.com -> patchew/20170228043707.23121-1-jcody@redhat.com
 * [new tag]         patchew/20170228052811.25264-1-bobby.prani@gmail.com -> patchew/20170228052811.25264-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170228105521.1284.11059.stgit@PASHA-ISP -> patchew/20170228105521.1284.11059.stgit@PASHA-ISP
 * [new tag]         patchew/20170228111935.10826-1-stefanha@redhat.com -> patchew/20170228111935.10826-1-stefanha@redhat.com
 * [new tag]         patchew/20170228113535.7099-2-ebischoff@suse.com -> patchew/20170228113535.7099-2-ebischoff@suse.com
 * [new tag]         patchew/20170228120134.7921-1-ebischoff@suse.com -> patchew/20170228120134.7921-1-ebischoff@suse.com
 * [new tag]         patchew/20170228120754.7947-1-berrange@redhat.com -> patchew/20170228120754.7947-1-berrange@redhat.com
 * [new tag]         patchew/20170228122901.24520-1-berrange@redhat.com -> patchew/20170228122901.24520-1-berrange@redhat.com
 * [new tag]         patchew/20170228124056.5074-1-dgilbert@redhat.com -> patchew/20170228124056.5074-1-dgilbert@redhat.com
 * [new tag]         patchew/20170228124458.31307-1-famz@redhat.com -> patchew/20170228124458.31307-1-famz@redhat.com
 * [new tag]         patchew/20170228131710.10593-1-mbenes@suse.cz -> patchew/20170228131710.10593-1-mbenes@suse.cz
 * [new tag]         patchew/20170228132132.20231-1-pbonzini@redhat.com -> patchew/20170228132132.20231-1-pbonzini@redhat.com
 * [new tag]         patchew/20170228133217.20039-1-michael.nawrocki@gtri.gatech.edu -> patchew/20170228133217.20039-1-michael.nawrocki@gtri.gatech.edu
 * [new tag]         patchew/20170228150709.27453-1-alex.bennee@linaro.org -> patchew/20170228150709.27453-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170228152411.81609-1-cornelia.huck@de.ibm.com -> patchew/20170228152411.81609-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170228161553.28142-1-jcody@redhat.com -> patchew/20170228161553.28142-1-jcody@redhat.com
 * [new tag]         patchew/20170228163436.31357-1-jcody@redhat.com -> patchew/20170228163436.31357-1-jcody@redhat.com
 * [new tag]         patchew/20170228193340.63980-1-vsementsov@virtuozzo.com -> patchew/20170228193340.63980-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170228213324.23510-2-rth@twiddle.net -> patchew/20170228213324.23510-2-rth@twiddle.net
 * [new tag]         patchew/20170228215801.10472-1-Andrew.Baumann@microsoft.com -> patchew/20170228215801.10472-1-Andrew.Baumann@microsoft.com
 * [new tag]         patchew/20170301044405.1792-1-david@gibson.dropbear.id.au -> patchew/20170301044405.1792-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170301052818.22734-1-aik@ozlabs.ru -> patchew/20170301052818.22734-1-aik@ozlabs.ru
 * [new tag]         patchew/20170301081951.27363-1-fanc.fnst@cn.fujitsu.com -> patchew/20170301081951.27363-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170301090453.11075-1-marcandre.lureau@redhat.com -> patchew/20170301090453.11075-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170301093748.28033-1-laurent@vivier.eu -> patchew/20170301093748.28033-1-laurent@vivier.eu
 * [new tag]         patchew/20170301115026.22621-1-stefanha@redhat.com -> patchew/20170301115026.22621-1-stefanha@redhat.com
 * [new tag]         patchew/20170301123223.12489-1-berrange@redhat.com -> patchew/20170301123223.12489-1-berrange@redhat.com
 * [new tag]         patchew/20170301142320.8328-1-shah.suramya@gmail.com -> patchew/20170301142320.8328-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170301152651.16390-1-famz@redhat.com -> patchew/20170301152651.16390-1-famz@redhat.com
 * [new tag]         patchew/20170301165656.80456-1-cornelia.huck@de.ibm.com -> patchew/20170301165656.80456-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170301175852.13517-1-cornelia.huck@de.ibm.com -> patchew/20170301175852.13517-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170301182618.22395-1-krzk@kernel.org -> patchew/20170301182618.22395-1-krzk@kernel.org
 * [new tag]         patchew/20170301194433.23379-1-jsnow@redhat.com -> patchew/20170301194433.23379-1-jsnow@redhat.com
 * [new tag]         patchew/20170301195502.4432-2-rth@twiddle.net -> patchew/20170301195502.4432-2-rth@twiddle.net
 * [new tag]         patchew/20170302001145.6879-1-laurent@vivier.eu -> patchew/20170302001145.6879-1-laurent@vivier.eu
 * [new tag]         patchew/20170302005448.21336-1-laurent@vivier.eu -> patchew/20170302005448.21336-1-laurent@vivier.eu
 * [new tag]         patchew/20170302022127.13741-1-aik@ozlabs.ru -> patchew/20170302022127.13741-1-aik@ozlabs.ru
 * [new tag]         patchew/20170302023611.15541-1-aik@ozlabs.ru -> patchew/20170302023611.15541-1-aik@ozlabs.ru
 * [new tag]         patchew/20170302024110.3978-1-rth@twiddle.net -> patchew/20170302024110.3978-1-rth@twiddle.net
 * [new tag]         patchew/20170302034613.21609-1-jcody@redhat.com -> patchew/20170302034613.21609-1-jcody@redhat.com
 * [new tag]         patchew/20170302122429.7737-1-berrange@redhat.com -> patchew/20170302122429.7737-1-berrange@redhat.com
 * [new tag]         patchew/20170302123746.9694-1-berrange@redhat.com -> patchew/20170302123746.9694-1-berrange@redhat.com
 * [new tag]         patchew/20170302161033.4787-1-berrange@redhat.com -> patchew/20170302161033.4787-1-berrange@redhat.com
 * [new tag]         patchew/20170302161921.10181-1-berrange@redhat.com -> patchew/20170302161921.10181-1-berrange@redhat.com
 * [new tag]         patchew/20170302193300.21188-1-brogers@suse.com -> patchew/20170302193300.21188-1-brogers@suse.com
 * [new tag]         patchew/20170302194437.21823-1-brogers@suse.com -> patchew/20170302194437.21823-1-brogers@suse.com
 * [new tag]         patchew/20170302195134.22171-1-brogers@suse.com -> patchew/20170302195134.22171-1-brogers@suse.com
 * [new tag]         patchew/20170302195337.31558-1-alex.bennee@linaro.org -> patchew/20170302195337.31558-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170302215603.27630-1-pbonzini@redhat.com -> patchew/20170302215603.27630-1-pbonzini@redhat.com
 * [new tag]         patchew/20170303032507.16142-1-david@gibson.dropbear.id.au -> patchew/20170303032507.16142-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170303063009.21580-1-david@gibson.dropbear.id.au -> patchew/20170303063009.21580-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170303112503.32277-1-ppandit@redhat.com -> patchew/20170303112503.32277-1-ppandit@redhat.com
 * [new tag]         patchew/20170303113255.28262-1-berrange@redhat.com -> patchew/20170303113255.28262-1-berrange@redhat.com
 * [new tag]         patchew/20170303120308.6815-1-pbonzini@redhat.com -> patchew/20170303120308.6815-1-pbonzini@redhat.com
 * [new tag]         patchew/20170303123232.4967-1-drjones@redhat.com -> patchew/20170303123232.4967-1-drjones@redhat.com
 * [new tag]         patchew/20170303131317.23617-1-ehabkost@redhat.com -> patchew/20170303131317.23617-1-ehabkost@redhat.com
 * [new tag]         patchew/20170303133816.30303-1-famz@redhat.com -> patchew/20170303133816.30303-1-famz@redhat.com
 * [new tag]         patchew/20170303135150.12145-1-stefanha@redhat.com -> patchew/20170303135150.12145-1-stefanha@redhat.com
 * [new tag]         patchew/20170303185427.32681-1-jsnow@redhat.com -> patchew/20170303185427.32681-1-jsnow@redhat.com
 * [new tag]         patchew/20170303191805.1204-1-shah.suramya@gmail.com -> patchew/20170303191805.1204-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170303202227.1950-1-shah.suramya@gmail.com -> patchew/20170303202227.1950-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170304110658.1402-1-sauravsachidanand@gmail.com -> patchew/20170304110658.1402-1-sauravsachidanand@gmail.com
 * [new tag]         patchew/20170304185533.10618-1-f4bug@amsat.org -> patchew/20170304185533.10618-1-f4bug@amsat.org
 * [new tag]         patchew/20170304185652.10675-1-f4bug@amsat.org -> patchew/20170304185652.10675-1-f4bug@amsat.org
 * [new tag]         patchew/20170304191230.11296-1-f4bug@amsat.org -> patchew/20170304191230.11296-1-f4bug@amsat.org
 * [new tag]         patchew/20170305025605.3824-1-sauravsachidanand@gmail.com -> patchew/20170305025605.3824-1-sauravsachidanand@gmail.com
 * [new tag]         patchew/20170305214435.19656-1-krzk@kernel.org -> patchew/20170305214435.19656-1-krzk@kernel.org
 * [new tag]         patchew/20170305214633.19844-1-krzk@kernel.org -> patchew/20170305214633.19844-1-krzk@kernel.org
 * [new tag]         patchew/20170306040823.28482-1-david@gibson.dropbear.id.au -> patchew/20170306040823.28482-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170306071721.26708-1-ppandit@redhat.com -> patchew/20170306071721.26708-1-ppandit@redhat.com
 * [new tag]         patchew/20170306112848.659-1-alex.bennee@linaro.org -> patchew/20170306112848.659-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170306140541.10600-1-hangaohuai@huawei.com -> patchew/20170306140541.10600-1-hangaohuai@huawei.com
 * [new tag]         patchew/20170306155722.31315-1-alex.bennee@linaro.org -> patchew/20170306155722.31315-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170306195255.15806-1-mreitz@redhat.com -> patchew/20170306195255.15806-1-mreitz@redhat.com
 * [new tag]         patchew/20170306202130.23701-1-f4bug@amsat.org -> patchew/20170306202130.23701-1-f4bug@amsat.org
 * [new tag]         patchew/20170306205520.32311-1-f4bug@amsat.org -> patchew/20170306205520.32311-1-f4bug@amsat.org
 * [new tag]         patchew/20170306205609.6525-1-rth@twiddle.net -> patchew/20170306205609.6525-1-rth@twiddle.net
 * [new tag]         patchew/20170306223054.25666-1-eblake@redhat.com -> patchew/20170306223054.25666-1-eblake@redhat.com
 * [new tag]         patchew/20170307021748.7743-1-famz@redhat.com -> patchew/20170307021748.7743-1-famz@redhat.com
 * [new tag]         patchew/20170307072147.1425-1-ppandit@redhat.com -> patchew/20170307072147.1425-1-ppandit@redhat.com
 * [new tag]         patchew/20170307110722.12583-1-famz@redhat.com -> patchew/20170307110722.12583-1-famz@redhat.com
 * [new tag]         patchew/20170307113736.13864-1-pbonzini@redhat.com -> patchew/20170307113736.13864-1-pbonzini@redhat.com
 * [new tag]         patchew/20170307151627.27212-1-eblake@redhat.com -> patchew/20170307151627.27212-1-eblake@redhat.com
 * [new tag]         patchew/20170307155054.5833-1-alex.bennee@linaro.org -> patchew/20170307155054.5833-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170307183637.21245-1-dgilbert@redhat.com -> patchew/20170307183637.21245-1-dgilbert@redhat.com
 * [new tag]         patchew/20170307184517.21521-1-eblake@redhat.com -> patchew/20170307184517.21521-1-eblake@redhat.com
 * [new tag]         patchew/20170308021533.78292-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170308021533.78292-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170308025428.1037-1-eblake@redhat.com -> patchew/20170308025428.1037-1-eblake@redhat.com
 * [new tag]         patchew/20170308070159.19487-1-famz@redhat.com -> patchew/20170308070159.19487-1-famz@redhat.com
 * [new tag]         patchew/20170308082819.12196-1-fanc.fnst@cn.fujitsu.com -> patchew/20170308082819.12196-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170308105409.18183-1-dgilbert@redhat.com -> patchew/20170308105409.18183-1-dgilbert@redhat.com
 * [new tag]         patchew/20170308120814.29967-1-famz@redhat.com -> patchew/20170308120814.29967-1-famz@redhat.com
 * [new tag]         patchew/20170308124955.35623-1-aik@ozlabs.ru -> patchew/20170308124955.35623-1-aik@ozlabs.ru
 * [new tag]         patchew/20170308151544.7606-1-eblake@redhat.com -> patchew/20170308151544.7606-1-eblake@redhat.com
 * [new tag]         patchew/20170308181833.32110-1-mreitz@redhat.com -> patchew/20170308181833.32110-1-mreitz@redhat.com
 * [new tag]         patchew/20170308191434.2413-1-mreitz@redhat.com -> patchew/20170308191434.2413-1-mreitz@redhat.com
 * [new tag]         patchew/20170308200216.5931-1-eblake@redhat.com -> patchew/20170308200216.5931-1-eblake@redhat.com
 * [new tag]         patchew/20170308213429.29244-1-eblake@redhat.com -> patchew/20170308213429.29244-1-eblake@redhat.com
 * [new tag]         patchew/20170309111714.20394-1-alex.bennee@linaro.org -> patchew/20170309111714.20394-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170309115830.3860-1-pbonzini@redhat.com -> patchew/20170309115830.3860-1-pbonzini@redhat.com
 * [new tag]         patchew/20170309132216.23482-1-dgilbert@redhat.com -> patchew/20170309132216.23482-1-dgilbert@redhat.com
 * [new tag]         patchew/20170309152708.30635-1-dgilbert@redhat.com -> patchew/20170309152708.30635-1-dgilbert@redhat.com
 * [new tag]         patchew/20170309181212.18864-1-ehabkost@redhat.com -> patchew/20170309181212.18864-1-ehabkost@redhat.com
 * [new tag]         patchew/20170309182049.30040-1-ehabkost@redhat.com -> patchew/20170309182049.30040-1-ehabkost@redhat.com
 * [new tag]         patchew/20170309185046.17555-1-ehabkost@redhat.com -> patchew/20170309185046.17555-1-ehabkost@redhat.com
 * [new tag]         patchew/20170309193117.24885-1-ehabkost@redhat.com -> patchew/20170309193117.24885-1-ehabkost@redhat.com
 * [new tag]         patchew/20170309194634.28457-1-ehabkost@redhat.com -> patchew/20170309194634.28457-1-ehabkost@redhat.com
 * [new tag]         patchew/20170310014113.37988-1-aik@ozlabs.ru -> patchew/20170310014113.37988-1-aik@ozlabs.ru
 * [new tag]         patchew/20170310031521.630-1-eblake@redhat.com -> patchew/20170310031521.630-1-eblake@redhat.com
 * [new tag]         patchew/20170310044402.38880-1-haoqf@linux.vnet.ibm.com -> patchew/20170310044402.38880-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20170310072051.15704-1-famz@redhat.com -> patchew/20170310072051.15704-1-famz@redhat.com
 * [new tag]         patchew/20170310074218.5372-1-alex.bennee@linaro.org -> patchew/20170310074218.5372-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170310085331.17916-1-marcandre.lureau@redhat.com -> patchew/20170310085331.17916-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170310101405.26974-1-lma@suse.com -> patchew/20170310101405.26974-1-lma@suse.com
 * [new tag]         patchew/20170310112819.16760-1-marcandre.lureau@redhat.com -> patchew/20170310112819.16760-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170310163948.7567-1-shah.suramya@gmail.com -> patchew/20170310163948.7567-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170310184552.1481-1-ehabkost@redhat.com -> patchew/20170310184552.1481-1-ehabkost@redhat.com
 * [new tag]         patchew/20170310200550.13313-1-krzk@kernel.org -> patchew/20170310200550.13313-1-krzk@kernel.org
 * [new tag]         patchew/20170311034232.14213-1-rth@twiddle.net -> patchew/20170311034232.14213-1-rth@twiddle.net
 * [new tag]         patchew/20170311132256.22951-1-marcandre.lureau@redhat.com -> patchew/20170311132256.22951-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170311183016.GA20514@ls3530.fritz.box -> patchew/20170311183016.GA20514@ls3530.fritz.box
 * [new tag]         patchew/20170313051108.26811-1-stefanha@redhat.com -> patchew/20170313051108.26811-1-stefanha@redhat.com
 * [new tag]         patchew/20170313093104.1280-1-nikunj@linux.vnet.ibm.com -> patchew/20170313093104.1280-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170313124434.1043-1-quintela@redhat.com -> patchew/20170313124434.1043-1-quintela@redhat.com
 * [new tag]         patchew/20170313131029.14044-1-hangaohuai@huawei.com -> patchew/20170313131029.14044-1-hangaohuai@huawei.com
 * [new tag]         patchew/20170313150124.4762-1-shorne@gmail.com -> patchew/20170313150124.4762-1-shorne@gmail.com
 * [new tag]         patchew/20170313180432.7067-1-krzk@kernel.org -> patchew/20170313180432.7067-1-krzk@kernel.org
 * [new tag]         patchew/20170313183557.23195-1-krzk@kernel.org -> patchew/20170313183557.23195-1-krzk@kernel.org
 * [new tag]         patchew/20170313184750.429-1-krzk@kernel.org -> patchew/20170313184750.429-1-krzk@kernel.org
 * [new tag]         patchew/20170313195547.21466-1-eblake@redhat.com -> patchew/20170313195547.21466-1-eblake@redhat.com
 * [new tag]         patchew/20170314012646.30560-1-fanc.fnst@cn.fujitsu.com -> patchew/20170314012646.30560-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170314015507.13350-1-fanc.fnst@cn.fujitsu.com -> patchew/20170314015507.13350-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170314023050.32756-1-famz@redhat.com -> patchew/20170314023050.32756-1-famz@redhat.com
 * [new tag]         patchew/20170314023933.12118-1-famz@redhat.com -> patchew/20170314023933.12118-1-famz@redhat.com
 * [new tag]         patchew/20170314042626.20020-1-david@gibson.dropbear.id.au -> patchew/20170314042626.20020-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170314063919.16200-1-hangaohuai@huawei.com -> patchew/20170314063919.16200-1-hangaohuai@huawei.com
 * [new tag]         patchew/20170314090922.28083-1-stefanha@redhat.com -> patchew/20170314090922.28083-1-stefanha@redhat.com
 * [new tag]         patchew/20170314101925.16792-1-andreas@grapentin.org -> patchew/20170314101925.16792-1-andreas@grapentin.org
 * [new tag]         patchew/20170314102747.31395-1-fanc.fnst@cn.fujitsu.com -> patchew/20170314102747.31395-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170314111157.14464-1-pbonzini@redhat.com -> patchew/20170314111157.14464-1-pbonzini@redhat.com
 * [new tag]         patchew/20170314111157.14464-2-pbonzini@redhat.com -> patchew/20170314111157.14464-2-pbonzini@redhat.com
 * [new tag]         patchew/20170314113209.12025-1-eduardo.otubo@profitbricks.com -> patchew/20170314113209.12025-1-eduardo.otubo@profitbricks.com
 * [new tag]         patchew/20170314113941.15362-1-pbonzini@redhat.com -> patchew/20170314113941.15362-1-pbonzini@redhat.com
 * [new tag]         patchew/20170314123841.2415-1-fanc.fnst@cn.fujitsu.com -> patchew/20170314123841.2415-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170314132654.6751-1-famz@redhat.com -> patchew/20170314132654.6751-1-famz@redhat.com
 * [new tag]         patchew/20170314144453.5027-1-andreas@grapentin.org -> patchew/20170314144453.5027-1-andreas@grapentin.org
 * [new tag]         patchew/20170314153626.16989-1-famz@redhat.com -> patchew/20170314153626.16989-1-famz@redhat.com
 * [new tag]         patchew/20170314154315.17869-1-famz@redhat.com -> patchew/20170314154315.17869-1-famz@redhat.com
 * [new tag]         patchew/20170314161205.19415-1-famz@redhat.com -> patchew/20170314161205.19415-1-famz@redhat.com
 * [new tag]         patchew/20170314165953.18506-1-andreas@grapentin.org -> patchew/20170314165953.18506-1-andreas@grapentin.org
 * [new tag]         patchew/20170314200641.2958-1-ehabkost@redhat.com -> patchew/20170314200641.2958-1-ehabkost@redhat.com
 * [new tag]         patchew/20170315050602.7750-1-stefanha@redhat.com -> patchew/20170315050602.7750-1-stefanha@redhat.com
 * [new tag]         patchew/20170315081641.20588-1-pbonzini@redhat.com -> patchew/20170315081641.20588-1-pbonzini@redhat.com
 * [new tag]         patchew/20170315092940.1367-1-stefanha@redhat.com -> patchew/20170315092940.1367-1-stefanha@redhat.com
 * [new tag]         patchew/20170315105646.32355-1-berrange@redhat.com -> patchew/20170315105646.32355-1-berrange@redhat.com
 * [new tag]         patchew/20170315123421.28815-1-berrange@redhat.com -> patchew/20170315123421.28815-1-berrange@redhat.com
 * [new tag]         patchew/20170315135021.6978-1-quintela@redhat.com -> patchew/20170315135021.6978-1-quintela@redhat.com
 * [new tag]         patchew/20170315140816.6604-1-shorne@gmail.com -> patchew/20170315140816.6604-1-shorne@gmail.com
 * [new tag]         patchew/20170315142032.6788-1-shorne@gmail.com -> patchew/20170315142032.6788-1-shorne@gmail.com
 * [new tag]         patchew/20170315144825.3108-1-alex.bennee@linaro.org -> patchew/20170315144825.3108-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170315161603.30135-1-berrange@redhat.com -> patchew/20170315161603.30135-1-berrange@redhat.com
 * [new tag]         patchew/20170315182541.14073-1-berrange@redhat.com -> patchew/20170315182541.14073-1-berrange@redhat.com
 * [new tag]         patchew/20170315212811.15937-1-jsnow@redhat.com -> patchew/20170315212811.15937-1-jsnow@redhat.com
 * [new tag]         patchew/20170316004603.20609-1-jsnow@redhat.com -> patchew/20170316004603.20609-1-jsnow@redhat.com
 * [new tag]         patchew/20170316005259.21970-1-jsnow@redhat.com -> patchew/20170316005259.21970-1-jsnow@redhat.com
 * [new tag]         patchew/20170316070427.17120-1-stefanha@redhat.com -> patchew/20170316070427.17120-1-stefanha@redhat.com
 * [new tag]         patchew/20170316084229.32497-1-fanc.fnst@cn.fujitsu.com -> patchew/20170316084229.32497-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170316090048.23185-1-jordan.l.justen@intel.com -> patchew/20170316090048.23185-1-jordan.l.justen@intel.com
 * [new tag]         patchew/20170316090141.13421-1-quintela@redhat.com -> patchew/20170316090141.13421-1-quintela@redhat.com
 * [new tag]         patchew/20170316092030.1685-2-iwona260909@gmail.com -> patchew/20170316092030.1685-2-iwona260909@gmail.com
 * [new tag]         patchew/20170316092121.25672-1-marcandre.lureau@redhat.com -> patchew/20170316092121.25672-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170316095750.26952-1-cornelia.huck@de.ibm.com -> patchew/20170316095750.26952-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170316102351.25056-1-vfeenstr@redhat.com -> patchew/20170316102351.25056-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170316111416.25587-1-vfeenstr@redhat.com -> patchew/20170316111416.25587-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170316112016.26450-1-berrange@redhat.com -> patchew/20170316112016.26450-1-berrange@redhat.com
 * [new tag]         patchew/20170316120110.11677-2-iwona260909@gmail.com -> patchew/20170316120110.11677-2-iwona260909@gmail.com
 * [new tag]         patchew/20170316145045.10840-2-vfeenstr@redhat.com -> patchew/20170316145045.10840-2-vfeenstr@redhat.com
 * [new tag]         patchew/20170316161535.22157-1-pbonzini@redhat.com -> patchew/20170316161535.22157-1-pbonzini@redhat.com
 * [new tag]         patchew/20170316163640.5597-1-pbonzini@redhat.com -> patchew/20170316163640.5597-1-pbonzini@redhat.com
 * [new tag]         patchew/20170316212351.13797-1-jsnow@redhat.com -> patchew/20170316212351.13797-1-jsnow@redhat.com
 * [new tag]         patchew/20170317015630.30396-1-famz@redhat.com -> patchew/20170317015630.30396-1-famz@redhat.com
 * [new tag]         patchew/20170317021739.16877-1-famz@redhat.com -> patchew/20170317021739.16877-1-famz@redhat.com
 * [new tag]         patchew/20170317031928.40189-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170317031928.40189-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170317061447.16243-1-famz@redhat.com -> patchew/20170317061447.16243-1-famz@redhat.com
 * [new tag]         patchew/20170317092802.17973-1-marcandre.lureau@redhat.com -> patchew/20170317092802.17973-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170317104541.28979-1-stefanha@redhat.com -> patchew/20170317104541.28979-1-stefanha@redhat.com
 * [new tag]         patchew/20170317113353.26297-1-famz@redhat.com -> patchew/20170317113353.26297-1-famz@redhat.com
 * [new tag]         patchew/20170317123242.32579-1-famz@redhat.com -> patchew/20170317123242.32579-1-famz@redhat.com
 * [new tag]         patchew/20170317152214.6148-1-pbonzini@redhat.com -> patchew/20170317152214.6148-1-pbonzini@redhat.com
 * [new tag]         patchew/20170317152412.8472-1-pbonzini@redhat.com -> patchew/20170317152412.8472-1-pbonzini@redhat.com
 * [new tag]         patchew/20170317160811.28370-1-pbonzini@redhat.com -> patchew/20170317160811.28370-1-pbonzini@redhat.com
 * [new tag]         patchew/20170317210627.23532-1-marex@denx.de -> patchew/20170317210627.23532-1-marex@denx.de
 * [new tag]         patchew/20170318142813.4781-1-krzk@kernel.org -> patchew/20170318142813.4781-1-krzk@kernel.org
 * [new tag]         patchew/20170318192509.15499-1-krzk@kernel.org -> patchew/20170318192509.15499-1-krzk@kernel.org
 * [new tag]         patchew/20170319094631.17298-1-pbonzini@redhat.com -> patchew/20170319094631.17298-1-pbonzini@redhat.com
 * [new tag]         patchew/20170319162715.2260-1-sauravsachidanand@gmail.com -> patchew/20170319162715.2260-1-sauravsachidanand@gmail.com
 * [new tag]         patchew/20170320001249.25521-1-haozhong.zhang@intel.com -> patchew/20170320001249.25521-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170320085844.15178-1-cornelia.huck@de.ibm.com -> patchew/20170320085844.15178-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170320101549.150076-1-vpalatin@chromium.org -> patchew/20170320101549.150076-1-vpalatin@chromium.org
 * [new tag]         patchew/20170320112426.4030-1-lvivier@redhat.com -> patchew/20170320112426.4030-1-lvivier@redhat.com
 * [new tag]         patchew/20170320115951.25345-1-lersek@redhat.com -> patchew/20170320115951.25345-1-lersek@redhat.com
 * [new tag]         patchew/20170320141244.20737-1-lvivier@redhat.com -> patchew/20170320141244.20737-1-lvivier@redhat.com
 * [new tag]         patchew/20170320153441.2181-1-alex.bennee@linaro.org -> patchew/20170320153441.2181-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170320160446.14643-1-pbonzini@redhat.com -> patchew/20170320160446.14643-1-pbonzini@redhat.com
 * [new tag]         patchew/20170320170557.15645-1-lersek@redhat.com -> patchew/20170320170557.15645-1-lersek@redhat.com
 * [new tag]         patchew/20170320173258.3621-1-sauravsachidanand@gmail.com -> patchew/20170320173258.3621-1-sauravsachidanand@gmail.com
 * [new tag]         patchew/20170320173828.3874-1-sauravsachidanand@gmail.com -> patchew/20170320173828.3874-1-sauravsachidanand@gmail.com
 * [new tag]         patchew/20170320173840.3626-1-dgilbert@redhat.com -> patchew/20170320173840.3626-1-dgilbert@redhat.com
 * [new tag]         patchew/20170320180024.23432-1-arvolkov@inbox.ru -> patchew/20170320180024.23432-1-arvolkov@inbox.ru
 * [new tag]         patchew/20170321022243.29453-1-fanc.fnst@cn.fujitsu.com -> patchew/20170321022243.29453-1-fanc.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170321031635.22123-1-famz@redhat.com -> patchew/20170321031635.22123-1-famz@redhat.com
 * [new tag]         patchew/20170321031705.22291-1-eblake@redhat.com -> patchew/20170321031705.22291-1-eblake@redhat.com
 * [new tag]         patchew/20170321102542.8211-1-lvivier@redhat.com -> patchew/20170321102542.8211-1-lvivier@redhat.com
 * [new tag]         patchew/20170321104952.6236-1-sameeh@daynix.com -> patchew/20170321104952.6236-1-sameeh@daynix.com
 * [new tag]         patchew/20170321120326.10011-1-sameeh@daynix.com -> patchew/20170321120326.10011-1-sameeh@daynix.com
 * [new tag]         patchew/20170321135911.22731-1-sameeh@daynix.com -> patchew/20170321135911.22731-1-sameeh@daynix.com
 * [new tag]         patchew/20170321141435.23701-1-sameeh@daynix.com -> patchew/20170321141435.23701-1-sameeh@daynix.com
 * [new tag]         patchew/20170321223151.12984-1-Andrew.Baumann@microsoft.com -> patchew/20170321223151.12984-1-Andrew.Baumann@microsoft.com
 * [new tag]         patchew/20170322023820.10772-1-eblake@redhat.com -> patchew/20170322023820.10772-1-eblake@redhat.com
 * [new tag]         patchew/20170322111608.31230-1-stefanha@redhat.com -> patchew/20170322111608.31230-1-stefanha@redhat.com
 * [new tag]         patchew/20170322114359.3455-1-sameeh@daynix.com -> patchew/20170322114359.3455-1-sameeh@daynix.com
 * [new tag]         patchew/20170322115241.2810-1-marcandre.lureau@redhat.com -> patchew/20170322115241.2810-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170322121344.5484-1-pbonzini@redhat.com -> patchew/20170322121344.5484-1-pbonzini@redhat.com
 * [new tag]         patchew/20170322123655.32085-1-pasic@linux.vnet.ibm.com -> patchew/20170322123655.32085-1-pasic@linux.vnet.ibm.com
 * [new tag]         patchew/20170322125438.6235-1-stefanha@redhat.com -> patchew/20170322125438.6235-1-stefanha@redhat.com
 * [new tag]         patchew/20170322130952.8997-1-sameeh@daynix.com -> patchew/20170322130952.8997-1-sameeh@daynix.com
 * [new tag]         patchew/20170322144525.18964-1-eblake@redhat.com -> patchew/20170322144525.18964-1-eblake@redhat.com
 * [new tag]         patchew/20170322154649.6947-1-vfeenstr@redhat.com -> patchew/20170322154649.6947-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170322155906.10679-1-rkrcmar@redhat.com -> patchew/20170322155906.10679-1-rkrcmar@redhat.com
 * [new tag]         patchew/20170322160052.2820-1-ehabkost@redhat.com -> patchew/20170322160052.2820-1-ehabkost@redhat.com
 * [new tag]         patchew/20170322171656.7901-2-vfeenstr@redhat.com -> patchew/20170322171656.7901-2-vfeenstr@redhat.com
 * [new tag]         patchew/20170322173023.22654-1-eblake@redhat.com -> patchew/20170322173023.22654-1-eblake@redhat.com
 * [new tag]         patchew/20170322173102.18180-1-jcody@redhat.com -> patchew/20170322173102.18180-1-jcody@redhat.com
 * [new tag]         patchew/20170322204844.446-1-f4bug@amsat.org -> patchew/20170322204844.446-1-f4bug@amsat.org
 * [new tag]         patchew/20170322210005.16533-1-kwolf@redhat.com -> patchew/20170322210005.16533-1-kwolf@redhat.com
 * [new tag]         patchew/20170323000645.10756-2-vfeenstr@redhat.com -> patchew/20170323000645.10756-2-vfeenstr@redhat.com
 * [new tag]         patchew/20170323002704.11167-2-vfeenstr@redhat.com -> patchew/20170323002704.11167-2-vfeenstr@redhat.com
 * [new tag]         patchew/20170323092211.29990-1-sameeh@daynix.com -> patchew/20170323092211.29990-1-sameeh@daynix.com
 * [new tag]         patchew/20170323095929.20140-1-cornelia.huck@de.ibm.com -> patchew/20170323095929.20140-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170323100455.26821-1-marcandre.lureau@redhat.com -> patchew/20170323100455.26821-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170323101048.24848-1-david@gibson.dropbear.id.au -> patchew/20170323101048.24848-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170323113156.9277-1-marcandre.lureau@redhat.com -> patchew/20170323113156.9277-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170323113913.26974-2-vfeenstr@redhat.com -> patchew/20170323113913.26974-2-vfeenstr@redhat.com
 * [new tag]         patchew/20170323160315.19696-1-eblake@redhat.com -> patchew/20170323160315.19696-1-eblake@redhat.com
 * [new tag]         patchew/20170323162650.16973-2-sameeh@daynix.com -> patchew/20170323162650.16973-2-sameeh@daynix.com
 * [new tag]         patchew/20170323173928.14439-1-pbonzini@redhat.com -> patchew/20170323173928.14439-1-pbonzini@redhat.com
 * [new tag]         patchew/20170323175713.12984-1-bobby.prani@gmail.com -> patchew/20170323175713.12984-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170323175851.14342-1-bobby.prani@gmail.com -> patchew/20170323175851.14342-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170323185107.2261-1-vfeenstr@redhat.com -> patchew/20170323185107.2261-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170323204544.12015-1-quintela@redhat.com -> patchew/20170323204544.12015-1-quintela@redhat.com
 * [new tag]         patchew/20170324140854.28134-1-stefanha@redhat.com -> patchew/20170324140854.28134-1-stefanha@redhat.com
 * [new tag]         patchew/20170324152607.6604-1-alex.bennee@linaro.org -> patchew/20170324152607.6604-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170324203645.12828-1-ehabkost@redhat.com -> patchew/20170324203645.12828-1-ehabkost@redhat.com
 * [new tag]         patchew/20170324212115.6772-1-Andrew.Baumann@microsoft.com -> patchew/20170324212115.6772-1-Andrew.Baumann@microsoft.com
 * [new tag]         patchew/20170324220141.10104-1-Andrew.Baumann@microsoft.com -> patchew/20170324220141.10104-1-Andrew.Baumann@microsoft.com
 * [new tag]         patchew/20170324231943.18768-1-Andrew.Baumann@microsoft.com -> patchew/20170324231943.18768-1-Andrew.Baumann@microsoft.com
 * [new tag]         patchew/20170324234646.15264-1-Andrew.Baumann@microsoft.com -> patchew/20170324234646.15264-1-Andrew.Baumann@microsoft.com
 * [new tag]         patchew/20170325112501.15887-1-jcelaya@gmail.com -> patchew/20170325112501.15887-1-jcelaya@gmail.com
 * [new tag]         patchew/20170326095349.8571-1-jcelaya@gmail.com -> patchew/20170326095349.8571-1-jcelaya@gmail.com
 * [new tag]         patchew/20170326095622.5105-1-sameeh@daynix.com -> patchew/20170326095622.5105-1-sameeh@daynix.com
 * [new tag]         patchew/20170326184634.25042-1-samuel.thibault@ens-lyon.org -> patchew/20170326184634.25042-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20170327030518.37268-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170327030518.37268-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170327044030.31306-1-aik@ozlabs.ru -> patchew/20170327044030.31306-1-aik@ozlabs.ru
 * [new tag]         patchew/20170327084612.8998-1-laurent@vivier.eu -> patchew/20170327084612.8998-1-laurent@vivier.eu
 * [new tag]         patchew/20170327123223.1199-1-stefanha@redhat.com -> patchew/20170327123223.1199-1-stefanha@redhat.com
 * [new tag]         patchew/20170327131718.18268-1-stefanha@redhat.com -> patchew/20170327131718.18268-1-stefanha@redhat.com
 * [new tag]         patchew/20170327132242.17104-1-lvivier@redhat.com -> patchew/20170327132242.17104-1-lvivier@redhat.com
 * [new tag]         patchew/20170327142625.1249-1-famz@redhat.com -> patchew/20170327142625.1249-1-famz@redhat.com
 * [new tag]         patchew/20170327144815.8043-1-ehabkost@redhat.com -> patchew/20170327144815.8043-1-ehabkost@redhat.com
 * [new tag]         patchew/20170327155234.10980-1-mreitz@redhat.com -> patchew/20170327155234.10980-1-mreitz@redhat.com
 * [new tag]         patchew/20170327161615.19637-1-pbonzini@redhat.com -> patchew/20170327161615.19637-1-pbonzini@redhat.com
 * [new tag]         patchew/20170327165005.22038-1-stefanha@redhat.com -> patchew/20170327165005.22038-1-stefanha@redhat.com
 * [new tag]         patchew/20170327182137.7006-1-laurent@vivier.eu -> patchew/20170327182137.7006-1-laurent@vivier.eu
 * [new tag]         patchew/20170327182624.2914-1-jcelaya@gmail.com -> patchew/20170327182624.2914-1-jcelaya@gmail.com
 * [new tag]         patchew/20170327201146.1820-1-sw@weilnetz.de -> patchew/20170327201146.1820-1-sw@weilnetz.de
 * [new tag]         patchew/20170328021651.19350-1-david@gibson.dropbear.id.au -> patchew/20170328021651.19350-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170328072130.17142-1-vfeenstr@redhat.com -> patchew/20170328072130.17142-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170328081349.18734-1-aik@ozlabs.ru -> patchew/20170328081349.18734-1-aik@ozlabs.ru
 * [new tag]         patchew/20170328083623.10396-1-alex.bennee@linaro.org -> patchew/20170328083623.10396-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170328100713.28785-1-stefanha@redhat.com -> patchew/20170328100713.28785-1-stefanha@redhat.com
 * [new tag]         patchew/20170328110936.24806-1-alex.bennee@linaro.org -> patchew/20170328110936.24806-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170328120934.29526-1-lvivier@redhat.com -> patchew/20170328120934.29526-1-lvivier@redhat.com
 * [new tag]         patchew/20170328130843.1931-1-stefanha@redhat.com -> patchew/20170328130843.1931-1-stefanha@redhat.com
 * [new tag]         patchew/20170328134418.3426-1-stefanha@redhat.com -> patchew/20170328134418.3426-1-stefanha@redhat.com
 * [new tag]         patchew/20170328140555.3001-1-jcody@redhat.com -> patchew/20170328140555.3001-1-jcody@redhat.com
 * [new tag]         patchew/20170328142346.3899-1-stefanha@redhat.com -> patchew/20170328142346.3899-1-stefanha@redhat.com
 * [new tag]         patchew/20170328152745.28186-1-dgilbert@redhat.com -> patchew/20170328152745.28186-1-dgilbert@redhat.com
 * [new tag]         patchew/20170328160646.21250-1-marcandre.lureau@redhat.com -> patchew/20170328160646.21250-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170328184959.5550-1-sw@weilnetz.de -> patchew/20170328184959.5550-1-sw@weilnetz.de
 * [new tag]         patchew/20170328190756.28984-1-laurent@vivier.eu -> patchew/20170328190756.28984-1-laurent@vivier.eu
 * [new tag]         patchew/20170328195206.2761-1-ehabkost@redhat.com -> patchew/20170328195206.2761-1-ehabkost@redhat.com
 * [new tag]         patchew/20170328205129.15138-1-mreitz@redhat.com -> patchew/20170328205129.15138-1-mreitz@redhat.com
 * [new tag]         patchew/20170328225327.16707-1-samuel.thibault@ens-lyon.org -> patchew/20170328225327.16707-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20170329011637.89377-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170329011637.89377-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170329033415.891-1-david@gibson.dropbear.id.au -> patchew/20170329033415.891-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170329043257.20595-1-bobby.prani@gmail.com -> patchew/20170329043257.20595-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170329050958.3652-1-aik@ozlabs.ru -> patchew/20170329050958.3652-1-aik@ozlabs.ru
 * [new tag]         patchew/20170329165251.28740-1-iwona260909@gmail.com -> patchew/20170329165251.28740-1-iwona260909@gmail.com
 * [new tag]         patchew/20170329183914.4197-1-iwona260909@gmail.com -> patchew/20170329183914.4197-1-iwona260909@gmail.com
 * [new tag]         patchew/20170329194148.19015-1-ehabkost@redhat.com -> patchew/20170329194148.19015-1-ehabkost@redhat.com
 * [new tag]         patchew/20170329210439.18062-1-iwona260909@gmail.com -> patchew/20170329210439.18062-1-iwona260909@gmail.com
 * [new tag]         patchew/20170330050924.22134-1-iwona260909@gmail.com -> patchew/20170330050924.22134-1-iwona260909@gmail.com
 * [new tag]         patchew/20170330061830.25028-2-ztong@vt.edu -> patchew/20170330061830.25028-2-ztong@vt.edu
 * [new tag]         patchew/20170330145719.12068-1-shah.suramya@gmail.com -> patchew/20170330145719.12068-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170330154413.22014-1-shah.suramya@gmail.com -> patchew/20170330154413.22014-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170330161756.26084-1-shah.suramya@gmail.com -> patchew/20170330161756.26084-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170330163407.26263-1-shah.suramya@gmail.com -> patchew/20170330163407.26263-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170330165008.26419-1-shah.suramya@gmail.com -> patchew/20170330165008.26419-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170330221243.17333-1-mreitz@redhat.com -> patchew/20170330221243.17333-1-mreitz@redhat.com
 * [new tag]         patchew/20170330223645.349-1-eblake@redhat.com -> patchew/20170330223645.349-1-eblake@redhat.com
 * [new tag]         patchew/20170330232236.8272-1-emaste@freebsd.org -> patchew/20170330232236.8272-1-emaste@freebsd.org
 * [new tag]         patchew/20170331044711.21749-1-aik@ozlabs.ru -> patchew/20170331044711.21749-1-aik@ozlabs.ru
 * [new tag]         patchew/20170331045144.9307-1-david@gibson.dropbear.id.au -> patchew/20170331045144.9307-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170331084147.32716-1-haozhong.zhang@intel.com -> patchew/20170331084147.32716-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170331101947.2046-2-vfeenstr@redhat.com -> patchew/20170331101947.2046-2-vfeenstr@redhat.com
 * [new tag]         patchew/20170331102521.29253-1-kraxel@redhat.com -> patchew/20170331102521.29253-1-kraxel@redhat.com
 * [new tag]         patchew/20170331110244.9439-1-dgilbert@redhat.com -> patchew/20170331110244.9439-1-dgilbert@redhat.com
 * [new tag]         patchew/20170331120431.1767-1-mreitz@redhat.com -> patchew/20170331120431.1767-1-mreitz@redhat.com
 * [new tag]         patchew/20170331152730.12514-1-eblake@redhat.com -> patchew/20170331152730.12514-1-eblake@redhat.com
 * [new tag]         patchew/20170331164322.24020-1-stefanha@redhat.com -> patchew/20170331164322.24020-1-stefanha@redhat.com
 * [new tag]         patchew/20170331170018.11643.80499.stgit@gimli.home -> patchew/20170331170018.11643.80499.stgit@gimli.home
 * [new tag]         patchew/20170331170512.10381-1-mreitz@redhat.com -> patchew/20170331170512.10381-1-mreitz@redhat.com
 * [new tag]         patchew/20170331185356.2479-1-eblake@redhat.com -> patchew/20170331185356.2479-1-eblake@redhat.com
 * [new tag]         patchew/20170331192724.14339-1-ehabkost@redhat.com -> patchew/20170331192724.14339-1-ehabkost@redhat.com
 * [new tag]         patchew/20170331205133.23906-1-rjones@redhat.com -> patchew/20170331205133.23906-1-rjones@redhat.com
 * [new tag]         patchew/20170401004624.30886-1-ehabkost@redhat.com -> patchew/20170401004624.30886-1-ehabkost@redhat.com
 * [new tag]         patchew/20170401012508.24665-1-jcody@redhat.com -> patchew/20170401012508.24665-1-jcody@redhat.com
 * [new tag]         patchew/20170401155751.14322-1-mreitz@redhat.com -> patchew/20170401155751.14322-1-mreitz@redhat.com
 * [new tag]         patchew/20170402063802.30997-1-david@gibson.dropbear.id.au -> patchew/20170402063802.30997-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170403073550.29162-1-shah.suramya@gmail.com -> patchew/20170403073550.29162-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170403085822.13863-1-slp@redhat.com -> patchew/20170403085822.13863-1-slp@redhat.com
 * [new tag]         patchew/20170403095438.15423-1-marcandre.lureau@redhat.com -> patchew/20170403095438.15423-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170403100832.24088-1-david@gibson.dropbear.id.au -> patchew/20170403100832.24088-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170403102803.31820-1-kraxel@redhat.com -> patchew/20170403102803.31820-1-kraxel@redhat.com
 * [new tag]         patchew/20170403105238.23262-1-kraxel@redhat.com -> patchew/20170403105238.23262-1-kraxel@redhat.com
 * [new tag]         patchew/20170403114044.15762-1-lvivier@redhat.com -> patchew/20170403114044.15762-1-lvivier@redhat.com
 * [new tag]         patchew/20170403124524.10824-1-alex.bennee@linaro.org -> patchew/20170403124524.10824-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170403133901.18181-1-pbonzini@redhat.com -> patchew/20170403133901.18181-1-pbonzini@redhat.com
 * [new tag]         patchew/20170403153355.19722-1-mreitz@redhat.com -> patchew/20170403153355.19722-1-mreitz@redhat.com
 * [new tag]         patchew/20170403171843.3363-1-dgilbert@redhat.com -> patchew/20170403171843.3363-1-dgilbert@redhat.com
 * [new tag]         patchew/20170403175150.15253-1-mreitz@redhat.com -> patchew/20170403175150.15253-1-mreitz@redhat.com
 * [new tag]         patchew/20170403194409.21276-1-pbonzini@redhat.com -> patchew/20170403194409.21276-1-pbonzini@redhat.com
 * [new tag]         patchew/20170403200823.7394-1-vfeenstr@redhat.com -> patchew/20170403200823.7394-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170403235636.5647-1-laurent@vivier.eu -> patchew/20170403235636.5647-1-laurent@vivier.eu
 * [new tag]         patchew/20170404055146.8901-1-vfeenstr@redhat.com -> patchew/20170404055146.8901-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170404064631.16287-1-vfeenstr@redhat.com -> patchew/20170404064631.16287-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170404152011.16119-1-berrange@redhat.com -> patchew/20170404152011.16119-1-berrange@redhat.com
 * [new tag]         patchew/20170404202429.14643-1-ehabkost@redhat.com -> patchew/20170404202429.14643-1-ehabkost@redhat.com
 * [new tag]         patchew/20170405081209.26814-1-pbonzini@redhat.com -> patchew/20170405081209.26814-1-pbonzini@redhat.com
 * [new tag]         patchew/20170405091909.36357-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170405091909.36357-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170405104627.18140-1-sameeh@daynix.com -> patchew/20170405104627.18140-1-sameeh@daynix.com
 * [new tag]         patchew/20170405120106.19298-1-sameeh@daynix.com -> patchew/20170405120106.19298-1-sameeh@daynix.com
 * [new tag]         patchew/20170405152633.6824-1-pbonzini@redhat.com -> patchew/20170405152633.6824-1-pbonzini@redhat.com
 * [new tag]         patchew/20170405190024.27581-1-dgilbert@redhat.com -> patchew/20170405190024.27581-1-dgilbert@redhat.com
 * [new tag]         patchew/20170405194741.18956-1-eblake@redhat.com -> patchew/20170405194741.18956-1-eblake@redhat.com
 * [new tag]         patchew/20170405203345.12539.45427.stgit@gimli.home -> patchew/20170405203345.12539.45427.stgit@gimli.home
 * [new tag]         patchew/20170406102249.20383-1-nikunj@linux.vnet.ibm.com -> patchew/20170406102249.20383-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170406111646.12624-1-cornelia.huck@de.ibm.com -> patchew/20170406111646.12624-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170406120513.638-1-marcandre.lureau@redhat.com -> patchew/20170406120513.638-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170406142527.25835-1-famz@redhat.com -> patchew/20170406142527.25835-1-famz@redhat.com
 * [new tag]         patchew/20170406154107.9178-1-dgilbert@redhat.com -> patchew/20170406154107.9178-1-dgilbert@redhat.com
 * [new tag]         patchew/20170406190847.29347-1-eblake@redhat.com -> patchew/20170406190847.29347-1-eblake@redhat.com
 * [new tag]         patchew/20170406210917.6896-1-eblake@redhat.com -> patchew/20170406210917.6896-1-eblake@redhat.com
 * [new tag]         patchew/20170406212209.22788-1-ard.biesheuvel@linaro.org -> patchew/20170406212209.22788-1-ard.biesheuvel@linaro.org
 * [new tag]         patchew/20170406220934.6155.13106.stgit@gimli.home -> patchew/20170406220934.6155.13106.stgit@gimli.home
 * [new tag]         patchew/20170407013709.18440-1-eblake@redhat.com -> patchew/20170407013709.18440-1-eblake@redhat.com
 * [new tag]         patchew/20170407060752.31313-1-nikunj@linux.vnet.ibm.com -> patchew/20170407060752.31313-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170407065414.9143-1-famz@redhat.com -> patchew/20170407065414.9143-1-famz@redhat.com
 * [new tag]         patchew/20170407113404.9351-1-vsementsov@virtuozzo.com -> patchew/20170407113404.9351-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170407143254.22061-1-dgilbert@redhat.com -> patchew/20170407143254.22061-1-dgilbert@redhat.com
 * [new tag]         patchew/20170407143847.GM2138@work-vm -> patchew/20170407143847.GM2138@work-vm
 * [new tag]         patchew/20170407144138.12871-1-ard.biesheuvel@linaro.org -> patchew/20170407144138.12871-1-ard.biesheuvel@linaro.org
 * [new tag]         patchew/20170407222016.15308-1-f4bug@amsat.org -> patchew/20170407222016.15308-1-f4bug@amsat.org
 * [new tag]         patchew/20170408054318.19830-1-omar.rizwan@gmail.com -> patchew/20170408054318.19830-1-omar.rizwan@gmail.com
 * [new tag]         patchew/20170408143639.2524-1-shah.suramya@gmail.com -> patchew/20170408143639.2524-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170408150524.2870-1-shah.suramya@gmail.com -> patchew/20170408150524.2870-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170408193322.16631-1-slyfox@gentoo.org -> patchew/20170408193322.16631-1-slyfox@gentoo.org
 * [new tag]         patchew/20170410022636.29925-1-famz@redhat.com -> patchew/20170410022636.29925-1-famz@redhat.com
 * [new tag]         patchew/20170410060655.32289-1-nikunj@linux.vnet.ibm.com -> patchew/20170410060655.32289-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170410065837.31847-1-kraxel@redhat.com -> patchew/20170410065837.31847-1-kraxel@redhat.com
 * [new tag]         patchew/20170410075451.21329-1-famz@redhat.com -> patchew/20170410075451.21329-1-famz@redhat.com
 * [new tag]         patchew/20170410081217.2897-1-nikunj@linux.vnet.ibm.com -> patchew/20170410081217.2897-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170410102746.24889-1-kraxel@redhat.com -> patchew/20170410102746.24889-1-kraxel@redhat.com
 * [new tag]         patchew/20170410113131.2585-1-kraxel@redhat.com -> patchew/20170410113131.2585-1-kraxel@redhat.com
 * [new tag]         patchew/20170410142112.11550-1-marcandre.lureau@redhat.com -> patchew/20170410142112.11550-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170410150542.30376-1-famz@redhat.com -> patchew/20170410150542.30376-1-famz@redhat.com
 * [new tag]         patchew/20170411011718.9152-1-eblake@redhat.com -> patchew/20170411011718.9152-1-eblake@redhat.com
 * [new tag]         patchew/20170411060456.21594-1-anton@ozlabs.org -> patchew/20170411060456.21594-1-anton@ozlabs.org
 * [new tag]         patchew/20170411070243.635-1-kraxel@redhat.com -> patchew/20170411070243.635-1-kraxel@redhat.com
 * [new tag]         patchew/20170411075036.20206-1-sameeh@daynix.com -> patchew/20170411075036.20206-1-sameeh@daynix.com
 * [new tag]         patchew/20170411095654.18383-1-stefanha@redhat.com -> patchew/20170411095654.18383-1-stefanha@redhat.com
 * [new tag]         patchew/20170411101002.28451-1-maxime.coquelin@redhat.com -> patchew/20170411101002.28451-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170411105031.28904-1-alex.bennee@linaro.org -> patchew/20170411105031.28904-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170411122632.14050-1-famz@redhat.com -> patchew/20170411122632.14050-1-famz@redhat.com
 * [new tag]         patchew/20170411125205.23121-1-sameeh@daynix.com -> patchew/20170411125205.23121-1-sameeh@daynix.com
 * [new tag]         patchew/20170411131327.10734-1-mreitz@redhat.com -> patchew/20170411131327.10734-1-mreitz@redhat.com
 * [new tag]         patchew/20170411131733.27542-1-lvivier@redhat.com -> patchew/20170411131733.27542-1-lvivier@redhat.com
 * [new tag]         patchew/20170411134435.27271-1-mreitz@redhat.com -> patchew/20170411134435.27271-1-mreitz@redhat.com
 * [new tag]         patchew/20170411145050.31290-1-mreitz@redhat.com -> patchew/20170411145050.31290-1-mreitz@redhat.com
 * [new tag]         patchew/20170411155226.6395-1-mreitz@redhat.com -> patchew/20170411155226.6395-1-mreitz@redhat.com
 * [new tag]         patchew/20170412095111.11728-1-xiaoguangrong@tencent.com -> patchew/20170412095111.11728-1-xiaoguangrong@tencent.com
 * [new tag]         patchew/20170412135312.1686-1-lvivier@redhat.com -> patchew/20170412135312.1686-1-lvivier@redhat.com
 * [new tag]         patchew/20170412164445.23039-1-berrange@redhat.com -> patchew/20170412164445.23039-1-berrange@redhat.com
 * [new tag]         patchew/20170412173203.20072-1-lvivier@redhat.com -> patchew/20170412173203.20072-1-lvivier@redhat.com
 * [new tag]         patchew/20170413104117.4948-1-vfeenstr@redhat.com -> patchew/20170413104117.4948-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170413154334.23708-1-mreitz@redhat.com -> patchew/20170413154334.23708-1-mreitz@redhat.com
 * [new tag]         patchew/20170413160625.27719-1-mreitz@redhat.com -> patchew/20170413160625.27719-1-mreitz@redhat.com
 * [new tag]         patchew/20170413160952.29918-1-mreitz@redhat.com -> patchew/20170413160952.29918-1-mreitz@redhat.com
 * [new tag]         patchew/20170413203401.3213-1-mreitz@redhat.com -> patchew/20170413203401.3213-1-mreitz@redhat.com
 * [new tag]         patchew/20170414080206.2301-1-famz@redhat.com -> patchew/20170414080206.2301-1-famz@redhat.com
 * [new tag]         patchew/20170414083717.13641-1-lvivier@redhat.com -> patchew/20170414083717.13641-1-lvivier@redhat.com
 * [new tag]         patchew/20170414174056.28946-1-maxime.coquelin@redhat.com -> patchew/20170414174056.28946-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170415180316.2694-1-shah.suramya@gmail.com -> patchew/20170415180316.2694-1-shah.suramya@gmail.com
 * [new tag]         patchew/20170415192930.1443-1-bobby.prani@gmail.com -> patchew/20170415192930.1443-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170416151604.22506-1-krzk@kernel.org -> patchew/20170416151604.22506-1-krzk@kernel.org
 * [new tag]         patchew/20170417215916.12431-1-ehabkost@redhat.com -> patchew/20170417215916.12431-1-ehabkost@redhat.com
 * [new tag]         patchew/20170418061551.196582-1-mithro@mithis.com -> patchew/20170418061551.196582-1-mithro@mithis.com
 * [new tag]         patchew/20170418075911.7579-1-famz@redhat.com -> patchew/20170418075911.7579-1-famz@redhat.com
 * [new tag]         patchew/20170418103948.13965-1-famz@redhat.com -> patchew/20170418103948.13965-1-famz@redhat.com
 * [new tag]         patchew/20170418135726.28022-1-stefanha@redhat.com -> patchew/20170418135726.28022-1-stefanha@redhat.com
 * [new tag]         patchew/20170418143044.12187-1-famz@redhat.com -> patchew/20170418143044.12187-1-famz@redhat.com
 * [new tag]         patchew/20170418150133.22436-1-famz@redhat.com -> patchew/20170418150133.22436-1-famz@redhat.com
 * [new tag]         patchew/20170418191817.10430-1-bobby.prani@gmail.com -> patchew/20170418191817.10430-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170418221724.5707-1-ehabkost@redhat.com -> patchew/20170418221724.5707-1-ehabkost@redhat.com
 * [new tag]         patchew/20170419091757.15507-1-famz@redhat.com -> patchew/20170419091757.15507-1-famz@redhat.com
 * [new tag]         patchew/20170419092615.11410-1-vfeenstr@redhat.com -> patchew/20170419092615.11410-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170419094356.19826-1-famz@redhat.com -> patchew/20170419094356.19826-1-famz@redhat.com
 * [new tag]         patchew/20170419105258.4488-1-vfeenstr@redhat.com -> patchew/20170419105258.4488-1-vfeenstr@redhat.com
 * [new tag]         patchew/20170419144219.20371-1-pbonzini@redhat.com -> patchew/20170419144219.20371-1-pbonzini@redhat.com
 * [new tag]         patchew/20170419195413.30141-1-bobby.prani@gmail.com -> patchew/20170419195413.30141-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170419195413.30141-2-bobby.prani@gmail.com -> patchew/20170419195413.30141-2-bobby.prani@gmail.com
 * [new tag]         patchew/20170419205923.8808-1-quintela@redhat.com -> patchew/20170419205923.8808-1-quintela@redhat.com
 * [new tag]         patchew/20170419222258.13415-1-eblake@redhat.com -> patchew/20170419222258.13415-1-eblake@redhat.com
 * [new tag]         patchew/20170420005428.11465-1-famz@redhat.com -> patchew/20170420005428.11465-1-famz@redhat.com
 * [new tag]         patchew/20170420040003.31074-1-famz@redhat.com -> patchew/20170420040003.31074-1-famz@redhat.com
 * [new tag]         patchew/20170420075237.18219-1-famz@redhat.com -> patchew/20170420075237.18219-1-famz@redhat.com
 * [new tag]         patchew/20170420120058.28404-1-pbonzini@redhat.com -> patchew/20170420120058.28404-1-pbonzini@redhat.com
 * [new tag]         patchew/20170420121639.32685-1-berrange@redhat.com -> patchew/20170420121639.32685-1-berrange@redhat.com
 * [new tag]         patchew/20170420133058.12911-1-pbonzini@redhat.com -> patchew/20170420133058.12911-1-pbonzini@redhat.com
 * [new tag]         patchew/20170420184705.25018-1-ehabkost@redhat.com -> patchew/20170420184705.25018-1-ehabkost@redhat.com
 * [new tag]         patchew/20170420202745.149601-1-lepton@google.com -> patchew/20170420202745.149601-1-lepton@google.com
 * [new tag]         patchew/20170421020528.1087-1-oss@buserror.net -> patchew/20170421020528.1087-1-oss@buserror.net
 * [new tag]         patchew/20170421074038.774-1-cornelia.huck@de.ibm.com -> patchew/20170421074038.774-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170421091632.30900-1-kraxel@redhat.com -> patchew/20170421091632.30900-1-kraxel@redhat.com
 * [new tag]         patchew/20170421092214.8176-1-kraxel@redhat.com -> patchew/20170421092214.8176-1-kraxel@redhat.com
 * [new tag]         patchew/20170421092234.8368-1-kraxel@redhat.com -> patchew/20170421092234.8368-1-kraxel@redhat.com
 * [new tag]         patchew/20170421094316.19361-1-stefanha@redhat.com -> patchew/20170421094316.19361-1-stefanha@redhat.com
 * [new tag]         patchew/20170421095334.26692-1-stefanha@redhat.com -> patchew/20170421095334.26692-1-stefanha@redhat.com
 * [new tag]         patchew/20170421111220.32673-1-berrange@redhat.com -> patchew/20170421111220.32673-1-berrange@redhat.com
 * [new tag]         patchew/20170421115646.15544-1-quintela@redhat.com -> patchew/20170421115646.15544-1-quintela@redhat.com
 * [new tag]         patchew/20170421122710.15373-1-famz@redhat.com -> patchew/20170421122710.15373-1-famz@redhat.com
 * [new tag]         patchew/20170421134644.10239-1-jcody@redhat.com -> patchew/20170421134644.10239-1-jcody@redhat.com
 * [new tag]         patchew/201704212148.v3LLmgk6031641@linux03a.ddci.com -> patchew/201704212148.v3LLmgk6031641@linux03a.ddci.com
 * [new tag]         patchew/201704212158.v3LLwNYl031738@linux03a.ddci.com -> patchew/201704212158.v3LLwNYl031738@linux03a.ddci.com
 * [new tag]         patchew/20170422190709.8676-1-krzk@kernel.org -> patchew/20170422190709.8676-1-krzk@kernel.org
 * [new tag]         patchew/20170423160854.3478-1-aurelien@aurel32.net -> patchew/20170423160854.3478-1-aurelien@aurel32.net
 * [new tag]         patchew/20170423223216.17856-1-aurelien@aurel32.net -> patchew/20170423223216.17856-1-aurelien@aurel32.net
 * [new tag]         patchew/20170423223240.17917-1-aurelien@aurel32.net -> patchew/20170423223240.17917-1-aurelien@aurel32.net
 * [new tag]         patchew/20170424015927.8933-1-david@gibson.dropbear.id.au -> patchew/20170424015927.8933-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170424091659.26708-1-berrange@redhat.com -> patchew/20170424091659.26708-1-berrange@redhat.com
 * [new tag]         patchew/20170424120634.12268-1-ppandit@redhat.com -> patchew/20170424120634.12268-1-ppandit@redhat.com
 * [new tag]         patchew/20170424121708.31953-1-kraxel@redhat.com -> patchew/20170424121708.31953-1-kraxel@redhat.com
 * [new tag]         patchew/20170424130355.31324-1-marcandre.lureau@redhat.com -> patchew/20170424130355.31324-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170424143254.20569-1-mjt@msgid.tls.msk.ru -> patchew/20170424143254.20569-1-mjt@msgid.tls.msk.ru
 * [new tag]         patchew/20170424153244.2600-1-dgilbert@redhat.com -> patchew/20170424153244.2600-1-dgilbert@redhat.com
 * [new tag]         patchew/20170424153615.18614-1-berrange@redhat.com -> patchew/20170424153615.18614-1-berrange@redhat.com
 * [new tag]         patchew/20170424185817.41002-1-imammedo@redhat.com -> patchew/20170424185817.41002-1-imammedo@redhat.com
 * [new tag]         patchew/20170424192002.18622-1-jcody@redhat.com -> patchew/20170424192002.18622-1-jcody@redhat.com
 * [new tag]         patchew/20170424204500.41811-1-imammedo@redhat.com -> patchew/20170424204500.41811-1-imammedo@redhat.com
 * [new tag]         patchew/20170424220828.1472-1-danielhb@linux.vnet.ibm.com -> patchew/20170424220828.1472-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170425062952.99149-1-brendan@bslabs.net -> patchew/20170425062952.99149-1-brendan@bslabs.net
 * [new tag]         patchew/20170425083555.13547-1-nikunj@linux.vnet.ibm.com -> patchew/20170425083555.13547-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170425101104.3818-2-quintela@redhat.com -> patchew/20170425101104.3818-2-quintela@redhat.com
 * [new tag]         patchew/20170425101758.3944-1-quintela@redhat.com -> patchew/20170425101758.3944-1-quintela@redhat.com
 * [new tag]         patchew/20170425102446.4008-1-quintela@redhat.com -> patchew/20170425102446.4008-1-quintela@redhat.com
 * [new tag]         patchew/20170425103049.4073-1-quintela@redhat.com -> patchew/20170425103049.4073-1-quintela@redhat.com
 * [new tag]         patchew/20170425104116.31435-1-dgilbert@redhat.com -> patchew/20170425104116.31435-1-dgilbert@redhat.com
 * [new tag]         patchew/20170425104338.31984-1-rth@twiddle.net -> patchew/20170425104338.31984-1-rth@twiddle.net
 * [new tag]         patchew/20170425130520.31819-1-marcandre.lureau@redhat.com -> patchew/20170425130520.31819-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170425130623.3649-1-ppandit@redhat.com -> patchew/20170425130623.3649-1-ppandit@redhat.com
 * [new tag]         patchew/20170425153750.43322-1-imammedo@redhat.com -> patchew/20170425153750.43322-1-imammedo@redhat.com
 * [new tag]         patchew/20170425153858.25660-1-berrange@redhat.com -> patchew/20170425153858.25660-1-berrange@redhat.com
 * [new tag]         patchew/20170425180609.11004-1-krzk@kernel.org -> patchew/20170425180609.11004-1-krzk@kernel.org
 * [new tag]         patchew/20170425223739.6703-1-quintela@redhat.com -> patchew/20170425223739.6703-1-quintela@redhat.com
 * [new tag]         patchew/20170426020349.25257-1-famz@redhat.com -> patchew/20170426020349.25257-1-famz@redhat.com
 * [new tag]         patchew/20170426070034.10727-1-david@gibson.dropbear.id.au -> patchew/20170426070034.10727-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170426073247.7441-2-quintela@redhat.com -> patchew/20170426073247.7441-2-quintela@redhat.com
 * [new tag]         patchew/20170426100701.21893-1-lvivier@redhat.com -> patchew/20170426100701.21893-1-lvivier@redhat.com
 * [new tag]         patchew/20170426105027.10666-1-n54@gmx.com -> patchew/20170426105027.10666-1-n54@gmx.com
 * [new tag]         patchew/20170426115826.1826-1-n54@gmx.com -> patchew/20170426115826.1826-1-n54@gmx.com
 * [new tag]         patchew/20170426131604.3459-1-n54@gmx.com -> patchew/20170426131604.3459-1-n54@gmx.com
 * [new tag]         patchew/20170426135707.5261-1-dgilbert@redhat.com -> patchew/20170426135707.5261-1-dgilbert@redhat.com
 * [new tag]         patchew/20170426141407.10161-1-mreitz@redhat.com -> patchew/20170426141407.10161-1-mreitz@redhat.com
 * [new tag]         patchew/20170426153900.21066-1-berrange@redhat.com -> patchew/20170426153900.21066-1-berrange@redhat.com
 * [new tag]         patchew/20170426173044.32525-2-rth@twiddle.net -> patchew/20170426173044.32525-2-rth@twiddle.net
 * [new tag]         patchew/20170426182949.13433-1-nikunj@linux.vnet.ibm.com -> patchew/20170426182949.13433-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170426183721.7482-1-dgilbert@redhat.com -> patchew/20170426183721.7482-1-dgilbert@redhat.com
 * [new tag]         patchew/20170426212303.27961-1-danielhb@linux.vnet.ibm.com -> patchew/20170426212303.27961-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170426213124.29064-1-danielhb@linux.vnet.ibm.com -> patchew/20170426213124.29064-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170426221046.4596-1-eblake@redhat.com -> patchew/20170426221046.4596-1-eblake@redhat.com
 * [new tag]         patchew/20170427051824.30194-1-nikunj@linux.vnet.ibm.com -> patchew/20170427051824.30194-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170427072843.8089-1-david@gibson.dropbear.id.au -> patchew/20170427072843.8089-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170427101259.13798-1-lvivier@redhat.com -> patchew/20170427101259.13798-1-lvivier@redhat.com
 * [new tag]         patchew/20170427101528.12356-1-pbonzini@redhat.com -> patchew/20170427101528.12356-1-pbonzini@redhat.com
 * [new tag]         patchew/20170427120006.20564-1-rth@twiddle.net -> patchew/20170427120006.20564-1-rth@twiddle.net
 * [new tag]         patchew/20170427165526.19836-1-dgilbert@redhat.com -> patchew/20170427165526.19836-1-dgilbert@redhat.com
 * [new tag]         patchew/20170427192211.30640-1-eblake@redhat.com -> patchew/20170427192211.30640-1-eblake@redhat.com
 * [new tag]         patchew/20170427205100.9505-1-jsnow@redhat.com -> patchew/20170427205100.9505-1-jsnow@redhat.com
 * [new tag]         patchew/20170427215821.19397-1-eblake@redhat.com -> patchew/20170427215821.19397-1-eblake@redhat.com
 * [new tag]         patchew/20170427223628.20893-1-jsnow@redhat.com -> patchew/20170427223628.20893-1-jsnow@redhat.com
 * [new tag]         patchew/20170428021317.24711-1-eblake@redhat.com -> patchew/20170428021317.24711-1-eblake@redhat.com
 * [new tag]         patchew/20170428022329.30726-1-eblake@redhat.com -> patchew/20170428022329.30726-1-eblake@redhat.com
 * [new tag]         patchew/20170428072723.7036-1-yu.ning@linux.intel.com -> patchew/20170428072723.7036-1-yu.ning@linux.intel.com
 * [new tag]         patchew/20170428075612.9997-1-kraxel@redhat.com -> patchew/20170428075612.9997-1-kraxel@redhat.com
 * [new tag]         patchew/20170428084237.23960-1-kraxel@redhat.com -> patchew/20170428084237.23960-1-kraxel@redhat.com
 * [new tag]         patchew/20170428101418.44851-1-aik@ozlabs.ru -> patchew/20170428101418.44851-1-aik@ozlabs.ru
 * [new tag]         patchew/20170428121553.22408-1-berrange@redhat.com -> patchew/20170428121553.22408-1-berrange@redhat.com
 * [new tag]         patchew/20170428122444.23361-2-berrange@redhat.com -> patchew/20170428122444.23361-2-berrange@redhat.com
 * [new tag]         patchew/20170428125632.5704-1-luc.michel@git.antfield.fr -> patchew/20170428125632.5704-1-luc.michel@git.antfield.fr
 * [new tag]         patchew/20170428165517.30341-1-mreitz@redhat.com -> patchew/20170428165517.30341-1-mreitz@redhat.com
 * [new tag]         patchew/20170429104937.31341-1-zxq_yx_007@163.com -> patchew/20170429104937.31341-1-zxq_yx_007@163.com
 * [new tag]         patchew/20170429115509.27551-1-aik@ozlabs.ru -> patchew/20170429115509.27551-1-aik@ozlabs.ru
 * [new tag]         patchew/20170429123707.16675-1-aik@ozlabs.ru -> patchew/20170429123707.16675-1-aik@ozlabs.ru
 * [new tag]         patchew/20170429164750.17414-1-samuel.thibault@ens-lyon.org -> patchew/20170429164750.17414-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20170430144706.24527-1-aurelien@aurel32.net -> patchew/20170430144706.24527-1-aurelien@aurel32.net
 * [new tag]         patchew/20170430172547.13415-1-danielhb@linux.vnet.ibm.com -> patchew/20170430172547.13415-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170501221046.9369-1-aurelien@aurel32.net -> patchew/20170501221046.9369-1-aurelien@aurel32.net
 * [new tag]         patchew/20170502061649.6668.93083.stgit@PASHA-ISP -> patchew/20170502061649.6668.93083.stgit@PASHA-ISP
 * [new tag]         patchew/20170502120350.3368.92338.stgit@PASHA-ISP -> patchew/20170502120350.3368.92338.stgit@PASHA-ISP
 * [new tag]         patchew/20170502152306.3101-1-lvivier@redhat.com -> patchew/20170502152306.3101-1-lvivier@redhat.com
 * [new tag]         patchew/20170502155452.7033-1-berrange@redhat.com -> patchew/20170502155452.7033-1-berrange@redhat.com
 * [new tag]         patchew/20170502162955.1610-1-lvivier@redhat.com -> patchew/20170502162955.1610-1-lvivier@redhat.com
 * [new tag]         patchew/20170502192300.2124-1-rth@twiddle.net -> patchew/20170502192300.2124-1-rth@twiddle.net
 * [new tag]         patchew/20170502203115.22233-1-ehabkost@redhat.com -> patchew/20170502203115.22233-1-ehabkost@redhat.com
 * [new tag]         patchew/201705030257.v432vMO2008047@linux03a.ddci.com -> patchew/201705030257.v432vMO2008047@linux03a.ddci.com
 * [new tag]         patchew/20170503072819.14462-1-famz@redhat.com -> patchew/20170503072819.14462-1-famz@redhat.com
 * [new tag]         patchew/20170503094351.5040-1-pbonzini@redhat.com -> patchew/20170503094351.5040-1-pbonzini@redhat.com
 * [new tag]         patchew/20170503103023.9247-1-pbonzini@redhat.com -> patchew/20170503103023.9247-1-pbonzini@redhat.com
 * [new tag]         patchew/20170503104257.5127-1-dgilbert@redhat.com -> patchew/20170503104257.5127-1-dgilbert@redhat.com
 * [new tag]         patchew/20170503104441.1349-1-pbonzini@redhat.com -> patchew/20170503104441.1349-1-pbonzini@redhat.com
 * [new tag]         patchew/20170503113304.8704.13997.stgit@PASHA-ISP -> patchew/20170503113304.8704.13997.stgit@PASHA-ISP
 * [new tag]         patchew/20170503115909.4490-1-pbonzini@redhat.com -> patchew/20170503115909.4490-1-pbonzini@redhat.com
 * [new tag]         patchew/20170503122539.282182-1-vsementsov@virtuozzo.com -> patchew/20170503122539.282182-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170503165412.27766-1-marcandre.lureau@redhat.com -> patchew/20170503165412.27766-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170503203604.31462-1-ehabkost@redhat.com -> patchew/20170503203604.31462-1-ehabkost@redhat.com
 * [new tag]         patchew/20170503213659.11828.39423.stgit@gimli.home -> patchew/20170503213659.11828.39423.stgit@gimli.home
 * [new tag]         patchew/20170503223846.6559-1-marcandre.lureau@redhat.com -> patchew/20170503223846.6559-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170504055040.31904-1-kraxel@redhat.com -> patchew/20170504055040.31904-1-kraxel@redhat.com
 * [new tag]         patchew/20170504071811.3547-1-kraxel@redhat.com -> patchew/20170504071811.3547-1-kraxel@redhat.com
 * [new tag]         patchew/20170504084135.7488.24715.stgit@PASHA-ISP -> patchew/20170504084135.7488.24715.stgit@PASHA-ISP
 * [new tag]         patchew/20170504094053.2329-1-quintela@redhat.com -> patchew/20170504094053.2329-1-quintela@redhat.com
 * [new tag]         patchew/20170504104806.8120-1-cornelia.huck@de.ibm.com -> patchew/20170504104806.8120-1-cornelia.huck@de.ibm.com
 * [new tag]         patchew/20170504105444.8940-1-daniel.kucera@gmail.com -> patchew/20170504105444.8940-1-daniel.kucera@gmail.com
 * [new tag]         patchew/20170504114232.20318-1-marcandre.lureau@redhat.com -> patchew/20170504114232.20318-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170504115948.3048-1-xiaoguangrong@tencent.com -> patchew/20170504115948.3048-1-xiaoguangrong@tencent.com
 * [new tag]         patchew/20170504125432.21653-1-marcandre.lureau@redhat.com -> patchew/20170504125432.21653-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170504145658.5506-1-berrange@redhat.com -> patchew/20170504145658.5506-1-berrange@redhat.com
 * [new tag]         patchew/20170504173745.27414-1-eblake@redhat.com -> patchew/20170504173745.27414-1-eblake@redhat.com
 * [new tag]         patchew/20170504193044.16303-1-jsnow@redhat.com -> patchew/20170504193044.16303-1-jsnow@redhat.com
 * [new tag]         patchew/20170505020430.2305-1-famz@redhat.com -> patchew/20170505020430.2305-1-famz@redhat.com
 * [new tag]         patchew/20170505021500.19315-1-eblake@redhat.com -> patchew/20170505021500.19315-1-eblake@redhat.com
 * [new tag]         patchew/20170505032340.26467-1-famz@redhat.com -> patchew/20170505032340.26467-1-famz@redhat.com
 * [new tag]         patchew/20170505075918.4033-1-philippevoinov@gmail.com -> patchew/20170505075918.4033-1-philippevoinov@gmail.com
 * [new tag]         patchew/20170505090044.28754-1-hch@lst.de -> patchew/20170505090044.28754-1-hch@lst.de
 * [new tag]         patchew/20170505095807.3296-1-hch@lst.de -> patchew/20170505095807.3296-1-hch@lst.de
 * [new tag]         patchew/20170505100255.11145-1-stefanha@redhat.com -> patchew/20170505100255.11145-1-stefanha@redhat.com
 * [new tag]         patchew/20170505101337.4650-1-pbonzini@redhat.com -> patchew/20170505101337.4650-1-pbonzini@redhat.com
 * [new tag]         patchew/20170505101930.45837-1-aik@ozlabs.ru -> patchew/20170505101930.45837-1-aik@ozlabs.ru
 * [new tag]         patchew/20170505102153.758-1-famz@redhat.com -> patchew/20170505102153.758-1-famz@redhat.com
 * [new tag]         patchew/20170505103822.20641-1-alex.bennee@linaro.org -> patchew/20170505103822.20641-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170505104101.30589-1-kraxel@redhat.com -> patchew/20170505104101.30589-1-kraxel@redhat.com
 * [new tag]         patchew/20170505122019.23144-1-philippevoinov@gmail.com -> patchew/20170505122019.23144-1-philippevoinov@gmail.com
 * [new tag]         patchew/20170505125718.18337-1-julien@gns3.net -> patchew/20170505125718.18337-1-julien@gns3.net
 * [new tag]         patchew/20170505133952.29885-1-philippevoinov@gmail.com -> patchew/20170505133952.29885-1-philippevoinov@gmail.com
 * [new tag]         patchew/20170505134231.30210-1-philippevoinov@gmail.com -> patchew/20170505134231.30210-1-philippevoinov@gmail.com
 * [new tag]         patchew/20170505134632.19080-1-julien@gns3.net -> patchew/20170505134632.19080-1-julien@gns3.net
 * [new tag]         patchew/20170505142743.19849-1-berrange@redhat.com -> patchew/20170505142743.19849-1-berrange@redhat.com
 * [new tag]         patchew/20170505162305.15763-1-berrange@redhat.com -> patchew/20170505162305.15763-1-berrange@redhat.com
 * [new tag]         patchew/20170505173507.74077-1-pasic@linux.vnet.ibm.com -> patchew/20170505173507.74077-1-pasic@linux.vnet.ibm.com
 * [new tag]         patchew/20170505193810.2934-1-eblake@redhat.com -> patchew/20170505193810.2934-1-eblake@redhat.com
 * [new tag]         patchew/20170505201128.12099-1-ehabkost@redhat.com -> patchew/20170505201128.12099-1-ehabkost@redhat.com
 * [new tag]         patchew/20170505204746.14116-1-danielhb@linux.vnet.ibm.com -> patchew/20170505204746.14116-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170505224833.17769-1-laurent@vivier.eu -> patchew/20170505224833.17769-1-laurent@vivier.eu
 * [new tag]         patchew/20170506004106.3291-1-f4bug@amsat.org -> patchew/20170506004106.3291-1-f4bug@amsat.org
 * [new tag]         patchew/20170506110333.11000-1-aurelien@aurel32.net -> patchew/20170506110333.11000-1-aurelien@aurel32.net
 * [new tag]         patchew/20170506111431.12548-1-aurelien@aurel32.net -> patchew/20170506111431.12548-1-aurelien@aurel32.net
 * [new tag]         patchew/20170506152414.8704-1-krzk@kernel.org -> patchew/20170506152414.8704-1-krzk@kernel.org
 * [new tag]         patchew/20170507113540.8687-1-krzk@kernel.org -> patchew/20170507113540.8687-1-krzk@kernel.org
 * [new tag]         patchew/20170507181940.25882-1-krzk@kernel.org -> patchew/20170507181940.25882-1-krzk@kernel.org
 * [new tag]         patchew/20170508045715.21770-1-f4bug@amsat.org -> patchew/20170508045715.21770-1-f4bug@amsat.org
 * [new tag]         patchew/20170508073529.23449-1-pbonzini@redhat.com -> patchew/20170508073529.23449-1-pbonzini@redhat.com
 * [new tag]         patchew/20170508133908.12196-1-stefanha@redhat.com -> patchew/20170508133908.12196-1-stefanha@redhat.com
 * [new tag]         patchew/20170508141310.8674-1-pbonzini@redhat.com -> patchew/20170508141310.8674-1-pbonzini@redhat.com
 * [new tag]         patchew/20170508141536.20690-1-stefanha@redhat.com -> patchew/20170508141536.20690-1-stefanha@redhat.com
 * [new tag]         patchew/20170508151707.5434-1-rth@twiddle.net -> patchew/20170508151707.5434-1-rth@twiddle.net
 * [new tag]         patchew/20170508171302.17805-1-eblake@redhat.com -> patchew/20170508171302.17805-1-eblake@redhat.com
 * [new tag]         patchew/20170508180705.20609-1-stefanha@redhat.com -> patchew/20170508180705.20609-1-stefanha@redhat.com
 * [new tag]         patchew/20170508183205.10884-1-ehabkost@redhat.com -> patchew/20170508183205.10884-1-ehabkost@redhat.com
 * [new tag]         patchew/20170508200812.25296-1-ehabkost@redhat.com -> patchew/20170508200812.25296-1-ehabkost@redhat.com
 * [new tag]         patchew/20170508201628.32502-1-ehabkost@redhat.com -> patchew/20170508201628.32502-1-ehabkost@redhat.com
 * [new tag]         patchew/20170508205735.23444-1-ehabkost@redhat.com -> patchew/20170508205735.23444-1-ehabkost@redhat.com
 * [new tag]         patchew/20170508211953.28017-1-eblake@redhat.com -> patchew/20170508211953.28017-1-eblake@redhat.com
 * [new tag]         patchew/20170508221759.15616-1-f4bug@amsat.org -> patchew/20170508221759.15616-1-f4bug@amsat.org
 * [new tag]         patchew/20170509034519.16291-1-david@gibson.dropbear.id.au -> patchew/20170509034519.16291-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170509050458.23237-1-david@gibson.dropbear.id.au -> patchew/20170509050458.23237-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170509093549.25157-1-pbonzini@redhat.com -> patchew/20170509093549.25157-1-pbonzini@redhat.com
 * [new tag]         patchew/20170509094837.22852-1-berrange@redhat.com -> patchew/20170509094837.22852-1-berrange@redhat.com
 * [new tag]         patchew/20170509104839.19415-1-kraxel@redhat.com -> patchew/20170509104839.19415-1-kraxel@redhat.com
 * [new tag]         patchew/20170509110128.27261-1-kraxel@redhat.com -> patchew/20170509110128.27261-1-kraxel@redhat.com
 * [new tag]         patchew/20170509111928.30935-1-kraxel@redhat.com -> patchew/20170509111928.30935-1-kraxel@redhat.com
 * [new tag]         patchew/20170509112034.23351-1-berrange@redhat.com -> patchew/20170509112034.23351-1-berrange@redhat.com
 * [new tag]         patchew/20170509113332.4987-1-marcandre.lureau@redhat.com -> patchew/20170509113332.4987-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170509132736.10071-1-berrange@redhat.com -> patchew/20170509132736.10071-1-berrange@redhat.com
 * [new tag]         patchew/20170509134623.13120-1-berrange@redhat.com -> patchew/20170509134623.13120-1-berrange@redhat.com
 * [new tag]         patchew/20170509173342.29286-1-berrange@redhat.com -> patchew/20170509173342.29286-1-berrange@redhat.com
 * [new tag]         patchew/20170509173559.31598-1-marcandre.lureau@redhat.com -> patchew/20170509173559.31598-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170509180715.22910-1-rth@twiddle.net -> patchew/20170509180715.22910-1-rth@twiddle.net
 * [new tag]         patchew/20170509180946.17046-1-jsnow@redhat.com -> patchew/20170509180946.17046-1-jsnow@redhat.com
 * [new tag]         patchew/20170509193112.16613-1-laurent@vivier.eu -> patchew/20170509193112.16613-1-laurent@vivier.eu
 * [new tag]         patchew/20170510070115.13063-1-david@gibson.dropbear.id.au -> patchew/20170510070115.13063-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170510083259.3900-1-xiaoguangrong@tencent.com -> patchew/20170510083259.3900-1-xiaoguangrong@tencent.com
 * [new tag]         patchew/20170510092333.8890-1-famz@redhat.com -> patchew/20170510092333.8890-1-famz@redhat.com
 * [new tag]         patchew/20170510092903.23649-1-marcel@redhat.com -> patchew/20170510092903.23649-1-marcel@redhat.com
 * [new tag]         patchew/20170510111350.18422-1-ppandit@redhat.com -> patchew/20170510111350.18422-1-ppandit@redhat.com
 * [new tag]         patchew/20170510111535.11190-1-berrange@redhat.com -> patchew/20170510111535.11190-1-berrange@redhat.com
 * [new tag]         patchew/20170510114240.4302-1-quintela@redhat.com -> patchew/20170510114240.4302-1-quintela@redhat.com
 * [new tag]         patchew/20170510132906.23481-1-dgilbert@redhat.com -> patchew/20170510132906.23481-1-dgilbert@redhat.com
 * [new tag]         patchew/20170510143205.32013-1-pbonzini@redhat.com -> patchew/20170510143205.32013-1-pbonzini@redhat.com
 * [new tag]         patchew/20170510153950.29343-1-laurent@vivier.eu -> patchew/20170510153950.29343-1-laurent@vivier.eu
 * [new tag]         patchew/20170510173945.11819-1-jsnow@redhat.com -> patchew/20170510173945.11819-1-jsnow@redhat.com
 * [new tag]         patchew/20170510182636.17791-1-aurelien@aurel32.net -> patchew/20170510182636.17791-1-aurelien@aurel32.net
 * [new tag]         patchew/20170510200535.13268-1-f4bug@amsat.org -> patchew/20170510200535.13268-1-f4bug@amsat.org
 * [new tag]         patchew/20170510202006.31737-1-jjongsma@redhat.com -> patchew/20170510202006.31737-1-jjongsma@redhat.com
 * [new tag]         patchew/20170510235204.9657-1-f4bug@amsat.org -> patchew/20170510235204.9657-1-f4bug@amsat.org
 * [new tag]         patchew/20170511041426.6488-1-david@gibson.dropbear.id.au -> patchew/20170511041426.6488-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170511102529.21618-1-marcel@redhat.com -> patchew/20170511102529.21618-1-marcel@redhat.com
 * [new tag]         patchew/20170511113542.16682-1-anthony.perard@citrix.com -> patchew/20170511113542.16682-1-anthony.perard@citrix.com
 * [new tag]         patchew/20170511123246.31308-1-maxime.coquelin@redhat.com -> patchew/20170511123246.31308-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170511125314.24549-1-lprosek@redhat.com -> patchew/20170511125314.24549-1-lprosek@redhat.com
 * [new tag]         patchew/20170511143901.6340-1-quintela@redhat.com -> patchew/20170511143901.6340-1-quintela@redhat.com
 * [new tag]         patchew/20170511144208.24075-1-pbonzini@redhat.com -> patchew/20170511144208.24075-1-pbonzini@redhat.com
 * [new tag]         patchew/20170511144339.13027-1-kraxel@redhat.com -> patchew/20170511144339.13027-1-kraxel@redhat.com
 * [new tag]         patchew/20170511150337.21470-1-berto@igalia.com -> patchew/20170511150337.21470-1-berto@igalia.com
 * [new tag]         patchew/20170511151126.20323-1-jsnow@redhat.com -> patchew/20170511151126.20323-1-jsnow@redhat.com
 * [new tag]         patchew/20170511153440.6475-1-quintela@redhat.com -> patchew/20170511153440.6475-1-quintela@redhat.com
 * [new tag]         patchew/20170511182705.23648-1-jsnow@redhat.com -> patchew/20170511182705.23648-1-jsnow@redhat.com
 * [new tag]         patchew/20170511191843.13784-1-ehabkost@redhat.com -> patchew/20170511191843.13784-1-ehabkost@redhat.com
 * [new tag]         patchew/20170512033543.6789-1-f4bug@amsat.org -> patchew/20170512033543.6789-1-f4bug@amsat.org
 * [new tag]         patchew/20170512050451.9979-1-david@gibson.dropbear.id.au -> patchew/20170512050451.9979-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170512083556.22539-1-maozy.fnst@cn.fujitsu.com -> patchew/20170512083556.22539-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170512102057.5855-1-hare@suse.de -> patchew/20170512102057.5855-1-hare@suse.de
 * [new tag]         patchew/20170512102100.22675-1-lprosek@redhat.com -> patchew/20170512102100.22675-1-lprosek@redhat.com
 * [new tag]         patchew/20170512115135.17379-1-kraxel@redhat.com -> patchew/20170512115135.17379-1-kraxel@redhat.com
 * [new tag]         patchew/20170512122158.32032-1-kraxel@redhat.com -> patchew/20170512122158.32032-1-kraxel@redhat.com
 * [new tag]         patchew/20170512141702.12423-1-vsementsov@virtuozzo.com -> patchew/20170512141702.12423-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170512143717.30391-1-stefanha@redhat.com -> patchew/20170512143717.30391-1-stefanha@redhat.com
 * [new tag]         patchew/20170512143812.31067-1-stefanha@redhat.com -> patchew/20170512143812.31067-1-stefanha@redhat.com
 * [new tag]         patchew/20170512155249.8853-1-quintela@redhat.com -> patchew/20170512155249.8853-1-quintela@redhat.com
 * [new tag]         patchew/20170512193015.22155-1-eblake@redhat.com -> patchew/20170512193015.22155-1-eblake@redhat.com
 * [new tag]         patchew/20170512233843.27713-1-f4bug@amsat.org -> patchew/20170512233843.27713-1-f4bug@amsat.org
 * [new tag]         patchew/20170512234009.32557-1-rth@twiddle.net -> patchew/20170512234009.32557-1-rth@twiddle.net
 * [new tag]         patchew/20170513002906.31201-1-f4bug@amsat.org -> patchew/20170513002906.31201-1-f4bug@amsat.org
 * [new tag]         patchew/20170513004616.25749-1-n54@gmx.com -> patchew/20170513004616.25749-1-n54@gmx.com
 * [new tag]         patchew/20170513015449.24061-1-n54@gmx.com -> patchew/20170513015449.24061-1-n54@gmx.com
 * [new tag]         patchew/20170513022143.2838-1-n54@gmx.com -> patchew/20170513022143.2838-1-n54@gmx.com
 * [new tag]         patchew/20170513033316.22395-1-ehabkost@redhat.com -> patchew/20170513033316.22395-1-ehabkost@redhat.com
 * [new tag]         patchew/20170513093248.18230-1-aurelien@aurel32.net -> patchew/20170513093248.18230-1-aurelien@aurel32.net
 * [new tag]         patchew/20170513155816.17294-1-bobby.prani@gmail.com -> patchew/20170513155816.17294-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170514051820.15985-1-n54@gmx.com -> patchew/20170514051820.15985-1-n54@gmx.com
 * [new tag]         patchew/20170515083509.24607-1-nikunj@linux.vnet.ibm.com -> patchew/20170515083509.24607-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170515093424.28954-1-berto@igalia.com -> patchew/20170515093424.28954-1-berto@igalia.com
 * [new tag]         patchew/20170515100059.15795-1-pbonzini@redhat.com -> patchew/20170515100059.15795-1-pbonzini@redhat.com
 * [new tag]         patchew/20170515103551.31313-1-famz@redhat.com -> patchew/20170515103551.31313-1-famz@redhat.com
 * [new tag]         patchew/20170515104543.32044-1-kraxel@redhat.com -> patchew/20170515104543.32044-1-kraxel@redhat.com
 * [new tag]         patchew/20170515130650.22764-2-danielhb@linux.vnet.ibm.com -> patchew/20170515130650.22764-2-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170515131052.23457-2-danielhb@linux.vnet.ibm.com -> patchew/20170515131052.23457-2-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170515134753.28412-1-stefanha@redhat.com -> patchew/20170515134753.28412-1-stefanha@redhat.com
 * [new tag]         patchew/20170515140529.23264-1-dgilbert@redhat.com -> patchew/20170515140529.23264-1-dgilbert@redhat.com
 * [new tag]         patchew/20170515141014.25793-1-famz@redhat.com -> patchew/20170515141014.25793-1-famz@redhat.com
 * [new tag]         patchew/20170515191136.24314-1-ndevos@redhat.com -> patchew/20170515191136.24314-1-ndevos@redhat.com
 * [new tag]         patchew/20170515194149.16288-1-eblake@redhat.com -> patchew/20170515194149.16288-1-eblake@redhat.com
 * [new tag]         patchew/20170515195439.17677-1-eblake@redhat.com -> patchew/20170515195439.17677-1-eblake@redhat.com
 * [new tag]         patchew/20170515214114.15442-1-eblake@redhat.com -> patchew/20170515214114.15442-1-eblake@redhat.com
 * [new tag]         patchew/20170516001150.11508-1-f4bug@amsat.org -> patchew/20170516001150.11508-1-f4bug@amsat.org
 * [new tag]         patchew/20170516001150.11508-2-f4bug@amsat.org -> patchew/20170516001150.11508-2-f4bug@amsat.org
 * [new tag]         patchew/20170516052439.16214-1-kraxel@redhat.com -> patchew/20170516052439.16214-1-kraxel@redhat.com
 * [new tag]         patchew/20170516072414.19025-1-famz@redhat.com -> patchew/20170516072414.19025-1-famz@redhat.com
 * [new tag]         patchew/20170516074256.24731-1-kraxel@redhat.com -> patchew/20170516074256.24731-1-kraxel@redhat.com
 * [new tag]         patchew/20170516094533.6160-1-vsementsov@virtuozzo.com -> patchew/20170516094533.6160-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170516111123.17692-1-quintela@redhat.com -> patchew/20170516111123.17692-1-quintela@redhat.com
 * [new tag]         patchew/20170516155420.10106-1-jcody@redhat.com -> patchew/20170516155420.10106-1-jcody@redhat.com
 * [new tag]         patchew/20170516205351.12101-1-ehabkost@redhat.com -> patchew/20170516205351.12101-1-ehabkost@redhat.com
 * [new tag]         patchew/20170516224721.13832-1-aurelien@aurel32.net -> patchew/20170516224721.13832-1-aurelien@aurel32.net
 * [new tag]         patchew/20170516230159.4195-1-aurelien@aurel32.net -> patchew/20170516230159.4195-1-aurelien@aurel32.net
 * [new tag]         patchew/20170517004813.58227-1-bjsdjshi@linux.vnet.ibm.com -> patchew/20170517004813.58227-1-bjsdjshi@linux.vnet.ibm.com
 * [new tag]         patchew/20170517063547.23876-1-david@gibson.dropbear.id.au -> patchew/20170517063547.23876-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170517081332.25811-1-kraxel@redhat.com -> patchew/20170517081332.25811-1-kraxel@redhat.com
 * [new tag]         patchew/20170517111346.21450-1-quintela@redhat.com -> patchew/20170517111346.21450-1-quintela@redhat.com
 * [new tag]         patchew/20170517122744.3541-1-kraxel@redhat.com -> patchew/20170517122744.3541-1-kraxel@redhat.com
 * [new tag]         patchew/20170517124042.1430-1-stefanha@redhat.com -> patchew/20170517124042.1430-1-stefanha@redhat.com
 * [new tag]         patchew/20170517134003.17110-1-ehabkost@redhat.com -> patchew/20170517134003.17110-1-ehabkost@redhat.com
 * [new tag]         patchew/20170517145259.28979-1-alex.bennee@linaro.org -> patchew/20170517145259.28979-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170517165810.18164-1-dgilbert@redhat.com -> patchew/20170517165810.18164-1-dgilbert@redhat.com
 * [new tag]         patchew/20170517170941.25850-1-stefanha@redhat.com -> patchew/20170517170941.25850-1-stefanha@redhat.com
 * [new tag]         patchew/20170517180754.20456-1-dgilbert@redhat.com -> patchew/20170517180754.20456-1-dgilbert@redhat.com
 * [new tag]         patchew/20170517212547.4767-1-ehabkost@redhat.com -> patchew/20170517212547.4767-1-ehabkost@redhat.com
 * [new tag]         patchew/20170518054522.13141-1-david@gibson.dropbear.id.au -> patchew/20170518054522.13141-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170518095422.12555-1-ndevos@redhat.com -> patchew/20170518095422.12555-1-ndevos@redhat.com
 * [new tag]         patchew/20170518100925.28682-1-vsementsov@virtuozzo.com -> patchew/20170518100925.28682-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170518102808.30046-1-famz@redhat.com -> patchew/20170518102808.30046-1-famz@redhat.com
 * [new tag]         patchew/20170518103334.8808-1-pbonzini@redhat.com -> patchew/20170518103334.8808-1-pbonzini@redhat.com
 * [new tag]         patchew/20170518103642.27796-1-quintela@redhat.com -> patchew/20170518103642.27796-1-quintela@redhat.com
 * [new tag]         patchew/20170518111837.29212-1-quintela@redhat.com -> patchew/20170518111837.29212-1-quintela@redhat.com
 * [new tag]         patchew/20170518172543.32694-1-quintela@redhat.com -> patchew/20170518172543.32694-1-quintela@redhat.com
 * [new tag]         patchew/20170518202402.12571-1-danielhb@linux.vnet.ibm.com -> patchew/20170518202402.12571-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170518203548.14207-1-danielhb@linux.vnet.ibm.com -> patchew/20170518203548.14207-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170518215416.5613-1-danielhb@linux.vnet.ibm.com -> patchew/20170518215416.5613-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170519023233.24461-1-eblake@redhat.com -> patchew/20170519023233.24461-1-eblake@redhat.com
 * [new tag]         patchew/20170519084830.2674-1-kraxel@redhat.com -> patchew/20170519084830.2674-1-kraxel@redhat.com
 * [new tag]         patchew/20170519091642.25309-1-pbonzini@redhat.com -> patchew/20170519091642.25309-1-pbonzini@redhat.com
 * [new tag]         patchew/20170519103247.4405-1-stefanha@redhat.com -> patchew/20170519103247.4405-1-stefanha@redhat.com
 * [new tag]         patchew/20170519112415.19191-1-kraxel@redhat.com -> patchew/20170519112415.19191-1-kraxel@redhat.com
 * [new tag]         patchew/20170519120428.25981-1-kraxel@redhat.com -> patchew/20170519120428.25981-1-kraxel@redhat.com
 * [new tag]         patchew/20170519142750.18437-1-danielhb@linux.vnet.ibm.com -> patchew/20170519142750.18437-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170519180342.19618-1-berrange@redhat.com -> patchew/20170519180342.19618-1-berrange@redhat.com
 * [new tag]         patchew/20170520002653.20213-1-andrew@aj.id.au -> patchew/20170520002653.20213-1-andrew@aj.id.au
 * [new tag]         patchew/20170520020914.14562-1-ehabkost@redhat.com -> patchew/20170520020914.14562-1-ehabkost@redhat.com
 * [new tag]         patchew/20170520080658.337-1-maxime.coquelin@redhat.com -> patchew/20170520080658.337-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170521152949.15338-1-krzk@kernel.org -> patchew/20170521152949.15338-1-krzk@kernel.org
 * [new tag]         patchew/20170522123325.2199-1-lprosek@redhat.com -> patchew/20170522123325.2199-1-lprosek@redhat.com
 * [new tag]         patchew/20170522135704.842-1-stefanha@redhat.com -> patchew/20170522135704.842-1-stefanha@redhat.com
 * [new tag]         patchew/20170522180735.26677-1-mreitz@redhat.com -> patchew/20170522180735.26677-1-mreitz@redhat.com
 * [new tag]         patchew/20170522193551.826-1-danielhb@linux.vnet.ibm.com -> patchew/20170522193551.826-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170522195217.12991-1-mreitz@redhat.com -> patchew/20170522195217.12991-1-mreitz@redhat.com
 * [new tag]         patchew/20170522211205.14265-1-hpoussin@reactos.org -> patchew/20170522211205.14265-1-hpoussin@reactos.org
 * [new tag]         patchew/20170522213636.11550-1-eblake@redhat.com -> patchew/20170522213636.11550-1-eblake@redhat.com
 * [new tag]         patchew/20170523063645.1247-1-david@gibson.dropbear.id.au -> patchew/20170523063645.1247-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170523084635.20062-1-kraxel@redhat.com -> patchew/20170523084635.20062-1-kraxel@redhat.com
 * [new tag]         patchew/20170523104454.31309-1-ehabkost@redhat.com -> patchew/20170523104454.31309-1-ehabkost@redhat.com
 * [new tag]         patchew/20170523111812.13469-1-lvivier@redhat.com -> patchew/20170523111812.13469-1-lvivier@redhat.com
 * [new tag]         patchew/20170523123119.7414-1-maxime.coquelin@redhat.com -> patchew/20170523123119.7414-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170523174420.8903-1-eblake@redhat.com -> patchew/20170523174420.8903-1-eblake@redhat.com
 * [new tag]         patchew/20170524005206.31916-1-famz@redhat.com -> patchew/20170524005206.31916-1-famz@redhat.com
 * [new tag]         patchew/20170524025235.32190-1-famz@redhat.com -> patchew/20170524025235.32190-1-famz@redhat.com
 * [new tag]         patchew/20170524025718.2287-1-maozy.fnst@cn.fujitsu.com -> patchew/20170524025718.2287-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170524073719.22531-1-quintela@redhat.com -> patchew/20170524073719.22531-1-quintela@redhat.com
 * [new tag]         patchew/20170524080914.23484-1-lprosek@redhat.com -> patchew/20170524080914.23484-1-lprosek@redhat.com
 * [new tag]         patchew/20170524083446.32261-1-maxime.coquelin@redhat.com -> patchew/20170524083446.32261-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170524085519.22856-1-quintela@redhat.com -> patchew/20170524085519.22856-1-quintela@redhat.com
 * [new tag]         patchew/20170524090520.321-1-maxime.coquelin@redhat.com -> patchew/20170524090520.321-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170524091315.20284-1-drjones@redhat.com -> patchew/20170524091315.20284-1-drjones@redhat.com
 * [new tag]         patchew/20170524112152.23226-1-quintela@redhat.com -> patchew/20170524112152.23226-1-quintela@redhat.com
 * [new tag]         patchew/20170524121048.10067-1-lvivier@redhat.com -> patchew/20170524121048.10067-1-lvivier@redhat.com
 * [new tag]         patchew/20170524154205.1914-1-berrange@redhat.com -> patchew/20170524154205.1914-1-berrange@redhat.com
 * [new tag]         patchew/20170524161812.5886-1-berrange@redhat.com -> patchew/20170524161812.5886-1-berrange@redhat.com
 * [new tag]         patchew/20170524202842.26724-1-eblake@redhat.com -> patchew/20170524202842.26724-1-eblake@redhat.com
 * [new tag]         patchew/20170525035132.24268-1-david@gibson.dropbear.id.au -> patchew/20170525035132.24268-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170525070747.29890-1-lprosek@redhat.com -> patchew/20170525070747.29890-1-lprosek@redhat.com
 * [new tag]         patchew/20170525101900.15950-1-berrange@redhat.com -> patchew/20170525101900.15950-1-berrange@redhat.com
 * [new tag]         patchew/20170525133451.22459-1-zxq_yx_007@163.com -> patchew/20170525133451.22459-1-zxq_yx_007@163.com
 * [new tag]         patchew/20170525152628.37628-1-vsementsov@virtuozzo.com -> patchew/20170525152628.37628-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170525155300.22743-1-berrange@redhat.com -> patchew/20170525155300.22743-1-berrange@redhat.com
 * [new tag]         patchew/20170525163225.29954-1-pbonzini@redhat.com -> patchew/20170525163225.29954-1-pbonzini@redhat.com
 * [new tag]         patchew/20170525163851.8047-1-berrange@redhat.com -> patchew/20170525163851.8047-1-berrange@redhat.com
 * [new tag]         patchew/20170526014614.19840-1-maozy.fnst@cn.fujitsu.com -> patchew/20170526014614.19840-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170526052319.28096-1-david@gibson.dropbear.id.au -> patchew/20170526052319.28096-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170526054013.299-1-n54@gmx.com -> patchew/20170526054013.299-1-n54@gmx.com
 * [new tag]         patchew/20170526075246.20265-1-famz@redhat.com -> patchew/20170526075246.20265-1-famz@redhat.com
 * [new tag]         patchew/20170526082925.2888-1-maozy.fnst@cn.fujitsu.com -> patchew/20170526082925.2888-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170526093641.7159-1-pbonzini@redhat.com -> patchew/20170526093641.7159-1-pbonzini@redhat.com
 * [new tag]         patchew/20170526101337.4096-1-marcandre.lureau@redhat.com -> patchew/20170526101337.4096-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170526110456.32004-1-marcandre.lureau@redhat.com -> patchew/20170526110456.32004-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170526121516.6607-1-maozy.fnst@cn.fujitsu.com -> patchew/20170526121516.6607-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170526142858.19931-1-maxime.coquelin@redhat.com -> patchew/20170526142858.19931-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170526181200.17227-1-ehabkost@redhat.com -> patchew/20170526181200.17227-1-ehabkost@redhat.com
 * [new tag]         patchew/20170526192404.32186-1-jcody@redhat.com -> patchew/20170526192404.32186-1-jcody@redhat.com
 * [new tag]         patchew/20170526202316.22736-1-ehabkost@redhat.com -> patchew/20170526202316.22736-1-ehabkost@redhat.com
 * [new tag]         patchew/20170526233816.47627-1-ianloic@google.com -> patchew/20170526233816.47627-1-ianloic@google.com
 * [new tag]         patchew/20170527030421.28366-1-eblake@redhat.com -> patchew/20170527030421.28366-1-eblake@redhat.com
 * [new tag]         patchew/20170527161755.7761-1-f4bug@amsat.org -> patchew/20170527161755.7761-1-f4bug@amsat.org
 * [new tag]         patchew/20170527214618.32626-1-samuel.thibault@ens-lyon.org -> patchew/20170527214618.32626-1-samuel.thibault@ens-lyon.org
 * [new tag]         patchew/20170528063114.28691-1-ndevos@redhat.com -> patchew/20170528063114.28691-1-ndevos@redhat.com
 * [new tag]         patchew/20170528130649.28168-1-dan@kernelim.com -> patchew/20170528130649.28168-1-dan@kernelim.com
 * [new tag]         patchew/20170529084546.26500-1-marcandre.lureau@redhat.com -> patchew/20170529084546.26500-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170529121228.2789-1-david@redhat.com -> patchew/20170529121228.2789-1-david@redhat.com
 * [new tag]         patchew/20170529130956.20297-1-kraxel@redhat.com -> patchew/20170529130956.20297-1-kraxel@redhat.com
 * [new tag]         patchew/20170529135520.101429-1-pasic@linux.vnet.ibm.com -> patchew/20170529135520.101429-1-pasic@linux.vnet.ibm.com
 * [new tag]         patchew/20170529151047.85390-1-ben@skyportsystems.com -> patchew/20170529151047.85390-1-ben@skyportsystems.com
 * [new tag]         patchew/20170529152316.27647-1-mreitz@redhat.com -> patchew/20170529152316.27647-1-mreitz@redhat.com
 * [new tag]         patchew/20170529173751.3443-1-drjones@redhat.com -> patchew/20170529173751.3443-1-drjones@redhat.com
 * [new tag]         patchew/20170530062022.5841-1-n54@gmx.com -> patchew/20170530062022.5841-1-n54@gmx.com
 * [new tag]         patchew/20170530081723.29205-1-vsementsov@virtuozzo.com -> patchew/20170530081723.29205-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170530083705.15141-1-quintela@redhat.com -> patchew/20170530083705.15141-1-quintela@redhat.com
 * [new tag]         patchew/20170530085943.18141-1-lprosek@redhat.com -> patchew/20170530085943.18141-1-lprosek@redhat.com
 * [new tag]         patchew/20170530103641.68891-1-vsementsov@virtuozzo.com -> patchew/20170530103641.68891-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170530104857.70083-1-vsementsov@virtuozzo.com -> patchew/20170530104857.70083-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170530120919.8874-1-f4bug@amsat.org -> patchew/20170530120919.8874-1-f4bug@amsat.org
 * [new tag]         patchew/20170530160445.12810-1-lvivier@redhat.com -> patchew/20170530160445.12810-1-lvivier@redhat.com
 * [new tag]         patchew/20170530184013.31044-1-ehabkost@redhat.com -> patchew/20170530184013.31044-1-ehabkost@redhat.com
 * [new tag]         patchew/20170530191121.1920-1-ehabkost@redhat.com -> patchew/20170530191121.1920-1-ehabkost@redhat.com
 * [new tag]         patchew/20170530191553.31500-1-aurelien@aurel32.net -> patchew/20170530191553.31500-1-aurelien@aurel32.net
 * [new tag]         patchew/20170530212614.18343-1-lersek@redhat.com -> patchew/20170530212614.18343-1-lersek@redhat.com
 * [new tag]         patchew/20170531061150.15755-1-sjitindarsingh@gmail.com -> patchew/20170531061150.15755-1-sjitindarsingh@gmail.com
 * [new tag]         patchew/20170531070438.14081-1-maozy.fnst@cn.fujitsu.com -> patchew/20170531070438.14081-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170531075814.4851-1-slyfox@gentoo.org -> patchew/20170531075814.4851-1-slyfox@gentoo.org
 * [new tag]         patchew/20170531091538.21626-1-quintela@redhat.com -> patchew/20170531091538.21626-1-quintela@redhat.com
 * [new tag]         patchew/20170531091720.21697-1-quintela@redhat.com -> patchew/20170531091720.21697-1-quintela@redhat.com
 * [new tag]         patchew/20170531092516.5112-1-lvivier@redhat.com -> patchew/20170531092516.5112-1-lvivier@redhat.com
 * [new tag]         patchew/20170531103509.22021-1-quintela@redhat.com -> patchew/20170531103509.22021-1-quintela@redhat.com
 * [new tag]         patchew/20170531120049.14111-1-n54@gmx.com -> patchew/20170531120049.14111-1-n54@gmx.com
 * [new tag]         patchew/20170531124418.15752-1-pbonzini@redhat.com -> patchew/20170531124418.15752-1-pbonzini@redhat.com
 * [new tag]         patchew/20170531125746.17585-1-pbonzini@redhat.com -> patchew/20170531125746.17585-1-pbonzini@redhat.com
 * [new tag]         patchew/20170531135709.345-1-marcandre.lureau@redhat.com -> patchew/20170531135709.345-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170531144331.30173-1-pbutsykin@virtuozzo.com -> patchew/20170531144331.30173-1-pbutsykin@virtuozzo.com
 * [new tag]         patchew/20170531150933.10156-1-alex.bennee@linaro.org -> patchew/20170531150933.10156-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170531192836.7187-1-jsnow@redhat.com -> patchew/20170531192836.7187-1-jsnow@redhat.com
 * [new tag]         patchew/20170531193434.6918-1-david@redhat.com -> patchew/20170531193434.6918-1-david@redhat.com
 * [new tag]         patchew/20170601015218.9299-1-david@gibson.dropbear.id.au -> patchew/20170601015218.9299-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170601082935.19993-1-berrange@redhat.com -> patchew/20170601082935.19993-1-berrange@redhat.com
 * [new tag]         patchew/20170601101438.28732-1-david@redhat.com -> patchew/20170601101438.28732-1-david@redhat.com
 * [new tag]         patchew/20170601123847.8922-1-marcandre.lureau@redhat.com -> patchew/20170601123847.8922-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170601130325.6433-1-marcandre.lureau@redhat.com -> patchew/20170601130325.6433-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170601135447.2674-1-pbonzini@redhat.com -> patchew/20170601135447.2674-1-pbonzini@redhat.com
 * [new tag]         patchew/20170601144915.20778-1-alex.bennee@linaro.org -> patchew/20170601144915.20778-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170601172734.9039-1-berrange@redhat.com -> patchew/20170601172734.9039-1-berrange@redhat.com
 * [new tag]         patchew/20170601192327.29712-1-quintela@redhat.com -> patchew/20170601192327.29712-1-quintela@redhat.com
 * [new tag]         patchew/20170601214056.30387-1-quintela@redhat.com -> patchew/20170601214056.30387-1-quintela@redhat.com
 * [new tag]         patchew/20170602031507.29881-1-david@gibson.dropbear.id.au -> patchew/20170602031507.29881-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170602040838.29995-1-quwenruo@cn.fujitsu.com -> patchew/20170602040838.29995-1-quwenruo@cn.fujitsu.com
 * [new tag]         patchew/20170602074040.7400-1-marcandre.lureau@redhat.com -> patchew/20170602074040.7400-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170602081120.3497-1-famz@redhat.com -> patchew/20170602081120.3497-1-famz@redhat.com
 * [new tag]         patchew/20170602081519.15648-1-marcandre.lureau@redhat.com -> patchew/20170602081519.15648-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170602095424.9064-1-stefanha@redhat.com -> patchew/20170602095424.9064-1-stefanha@redhat.com
 * [new tag]         patchew/20170602101831.26576-1-maxime.coquelin@redhat.com -> patchew/20170602101831.26576-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170602112158.232757-1-vsementsov@virtuozzo.com -> patchew/20170602112158.232757-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/201706021132.v52BWx1t027533@linux03a.ddci.com -> patchew/201706021132.v52BWx1t027533@linux03a.ddci.com
 * [new tag]         patchew/20170602130518.22943-1-alex.bennee@linaro.org -> patchew/20170602130518.22943-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170602141229.15326-1-marcandre.lureau@redhat.com -> patchew/20170602141229.15326-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170602153336.18951-1-jcody@redhat.com -> patchew/20170602153336.18951-1-jcody@redhat.com
 * [new tag]         patchew/20170602160006.1748-1-lersek@redhat.com -> patchew/20170602160006.1748-1-lersek@redhat.com
 * [new tag]         patchew/20170604173509.29684-1-rth@twiddle.net -> patchew/20170604173509.29684-1-rth@twiddle.net
 * [new tag]         patchew/20170605004701.31891-1-sjitindarsingh@gmail.com -> patchew/20170605004701.31891-1-sjitindarsingh@gmail.com
 * [new tag]         patchew/20170605004951.1009-1-sjitindarsingh@gmail.com -> patchew/20170605004951.1009-1-sjitindarsingh@gmail.com
 * [new tag]         patchew/20170605085254.16485-1-sf@sfritsch.de -> patchew/20170605085254.16485-1-sf@sfritsch.de
 * [new tag]         patchew/20170605100014.22981-1-laurent@vivier.eu -> patchew/20170605100014.22981-1-laurent@vivier.eu
 * [new tag]         patchew/20170605104216.22429-1-stefanha@redhat.com -> patchew/20170605104216.22429-1-stefanha@redhat.com
 * [new tag]         patchew/20170605104851.61818-1-haoqf@linux.vnet.ibm.com -> patchew/20170605104851.61818-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20170605123908.18777-1-pbonzini@redhat.com -> patchew/20170605123908.18777-1-pbonzini@redhat.com
 * [new tag]         patchew/20170605155655.19315-1-ehabkost@redhat.com -> patchew/20170605155655.19315-1-ehabkost@redhat.com
 * [new tag]         patchew/20170605190824.25184-1-eblake@redhat.com -> patchew/20170605190824.25184-1-eblake@redhat.com
 * [new tag]         patchew/20170605203845.24351-1-eblake@redhat.com -> patchew/20170605203845.24351-1-eblake@redhat.com
 * [new tag]         patchew/20170606025135.2685-1-david@gibson.dropbear.id.au -> patchew/20170606025135.2685-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170606052438.35405-1-haoqf@linux.vnet.ibm.com -> patchew/20170606052438.35405-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20170606072229.9302-1-haozhong.zhang@intel.com -> patchew/20170606072229.9302-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170606083221.9299-1-david@gibson.dropbear.id.au -> patchew/20170606083221.9299-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170606105339.3613-1-kraxel@redhat.com -> patchew/20170606105339.3613-1-kraxel@redhat.com
 * [new tag]         patchew/20170606110459.9771-1-kraxel@redhat.com -> patchew/20170606110459.9771-1-kraxel@redhat.com
 * [new tag]         patchew/20170606110556.12922-1-berrange@redhat.com -> patchew/20170606110556.12922-1-berrange@redhat.com
 * [new tag]         patchew/20170606110618.10393-1-kraxel@redhat.com -> patchew/20170606110618.10393-1-kraxel@redhat.com
 * [new tag]         patchew/20170606112105.13331-1-kraxel@redhat.com -> patchew/20170606112105.13331-1-kraxel@redhat.com
 * [new tag]         patchew/20170606121747.25356-1-pbonzini@redhat.com -> patchew/20170606121747.25356-1-pbonzini@redhat.com
 * [new tag]         patchew/20170606134736.26080-1-kraxel@redhat.com -> patchew/20170606134736.26080-1-kraxel@redhat.com
 * [new tag]         patchew/20170606150016.17143-1-pbonzini@redhat.com -> patchew/20170606150016.17143-1-pbonzini@redhat.com
 * [new tag]         patchew/20170606151757.32473-1-pbonzini@redhat.com -> patchew/20170606151757.32473-1-pbonzini@redhat.com
 * [new tag]         patchew/20170606151919.772-1-pbonzini@redhat.com -> patchew/20170606151919.772-1-pbonzini@redhat.com
 * [new tag]         patchew/20170606162652.112122-1-vsementsov@virtuozzo.com -> patchew/20170606162652.112122-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170607003119.14778-1-rth@twiddle.net -> patchew/20170607003119.14778-1-rth@twiddle.net
 * [new tag]         patchew/20170607032018.19588-1-david@gibson.dropbear.id.au -> patchew/20170607032018.19588-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170607044148.10481-1-anatol.pomozov@gmail.com -> patchew/20170607044148.10481-1-anatol.pomozov@gmail.com
 * [new tag]         patchew/20170607063555.7374-1-marcandre.lureau@redhat.com -> patchew/20170607063555.7374-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170607070732.23312-1-david@gibson.dropbear.id.au -> patchew/20170607070732.23312-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170607074632.13162-1-marcandre.lureau@redhat.com -> patchew/20170607074632.13162-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170607080639.22120-1-haozhong.zhang@intel.com -> patchew/20170607080639.22120-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170607083243.8983-1-aik@ozlabs.ru -> patchew/20170607083243.8983-1-aik@ozlabs.ru
 * [new tag]         patchew/20170607093027.14086-1-laurent@vivier.eu -> patchew/20170607093027.14086-1-laurent@vivier.eu
 * [new tag]         patchew/20170607095926.1834-1-quintela@redhat.com -> patchew/20170607095926.1834-1-quintela@redhat.com
 * [new tag]         patchew/20170607102413.60774-1-marcel@redhat.com -> patchew/20170607102413.60774-1-marcel@redhat.com
 * [new tag]         patchew/20170607105810.3003-1-quintela@redhat.com -> patchew/20170607105810.3003-1-quintela@redhat.com
 * [new tag]         patchew/20170607130619.1545-1-el13635@mail.ntua.gr -> patchew/20170607130619.1545-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170607155536.1193-1-rth@twiddle.net -> patchew/20170607155536.1193-1-rth@twiddle.net
 * [new tag]         patchew/20170607163635.17635-1-marcandre.lureau@redhat.com -> patchew/20170607163635.17635-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170607170006.9203-1-bobby.prani@gmail.com -> patchew/20170607170006.9203-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170607175419.13558-1-berrange@redhat.com -> patchew/20170607175419.13558-1-berrange@redhat.com
 * [new tag]         patchew/20170607180736.11011-1-stefanha@redhat.com -> patchew/20170607180736.11011-1-stefanha@redhat.com
 * [new tag]         patchew/20170607184921.28407-1-marcandre.lureau@redhat.com -> patchew/20170607184921.28407-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170607185505.12542-1-stefanha@redhat.com -> patchew/20170607185505.12542-1-stefanha@redhat.com
 * [new tag]         patchew/20170607185540.12767-1-stefanha@redhat.com -> patchew/20170607185540.12767-1-stefanha@redhat.com
 * [new tag]         patchew/20170607190132.5460-1-bobby.prani@gmail.com -> patchew/20170607190132.5460-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170607212058.6124-1-aurelien@aurel32.net -> patchew/20170607212058.6124-1-aurelien@aurel32.net
 * [new tag]         patchew/20170607224316.6952-1-el13635@mail.ntua.gr -> patchew/20170607224316.6952-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170608031124.8031-1-maozy.fnst@cn.fujitsu.com -> patchew/20170608031124.8031-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170608054116.17203-1-sjitindarsingh@gmail.com -> patchew/20170608054116.17203-1-sjitindarsingh@gmail.com
 * [new tag]         patchew/20170608063608.17855-1-nikunj@linux.vnet.ibm.com -> patchew/20170608063608.17855-1-nikunj@linux.vnet.ibm.com
 * [new tag]         patchew/20170608074122.32099-1-kraxel@redhat.com -> patchew/20170608074122.32099-1-kraxel@redhat.com
 * [new tag]         patchew/20170608115643.18859-1-famz@redhat.com -> patchew/20170608115643.18859-1-famz@redhat.com
 * [new tag]         patchew/20170608115939.30985-1-marcandre.lureau@redhat.com -> patchew/20170608115939.30985-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170608133906.12737-1-ehabkost@redhat.com -> patchew/20170608133906.12737-1-ehabkost@redhat.com
 * [new tag]         patchew/20170608141313.27588-1-marcandre.lureau@redhat.com -> patchew/20170608141313.27588-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170608144949.7918-1-pbonzini@redhat.com -> patchew/20170608144949.7918-1-pbonzini@redhat.com
 * [new tag]         patchew/20170608161013.17920-1-lersek@redhat.com -> patchew/20170608161013.17920-1-lersek@redhat.com
 * [new tag]         patchew/20170608172743.10132-1-lvivier@redhat.com -> patchew/20170608172743.10132-1-lvivier@redhat.com
 * [new tag]         patchew/20170608232255.1621-1-el13635@mail.ntua.gr -> patchew/20170608232255.1621-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170609052652.23200-1-david@gibson.dropbear.id.au -> patchew/20170609052652.23200-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170609053719.26251-1-rth@twiddle.net -> patchew/20170609053719.26251-1-rth@twiddle.net
 * [new tag]         patchew/20170609101808.13506-1-el13635@mail.ntua.gr -> patchew/20170609101808.13506-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170609110810.3951-1-lvivier@redhat.com -> patchew/20170609110810.3951-1-lvivier@redhat.com
 * [new tag]         patchew/20170609124313.8026-1-jcody@redhat.com -> patchew/20170609124313.8026-1-jcody@redhat.com
 * [new tag]         patchew/20170609133337.31183-1-marcandre.lureau@redhat.com -> patchew/20170609133337.31183-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170609133426.11447-1-david@redhat.com -> patchew/20170609133426.11447-1-david@redhat.com
 * [new tag]         patchew/20170609150600.4654-1-f4bug@amsat.org -> patchew/20170609150600.4654-1-f4bug@amsat.org
 * [new tag]         patchew/20170609150622.4720-1-f4bug@amsat.org -> patchew/20170609150622.4720-1-f4bug@amsat.org
 * [new tag]         patchew/20170609150622.4720-2-f4bug@amsat.org -> patchew/20170609150622.4720-2-f4bug@amsat.org
 * [new tag]         patchew/20170609150622.4720-3-f4bug@amsat.org -> patchew/20170609150622.4720-3-f4bug@amsat.org
 * [new tag]         patchew/20170609151615.2589-1-stefanha@redhat.com -> patchew/20170609151615.2589-1-stefanha@redhat.com
 * [new tag]         patchew/20170609152017.7286-1-eblake@redhat.com -> patchew/20170609152017.7286-1-eblake@redhat.com
 * [new tag]         patchew/20170609170100.3599-1-alex.bennee@linaro.org -> patchew/20170609170100.3599-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170609173021.24851.96804.stgit@gimli.home -> patchew/20170609173021.24851.96804.stgit@gimli.home
 * [new tag]         patchew/20170610223135.1731-1-f4bug@amsat.org -> patchew/20170610223135.1731-1-f4bug@amsat.org
 * [new tag]         patchew/20170611011427.6713-1-el13635@mail.ntua.gr -> patchew/20170611011427.6713-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170611074817.13621-1-sf@sfritsch.de -> patchew/20170611074817.13621-1-sf@sfritsch.de
 * [new tag]         patchew/20170611123714.31292-1-mreitz@redhat.com -> patchew/20170611123714.31292-1-mreitz@redhat.com
 * [new tag]         patchew/20170612073109.25930-1-kraxel@redhat.com -> patchew/20170612073109.25930-1-kraxel@redhat.com
 * [new tag]         patchew/20170612121820.31106-1-otubo@redhat.com -> patchew/20170612121820.31106-1-otubo@redhat.com
 * [new tag]         patchew/20170612153816.15266-1-pbonzini@redhat.com -> patchew/20170612153816.15266-1-pbonzini@redhat.com
 * [new tag]         patchew/20170613121639.17853-1-pbutsykin@virtuozzo.com -> patchew/20170613121639.17853-1-pbutsykin@virtuozzo.com
 * [new tag]         patchew/20170613125515.30416-2-vadim.galitsyn@profitbricks.com -> patchew/20170613125515.30416-2-vadim.galitsyn@profitbricks.com
 * [new tag]         patchew/20170613133329.23653-1-stefanha@redhat.com -> patchew/20170613133329.23653-1-stefanha@redhat.com
 * [new tag]         patchew/20170613133531.24671-1-stefanha@redhat.com -> patchew/20170613133531.24671-1-stefanha@redhat.com
 * [new tag]         patchew/20170613140358.81651-1-vsementsov@virtuozzo.com -> patchew/20170613140358.81651-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170613140546.28227-1-vadim.galitsyn@profitbricks.com -> patchew/20170613140546.28227-1-vadim.galitsyn@profitbricks.com
 * [new tag]         patchew/20170613172006.19685-1-mreitz@redhat.com -> patchew/20170613172006.19685-1-mreitz@redhat.com
 * [new tag]         patchew/20170613183025.5145-1-f4bug@amsat.org -> patchew/20170613183025.5145-1-f4bug@amsat.org
 * [new tag]         patchew/20170613202659.1920-1-rth@twiddle.net -> patchew/20170613202659.1920-1-rth@twiddle.net
 * [new tag]         patchew/20170613205726.13544-1-mreitz@redhat.com -> patchew/20170613205726.13544-1-mreitz@redhat.com
 * [new tag]         patchew/20170613211612.9368-1-berto@igalia.com -> patchew/20170613211612.9368-1-berto@igalia.com
 * [new tag]         patchew/20170613214736.19963-1-david@redhat.com -> patchew/20170613214736.19963-1-david@redhat.com
 * [new tag]         patchew/20170613225352.GA26288@flamenco -> patchew/20170613225352.GA26288@flamenco
 * [new tag]         patchew/20170613225900.1641-1-sam.brian@accelerated.com -> patchew/20170613225900.1641-1-sam.brian@accelerated.com
 * [new tag]         patchew/20170613230627.17942-1-ehabkost@redhat.com -> patchew/20170613230627.17942-1-ehabkost@redhat.com
 * [new tag]         patchew/20170613234039.27201-1-sam.brian@accelerated.com -> patchew/20170613234039.27201-1-sam.brian@accelerated.com
 * [new tag]         patchew/20170614052311.13785-1-rth@twiddle.net -> patchew/20170614052311.13785-1-rth@twiddle.net
 * [new tag]         patchew/20170614063607.47863-1-aik@ozlabs.ru -> patchew/20170614063607.47863-1-aik@ozlabs.ru
 * [new tag]         patchew/20170614064452.23167-1-sjitindarsingh@gmail.com -> patchew/20170614064452.23167-1-sjitindarsingh@gmail.com
 * [new tag]         patchew/20170614075111.24886-1-kraxel@redhat.com -> patchew/20170614075111.24886-1-kraxel@redhat.com
 * [new tag]         patchew/20170614075653.26420-1-kraxel@redhat.com -> patchew/20170614075653.26420-1-kraxel@redhat.com
 * [new tag]         patchew/20170614083434.17966-1-quintela@redhat.com -> patchew/20170614083434.17966-1-quintela@redhat.com
 * [new tag]         patchew/20170614084149.31314-1-kraxel@redhat.com -> patchew/20170614084149.31314-1-kraxel@redhat.com
 * [new tag]         patchew/20170614084538.32480-1-kraxel@redhat.com -> patchew/20170614084538.32480-1-kraxel@redhat.com
 * [new tag]         patchew/20170614092930.11234-1-stefanha@redhat.com -> patchew/20170614092930.11234-1-stefanha@redhat.com
 * [new tag]         patchew/20170614115138.19571-1-quintela@redhat.com -> patchew/20170614115138.19571-1-quintela@redhat.com
 * [new tag]         patchew/20170614133819.18480-1-david@redhat.com -> patchew/20170614133819.18480-1-david@redhat.com
 * [new tag]         patchew/20170614140209.29847-1-alex.bennee@linaro.org -> patchew/20170614140209.29847-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170614144939.1115-1-ehabkost@redhat.com -> patchew/20170614144939.1115-1-ehabkost@redhat.com
 * [new tag]         patchew/20170614152106.25533-1-vadim.galitsyn@profitbricks.com -> patchew/20170614152106.25533-1-vadim.galitsyn@profitbricks.com
 * [new tag]         patchew/20170614153102.9077-1-mreitz@redhat.com -> patchew/20170614153102.9077-1-mreitz@redhat.com
 * [new tag]         patchew/20170614194821.8754-1-rth@twiddle.net -> patchew/20170614194821.8754-1-rth@twiddle.net
 * [new tag]         patchew/20170614202733.GA8420@flamenco -> patchew/20170614202733.GA8420@flamenco
 * [new tag]         patchew/20170614203000.19984-1-ehabkost@redhat.com -> patchew/20170614203000.19984-1-ehabkost@redhat.com
 * [new tag]         patchew/20170614203343.GB8420@flamenco -> patchew/20170614203343.GB8420@flamenco
 * [new tag]         patchew/20170614203905.19657-1-laurent@vivier.eu -> patchew/20170614203905.19657-1-laurent@vivier.eu
 * [new tag]         patchew/20170614215526.9218-1-jcody@redhat.com -> patchew/20170614215526.9218-1-jcody@redhat.com
 * [new tag]         patchew/20170615030801.6260-1-maozy.fnst@cn.fujitsu.com -> patchew/20170615030801.6260-1-maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/20170615055356.20684-1-rth@twiddle.net -> patchew/20170615055356.20684-1-rth@twiddle.net
 * [new tag]         patchew/20170615195110.17479-1-pbonzini@redhat.com -> patchew/20170615195110.17479-1-pbonzini@redhat.com
 * [new tag]         patchew/20170615195209.17720-1-pbonzini@redhat.com -> patchew/20170615195209.17720-1-pbonzini@redhat.com
 * [new tag]         patchew/20170616051526.6814-1-rth@twiddle.net -> patchew/20170616051526.6814-1-rth@twiddle.net
 * [new tag]         patchew/20170616112201.24512-1-lersek@redhat.com -> patchew/20170616112201.24512-1-lersek@redhat.com
 * [new tag]         patchew/20170616114443.25838-1-lprosek@redhat.com -> patchew/20170616114443.25838-1-lprosek@redhat.com
 * [new tag]         patchew/20170616135847.17726-1-mreitz@redhat.com -> patchew/20170616135847.17726-1-mreitz@redhat.com
 * [new tag]         patchew/20170616160658.32290-1-famz@redhat.com -> patchew/20170616160658.32290-1-famz@redhat.com
 * [new tag]         patchew/20170616161334.7492-1-f4bug@amsat.org -> patchew/20170616161334.7492-1-f4bug@amsat.org
 * [new tag]         patchew/20170616172230.22755-1-danielhb@linux.vnet.ibm.com -> patchew/20170616172230.22755-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170618070617.GA12026@gmail.com -> patchew/20170618070617.GA12026@gmail.com
 * [new tag]         patchew/20170618082813.8091-1-tobleminer@gmail.com -> patchew/20170618082813.8091-1-tobleminer@gmail.com
 * [new tag]         patchew/20170618161727.18404-1-tobleminer@gmail.com -> patchew/20170618161727.18404-1-tobleminer@gmail.com
 * [new tag]         patchew/20170618191101.3457-1-Sergio.G.DelReal@gmail.com -> patchew/20170618191101.3457-1-Sergio.G.DelReal@gmail.com
 * [new tag]         patchew/20170619081945.30001-1-ross.lagerwall@citrix.com -> patchew/20170619081945.30001-1-ross.lagerwall@citrix.com
 * [new tag]         patchew/20170619142848.14258-1-tobleminer@gmail.com -> patchew/20170619142848.14258-1-tobleminer@gmail.com
 * [new tag]         patchew/20170619150002.3033-1-stefanha@redhat.com -> patchew/20170619150002.3033-1-stefanha@redhat.com
 * [new tag]         patchew/20170619173455.18805-1-berrange@redhat.com -> patchew/20170619173455.18805-1-berrange@redhat.com
 * [new tag]         patchew/20170619205952.8601-1-brogers@suse.com -> patchew/20170619205952.8601-1-brogers@suse.com
 * [new tag]         patchew/20170619233718.24959-1-tobleminer@gmail.com -> patchew/20170619233718.24959-1-tobleminer@gmail.com
 * [new tag]         patchew/20170620123553.16186-1-david@redhat.com -> patchew/20170620123553.16186-1-david@redhat.com
 * [new tag]         patchew/20170620130136.14557-1-berto@igalia.com -> patchew/20170620130136.14557-1-berto@igalia.com
 * [new tag]         patchew/20170620134756.9632-1-paul.durrant@citrix.com -> patchew/20170620134756.9632-1-paul.durrant@citrix.com
 * [new tag]         patchew/20170620163009.21764-1-f4bug@amsat.org -> patchew/20170620163009.21764-1-f4bug@amsat.org
 * [new tag]         patchew/20170620184017.17919-2-danielhb@linux.vnet.ibm.com -> patchew/20170620184017.17919-2-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170620205121.26515-1-laurent@vivier.eu -> patchew/20170620205121.26515-1-laurent@vivier.eu
 * [new tag]         patchew/20170621024831.26019-1-rth@twiddle.net -> patchew/20170621024831.26019-1-rth@twiddle.net
 * [new tag]         patchew/20170621043401.19842-1-hpoussin@reactos.org -> patchew/20170621043401.19842-1-hpoussin@reactos.org
 * [new tag]         patchew/20170621052935.20715-1-boqun.feng@gmail.com -> patchew/20170621052935.20715-1-boqun.feng@gmail.com
 * [new tag]         patchew/20170621093444.30115-1-david@gibson.dropbear.id.au -> patchew/20170621093444.30115-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170621102005.18701-1-quintela@redhat.com -> patchew/20170621102005.18701-1-quintela@redhat.com
 * [new tag]         patchew/20170621122234.12751-1-kraxel@redhat.com -> patchew/20170621122234.12751-1-kraxel@redhat.com
 * [new tag]         patchew/20170621125249.8805-1-paul.durrant@citrix.com -> patchew/20170621125249.8805-1-paul.durrant@citrix.com
 * [new tag]         patchew/20170621131157.16584-1-mreitz@redhat.com -> patchew/20170621131157.16584-1-mreitz@redhat.com
 * [new tag]         patchew/20170621132340.27686-1-kraxel@redhat.com -> patchew/20170621132340.27686-1-kraxel@redhat.com
 * [new tag]         patchew/20170621133023.27627-1-mreitz@redhat.com -> patchew/20170621133023.27627-1-mreitz@redhat.com
 * [new tag]         patchew/20170621134744.8047-1-mreitz@redhat.com -> patchew/20170621134744.8047-1-mreitz@redhat.com
 * [new tag]         patchew/20170621140219.4568-1-marcandre.lureau@redhat.com -> patchew/20170621140219.4568-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170621142152.GA18094@wxdeubuntu.ipads-lab.se.sjtu.edu.cn -> patchew/20170621142152.GA18094@wxdeubuntu.ipads-lab.se.sjtu.edu.cn
 * [new tag]         patchew/20170621153424.16690-1-vsementsov@virtuozzo.com -> patchew/20170621153424.16690-1-vsementsov@virtuozzo.com
 * [new tag]         patchew/20170621154347.32084-1-kraxel@redhat.com -> patchew/20170621154347.32084-1-kraxel@redhat.com
 * [new tag]         patchew/20170621210047.24083-1-laurent@vivier.eu -> patchew/20170621210047.24083-1-laurent@vivier.eu
 * [new tag]         patchew/20170621210704.24388-1-laurent@vivier.eu -> patchew/20170621210704.24388-1-laurent@vivier.eu
 * [new tag]         patchew/201706220003.v5M038Ns005683@linux03a.ddci.com -> patchew/201706220003.v5M038Ns005683@linux03a.ddci.com
 * [new tag]         patchew/20170622033231.19344-1-f4bug@amsat.org -> patchew/20170622033231.19344-1-f4bug@amsat.org
 * [new tag]         patchew/20170622083336.19479-1-otubo@redhat.com -> patchew/20170622083336.19479-1-otubo@redhat.com
 * [new tag]         patchew/20170622094151.28633-1-david@redhat.com -> patchew/20170622094151.28633-1-david@redhat.com
 * [new tag]         patchew/20170622111845.5296-1-alex.bennee@linaro.org -> patchew/20170622111845.5296-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170622112648.24815-1-lvivier@redhat.com -> patchew/20170622112648.24815-1-lvivier@redhat.com
 * [new tag]         patchew/20170622124204.19407-1-marcandre.lureau@redhat.com -> patchew/20170622124204.19407-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170622231228.1050-1-david@redhat.com -> patchew/20170622231228.1050-1-david@redhat.com
 * [new tag]         patchew/20170623104256.25868-1-aurelien@aurel32.net -> patchew/20170623104256.25868-1-aurelien@aurel32.net
 * [new tag]         patchew/20170623124829.24260-1-kraxel@redhat.com -> patchew/20170623124829.24260-1-kraxel@redhat.com
 * [new tag]         patchew/20170623164557.11636-1-f4bug@amsat.org -> patchew/20170623164557.11636-1-f4bug@amsat.org
 * [new tag]         patchew/20170623220926.11479-1-jsnow@redhat.com -> patchew/20170623220926.11479-1-jsnow@redhat.com
 * [new tag]         patchew/20170624181008.25497-1-eblake@redhat.com -> patchew/20170624181008.25497-1-eblake@redhat.com
 * [new tag]         patchew/20170626112809.15020-1-alex.bennee@linaro.org -> patchew/20170626112809.15020-1-alex.bennee@linaro.org
 * [new tag]         patchew/20170626123510.20134-1-berrange@redhat.com -> patchew/20170626123510.20134-1-berrange@redhat.com
 * [new tag]         patchew/20170626200832.11058-1-Sergio.G.DelReal@gmail.com -> patchew/20170626200832.11058-1-Sergio.G.DelReal@gmail.com
 * [new tag]         patchew/20170627152248.10446-1-pbonzini@redhat.com -> patchew/20170627152248.10446-1-pbonzini@redhat.com
 * [new tag]         patchew/20170627154120.20346-1-stefanha@redhat.com -> patchew/20170627154120.20346-1-stefanha@redhat.com
 * [new tag]         patchew/20170627161032.5014-1-david@redhat.com -> patchew/20170627161032.5014-1-david@redhat.com
 * [new tag]         patchew/20170627191221.31650-1-laurent@vivier.eu -> patchew/20170627191221.31650-1-laurent@vivier.eu
 * [new tag]         patchew/20170627192458.15519-1-eblake@redhat.com -> patchew/20170627192458.15519-1-eblake@redhat.com
 * [new tag]         patchew/20170628024358.29956-1-haozhong.zhang@intel.com -> patchew/20170628024358.29956-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170628083704.24997-1-haozhong.zhang@intel.com -> patchew/20170628083704.24997-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170628113106.5248-1-quintela@redhat.com -> patchew/20170628113106.5248-1-quintela@redhat.com
 * [new tag]         patchew/20170628122041.13558-1-stefanha@redhat.com -> patchew/20170628122041.13558-1-stefanha@redhat.com
 * [new tag]         patchew/20170628124850.12821-1-famz@redhat.com -> patchew/20170628124850.12821-1-famz@redhat.com
 * [new tag]         patchew/20170628140919.27167-1-lvivier@redhat.com -> patchew/20170628140919.27167-1-lvivier@redhat.com
 * [new tag]         patchew/20170628142137.7440-1-eblake@redhat.com -> patchew/20170628142137.7440-1-eblake@redhat.com
 * [new tag]         patchew/20170628184724.21378-1-stefanha@redhat.com -> patchew/20170628184724.21378-1-stefanha@redhat.com
 * [new tag]         patchew/20170628185546.4469.87645.stgit@gimli.home -> patchew/20170628185546.4469.87645.stgit@gimli.home
 * [new tag]         patchew/20170628194731.15742-1-danielhb@linux.vnet.ibm.com -> patchew/20170628194731.15742-1-danielhb@linux.vnet.ibm.com
 * [new tag]         patchew/20170628204241.32106-1-laurent@vivier.eu -> patchew/20170628204241.32106-1-laurent@vivier.eu
 * [new tag]         patchew/20170628204452.41230-1-raj.khem@gmail.com -> patchew/20170628204452.41230-1-raj.khem@gmail.com
 * [new tag]         patchew/20170628232315.22777-1-mreitz@redhat.com -> patchew/20170628232315.22777-1-mreitz@redhat.com
 * [new tag]         patchew/20170629010300.2848-1-f4bug@amsat.org -> patchew/20170629010300.2848-1-f4bug@amsat.org
 * [new tag]         patchew/20170629045940.11242-1-sjitindarsingh@gmail.com -> patchew/20170629045940.11242-1-sjitindarsingh@gmail.com
 * [new tag]         patchew/20170629060300.29869-1-el13635@mail.ntua.gr -> patchew/20170629060300.29869-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170629071129.29362-1-bobby.prani@gmail.com -> patchew/20170629071129.29362-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170629075243.26984-1-bobby.prani@gmail.com -> patchew/20170629075243.26984-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170629080452.26470-1-famz@redhat.com -> patchew/20170629080452.26470-1-famz@redhat.com
 * [new tag]         patchew/20170629115336.69632-1-bjhoupu@linux.vnet.ibm.com -> patchew/20170629115336.69632-1-bjhoupu@linux.vnet.ibm.com
 * [new tag]         patchew/20170629115751.72337-1-bjhoupu@linux.vnet.ibm.com -> patchew/20170629115751.72337-1-bjhoupu@linux.vnet.ibm.com
 * [new tag]         patchew/20170629132310.18865-1-marcandre.lureau@redhat.com -> patchew/20170629132310.18865-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170629132749.997-1-pbonzini@redhat.com -> patchew/20170629132749.997-1-pbonzini@redhat.com
 * [new tag]         patchew/20170629150308.22766-1-f4bug@amsat.org -> patchew/20170629150308.22766-1-f4bug@amsat.org
 * [new tag]         patchew/20170629151451.23453-1-f4bug@amsat.org -> patchew/20170629151451.23453-1-f4bug@amsat.org
 * [new tag]         patchew/20170629162046.4135-1-berrange@redhat.com -> patchew/20170629162046.4135-1-berrange@redhat.com
 * [new tag]         patchew/20170629163011.13388-1-dgilbert@redhat.com -> patchew/20170629163011.13388-1-dgilbert@redhat.com
 * [new tag]         patchew/20170629190405.1748-1-laurent@vivier.eu -> patchew/20170629190405.1748-1-laurent@vivier.eu
 * [new tag]         patchew/20170630004059.25619-1-bobby.prani@gmail.com -> patchew/20170630004059.25619-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170630104632.27942-1-david@gibson.dropbear.id.au -> patchew/20170630104632.27942-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170630114635.9286-1-stefanha@redhat.com -> patchew/20170630114635.9286-1-stefanha@redhat.com
 * [new tag]         patchew/20170630123050.19834-1-laurent@vivier.eu -> patchew/20170630123050.19834-1-laurent@vivier.eu
 * [new tag]         patchew/20170630125028.30265-1-ross.lagerwall@citrix.com -> patchew/20170630125028.30265-1-ross.lagerwall@citrix.com
 * [new tag]         patchew/20170630133139.7907-2-vadim.galitsyn@profitbricks.com -> patchew/20170630133139.7907-2-vadim.galitsyn@profitbricks.com
 * [new tag]         patchew/20170630141040.15353-1-famz@redhat.com -> patchew/20170630141040.15353-1-famz@redhat.com
 * [new tag]         patchew/20170630153946.11997-1-bobby.prani@gmail.com -> patchew/20170630153946.11997-1-bobby.prani@gmail.com
 * [new tag]         patchew/20170630160422.14842-1-maxime.coquelin@redhat.com -> patchew/20170630160422.14842-1-maxime.coquelin@redhat.com
 * [new tag]         patchew/20170630162033.12893-1-dgilbert@redhat.com -> patchew/20170630162033.12893-1-dgilbert@redhat.com
 * [new tag]         patchew/20170630183736.13222-1-rth@twiddle.net -> patchew/20170630183736.13222-1-rth@twiddle.net
 * [new tag]         patchew/20170630190903.9886-1-rth@twiddle.net -> patchew/20170630190903.9886-1-rth@twiddle.net
 * [new tag]         patchew/20170630195831.26087-1-eblake@redhat.com -> patchew/20170630195831.26087-1-eblake@redhat.com
 * [new tag]         patchew/20170701014754.GA32043@flamenco -> patchew/20170701014754.GA32043@flamenco
 * [new tag]         patchew/20170701153906.16588-1-el13635@mail.ntua.gr -> patchew/20170701153906.16588-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170701202600.14057-1-rth@twiddle.net -> patchew/20170701202600.14057-1-rth@twiddle.net
 * [new tag]         patchew/20170702100646.20656-1-el13635@mail.ntua.gr -> patchew/20170702100646.20656-1-el13635@mail.ntua.gr
 * [new tag]         patchew/20170702150510.23276-1-mreitz@redhat.com -> patchew/20170702150510.23276-1-mreitz@redhat.com
 * [new tag]         patchew/20170702163220.8039-1-aurelien@aurel32.net -> patchew/20170702163220.8039-1-aurelien@aurel32.net
 * [new tag]         patchew/20170702202814.27793-1-aurelien@aurel32.net -> patchew/20170702202814.27793-1-aurelien@aurel32.net
 * [new tag]         patchew/20170703061948.18220-1-sjitindarsingh@gmail.com -> patchew/20170703061948.18220-1-sjitindarsingh@gmail.com
 * [new tag]         patchew/20170703073836.72092-1-haoqf@linux.vnet.ibm.com -> patchew/20170703073836.72092-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20170703074548.5780-1-lvivier@redhat.com -> patchew/20170703074548.5780-1-lvivier@redhat.com
 * [new tag]         patchew/20170703085107.16547-1-haoqf@linux.vnet.ibm.com -> patchew/20170703085107.16547-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20170703111549.10924-1-kraxel@redhat.com -> patchew/20170703111549.10924-1-kraxel@redhat.com
 * [new tag]         patchew/20170703122505.32017-1-mreitz@redhat.com -> patchew/20170703122505.32017-1-mreitz@redhat.com
 * [new tag]         patchew/20170703123114.17103-1-eblake@redhat.com -> patchew/20170703123114.17103-1-eblake@redhat.com
 * [new tag]         patchew/20170703131455.25424-1-lvivier@redhat.com -> patchew/20170703131455.25424-1-lvivier@redhat.com
 * [new tag]         patchew/20170703152338.20024-1-haozhong.zhang@intel.com -> patchew/20170703152338.20024-1-haozhong.zhang@intel.com
 * [new tag]         patchew/20170703162328.24474-1-laurent@vivier.eu -> patchew/20170703162328.24474-1-laurent@vivier.eu
 * [new tag]         patchew/20170703180950.9895-1-eblake@redhat.com -> patchew/20170703180950.9895-1-eblake@redhat.com
 * [new tag]         patchew/20170704064347.7022-1-famz@redhat.com -> patchew/20170704064347.7022-1-famz@redhat.com
 * [new tag]         patchew/20170704083231.98056-1-haoqf@linux.vnet.ibm.com -> patchew/20170704083231.98056-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20170704092215.13742-1-cohuck@redhat.com -> patchew/20170704092215.13742-1-cohuck@redhat.com
 * [new tag]         patchew/20170704092704.8754-1-pbonzini@redhat.com -> patchew/20170704092704.8754-1-pbonzini@redhat.com
 * [new tag]         patchew/20170704093815.28285-1-rjones@redhat.com -> patchew/20170704093815.28285-1-rjones@redhat.com
 * [new tag]         patchew/20170704103427.22791-1-berrange@redhat.com -> patchew/20170704103427.22791-1-berrange@redhat.com
 * [new tag]         patchew/20170704110126.26806-1-lvivier@redhat.com -> patchew/20170704110126.26806-1-lvivier@redhat.com
 * [new tag]         patchew/20170704111404.28569-1-berrange@redhat.com -> patchew/20170704111404.28569-1-berrange@redhat.com
 * [new tag]         patchew/20170704122325.25634-1-famz@redhat.com -> patchew/20170704122325.25634-1-famz@redhat.com
 * [new tag]         patchew/20170704123009.4456-1-berrange@redhat.com -> patchew/20170704123009.4456-1-berrange@redhat.com
 * [new tag]         patchew/20170704132350.11874-1-haoqf@linux.vnet.ibm.com -> patchew/20170704132350.11874-1-haoqf@linux.vnet.ibm.com
 * [new tag]         patchew/20170704135454.13467-1-david@gibson.dropbear.id.au -> patchew/20170704135454.13467-1-david@gibson.dropbear.id.au
 * [new tag]         patchew/20170704184915.31586-1-dgilbert@redhat.com -> patchew/20170704184915.31586-1-dgilbert@redhat.com
 * [new tag]         patchew/20170704220346.29244-1-marcandre.lureau@redhat.com -> patchew/20170704220346.29244-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170705075411.6556-1-sameeh@daynix.com -> patchew/20170705075411.6556-1-sameeh@daynix.com
 * [new tag]         patchew/20170705090113.7036-2-sameeh@daynix.com -> patchew/20170705090113.7036-2-sameeh@daynix.com
 * [new tag]         patchew/20170705102231.20711-1-stefanha@redhat.com -> patchew/20170705102231.20711-1-stefanha@redhat.com
 * [new tag]         patchew/20170705125738.8777-1-stefanha@redhat.com -> patchew/20170705125738.8777-1-stefanha@redhat.com
 * [new tag]         patchew/20170705133635.11850-1-famz@redhat.com -> patchew/20170705133635.11850-1-famz@redhat.com
 * [new tag]         patchew/20170705144302.32017-1-dgilbert@redhat.com -> patchew/20170705144302.32017-1-dgilbert@redhat.com
 * [new tag]         patchew/20170705190404.22449-1-mreitz@redhat.com -> patchew/20170705190404.22449-1-mreitz@redhat.com
 * [new tag]         patchew/20170706002401.10507-1-rth@twiddle.net -> patchew/20170706002401.10507-1-rth@twiddle.net
 * [new tag]         patchew/20170706095545.5632-1-dgilbert@redhat.com -> patchew/20170706095545.5632-1-dgilbert@redhat.com
 * [new tag]         patchew/20170706101611.27031-1-marcandre.lureau@redhat.com -> patchew/20170706101611.27031-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/20170706163828.24082-1-pbonzini@redhat.com -> patchew/20170706163828.24082-1-pbonzini@redhat.com
 * [new tag]         patchew/20170706170353.32601-1-marcandre.lureau@redhat.com -> patchew/20170706170353.32601-1-marcandre.lureau@redhat.com
 * [new tag]         patchew/218478942.134698.1495055111655@mail.yahoo.com -> patchew/218478942.134698.1495055111655@mail.yahoo.com
 * [new tag]         patchew/22f56a33f9774a678c72dc5c0920a5c562cc6ea2.1494937835.git.maozy.fnst@cn.fujitsu.com -> patchew/22f56a33f9774a678c72dc5c0920a5c562cc6ea2.1494937835.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/271c246e5d92be095de3dc28dcaf85184e05264a.1494816085.git.maozy.fnst@cn.fujitsu.com -> patchew/271c246e5d92be095de3dc28dcaf85184e05264a.1494816085.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/3163c16d6ab4257f7be9ad44fe9cc0ce8c359e5a.1486718555.git.phrdina@redhat.com -> patchew/3163c16d6ab4257f7be9ad44fe9cc0ce8c359e5a.1486718555.git.phrdina@redhat.com
 * [new tag]         patchew/3fcc534530370027118377dc24d4049a1cef590e.1481807806.git.ossman@cendio.se -> patchew/3fcc534530370027118377dc24d4049a1cef590e.1481807806.git.ossman@cendio.se
 * [new tag]         patchew/4392061496853374@web26g.yandex.ru -> patchew/4392061496853374@web26g.yandex.ru
 * [new tag]         patchew/4401421496853664@web26g.yandex.ru -> patchew/4401421496853664@web26g.yandex.ru
 * [new tag]         patchew/4712D8F4B26E034E80552F30A67BE0B1A4E842@ORSMSX112.amr.corp.intel.com -> patchew/4712D8F4B26E034E80552F30A67BE0B1A4E842@ORSMSX112.amr.corp.intel.com
 * [new tag]         patchew/536fb79a-5753-4143-a5a6-7a189ef5137e@ONE.local -> patchew/536fb79a-5753-4143-a5a6-7a189ef5137e@ONE.local
 * [new tag]         patchew/56fa8a79-fa90-4adc-aa0e-0527c9d96698@ONE.local -> patchew/56fa8a79-fa90-4adc-aa0e-0527c9d96698@ONE.local
 * [new tag]         patchew/583cde9c.3223ed0a.7f0c2.886e@mx.google.com -> patchew/583cde9c.3223ed0a.7f0c2.886e@mx.google.com
 * [new tag]         patchew/583d59a6.dcc6370a.3a361.b5d4@mx.google.com -> patchew/583d59a6.dcc6370a.3a361.b5d4@mx.google.com
 * [new tag]         patchew/583d5d12.8529c80a.4a33a.c6f9@mx.google.com -> patchew/583d5d12.8529c80a.4a33a.c6f9@mx.google.com
 * [new tag]         patchew/5850b674.b53f9d0a.6452f.717a@mx.google.com -> patchew/5850b674.b53f9d0a.6452f.717a@mx.google.com
 * [new tag]         patchew/5850b689.68219d0a.9be2d.9b07@mx.google.com -> patchew/5850b689.68219d0a.9be2d.9b07@mx.google.com
 * [new tag]         patchew/58520052.4825ed0a.27a71.6cae@mx.google.com -> patchew/58520052.4825ed0a.27a71.6cae@mx.google.com
 * [new tag]         patchew/585200c9.a968ca0a.1ab80.4c98@mx.google.com -> patchew/585200c9.a968ca0a.1ab80.4c98@mx.google.com
 * [new tag]         patchew/586c7aad.0834c80a.d7aff.122e@mx.google.com -> patchew/586c7aad.0834c80a.d7aff.122e@mx.google.com
 * [new tag]         patchew/586cb5ab.f31d9d0a.38ac3.acf2@mx.google.com -> patchew/586cb5ab.f31d9d0a.38ac3.acf2@mx.google.com
 * [new tag]         patchew/5878435d.54b31c0a.39a7b.4e93@mx.google.com -> patchew/5878435d.54b31c0a.39a7b.4e93@mx.google.com
 * [new tag]         patchew/5884626f.5b2f6b0a.1bfff.3037@mx.google.com -> patchew/5884626f.5b2f6b0a.1bfff.3037@mx.google.com
 * [new tag]         patchew/58871f9b.d635240a.4cda6.5322@mx.google.com -> patchew/58871f9b.d635240a.4cda6.5322@mx.google.com
 * [new tag]         patchew/5887254f.863a240a.2c122.5500@mx.google.com -> patchew/5887254f.863a240a.2c122.5500@mx.google.com
 * [new tag]         patchew/589996bb.02482e0a.10629.5b0e@mx.google.com -> patchew/589996bb.02482e0a.10629.5b0e@mx.google.com
 * [new tag]         patchew/5899a02e.45ca240a.6c373.93c1@mx.google.com -> patchew/5899a02e.45ca240a.6c373.93c1@mx.google.com
 * [new tag]         patchew/5899ac3e.1033240a.944d5.9a2d@mx.google.com -> patchew/5899ac3e.1033240a.944d5.9a2d@mx.google.com
 * [new tag]         patchew/589a85b8.3c2b9d0a.b8e6.1434@mx.google.com -> patchew/589a85b8.3c2b9d0a.b8e6.1434@mx.google.com
 * [new tag]         patchew/589a933e.54c0620a.e6952.a4c6@mx.google.com -> patchew/589a933e.54c0620a.e6952.a4c6@mx.google.com
 * [new tag]         patchew/589bcff4.856d240a.3dcfb.a4be@mx.google.com -> patchew/589bcff4.856d240a.3dcfb.a4be@mx.google.com
 * [new tag]         patchew/5aa28297d665cee24ddab26bbf4633e4252f97b6.1483978442.git.ossman@cendio.se -> patchew/5aa28297d665cee24ddab26bbf4633e4252f97b6.1483978442.git.ossman@cendio.se
 * [new tag]         patchew/659939DD-F3BB-4FB9-B242-E0BB624EFED8@gmail.com -> patchew/659939DD-F3BB-4FB9-B242-E0BB624EFED8@gmail.com
 * [new tag]         patchew/74f647b8-a890-6635-278a-ce55fbbb5537@gmail.com -> patchew/74f647b8-a890-6635-278a-ce55fbbb5537@gmail.com
 * [new tag]         patchew/7fb8c9ff25d183cf7c0f729a90ee4f59c0632d64.1497602554.git.maozy.fnst@cn.fujitsu.com -> patchew/7fb8c9ff25d183cf7c0f729a90ee4f59c0632d64.1497602554.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/8408e117-8ab1-150f-c7f9-254b6dd46b23@gmail.com -> patchew/8408e117-8ab1-150f-c7f9-254b6dd46b23@gmail.com
 * [new tag]         patchew/84C57F4C-C8F8-4FB3-804A-FC3DE0AB6408@gmail.com -> patchew/84C57F4C-C8F8-4FB3-804A-FC3DE0AB6408@gmail.com
 * [new tag]         patchew/87c0140e9407c08f6e74b04131b610f2e27c014c.1495560397.git.jcody@redhat.com -> patchew/87c0140e9407c08f6e74b04131b610f2e27c014c.1495560397.git.jcody@redhat.com
 * [new tag]         patchew/A4228BA9-1508-4587-86AC-E71C053FED66@gmail.com -> patchew/A4228BA9-1508-4587-86AC-E71C053FED66@gmail.com
 * [new tag]         patchew/ABkAAQD4AB3QlUFH9YYGDar2.1.1483013998163.Hmail.zhangqian@sangfor.com.cn -> patchew/ABkAAQD4AB3QlUFH9YYGDar2.1.1483013998163.Hmail.zhangqian@sangfor.com.cn
 * [new tag]         patchew/CAHgzvFi2wjPtJzU9hXzdaZsbYr085VCbjfsiUeVc5XnUR8arHw@mail.gmail.com -> patchew/CAHgzvFi2wjPtJzU9hXzdaZsbYr085VCbjfsiUeVc5XnUR8arHw@mail.gmail.com
 * [new tag]         patchew/CANHSq5CmdwQUFxXGRsyWUNs-_AN19zEhXwZtj6p807Cr3Us3ng@mail.gmail.com -> patchew/CANHSq5CmdwQUFxXGRsyWUNs-_AN19zEhXwZtj6p807Cr3Us3ng@mail.gmail.com
 * [new tag]         patchew/CY1PR17MB03131CCE5DF2F49602956D1BDB720@CY1PR17MB0313.namprd17.prod.outlook.com -> patchew/CY1PR17MB03131CCE5DF2F49602956D1BDB720@CY1PR17MB0313.namprd17.prod.outlook.com
 * [new tag]         patchew/CY1PR17MB031324368F190B92EFA547ACDB730@CY1PR17MB0313.namprd17.prod.outlook.com -> patchew/CY1PR17MB031324368F190B92EFA547ACDB730@CY1PR17MB0313.namprd17.prod.outlook.com
 * [new tag]         patchew/D6FAAABF-064D-49C0-B572-C73679F34052@gmail.com -> patchew/D6FAAABF-064D-49C0-B572-C73679F34052@gmail.com
 * [new tag]         patchew/E14D0C7B-2C4B-4D29-AC31-A651AB7573DE@gmail.com -> patchew/E14D0C7B-2C4B-4D29-AC31-A651AB7573DE@gmail.com
 * [new tag]         patchew/E8B64B53-09F0-4B1E-9F11-48CC3957C4E1@gmail.com -> patchew/E8B64B53-09F0-4B1E-9F11-48CC3957C4E1@gmail.com
 * [new tag]         patchew/F6C36C1A-4661-48F4-BEA6-3994889927D0@gmail.com -> patchew/F6C36C1A-4661-48F4-BEA6-3994889927D0@gmail.com
 * [new tag]         patchew/alpine.DEB.2.10.1705021646310.8859@sstabellini-ThinkPad-X260 -> patchew/alpine.DEB.2.10.1705021646310.8859@sstabellini-ThinkPad-X260
 * [new tag]         patchew/alpine.DEB.2.10.1705031359390.9240@sstabellini-ThinkPad-X260 -> patchew/alpine.DEB.2.10.1705031359390.9240@sstabellini-ThinkPad-X260
 * [new tag]         patchew/alpine.DEB.2.10.1706281125330.2919@sstabellini-ThinkPad-X260 -> patchew/alpine.DEB.2.10.1706281125330.2919@sstabellini-ThinkPad-X260
 * [new tag]         patchew/b0619e40-daca-9b28-2c78-1e2709d9f0ad@tuxfamily.org -> patchew/b0619e40-daca-9b28-2c78-1e2709d9f0ad@tuxfamily.org
 * [new tag]         patchew/b604a75c-069c-4a68-b829-380c2c042a0e@SHWDEOPENPSI011.local -> patchew/b604a75c-069c-4a68-b829-380c2c042a0e@SHWDEOPENPSI011.local
 * [new tag]         patchew/cover.1480072972.git.berto@igalia.com -> patchew/cover.1480072972.git.berto@igalia.com
 * [new tag]         patchew/cover.1481121503.git.julian@codesourcery.com -> patchew/cover.1481121503.git.julian@codesourcery.com
 * [new tag]         patchew/cover.1481290956.git.berto@igalia.com -> patchew/cover.1481290956.git.berto@igalia.com
 * [new tag]         patchew/cover.1482143215.git.vpalatin@chromium.org -> patchew/cover.1482143215.git.vpalatin@chromium.org
 * [new tag]         patchew/cover.1482164622.git.vpalatin@chromium.org -> patchew/cover.1482164622.git.vpalatin@chromium.org
 * [new tag]         patchew/cover.1482187052.git.ben@skyportsystems.com -> patchew/cover.1482187052.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1482265908.git.alistair.francis@xilinx.com -> patchew/cover.1482265908.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1483655893.git.pisa@cmp.felk.cvut.cz -> patchew/cover.1483655893.git.pisa@cmp.felk.cvut.cz
 * [new tag]         patchew/cover.1484045952.git.vpalatin@chromium.org -> patchew/cover.1484045952.git.vpalatin@chromium.org
 * [new tag]         patchew/cover.1484593565.git.ben@skyportsystems.com -> patchew/cover.1484593565.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1485155611.git.ben@skyportsystems.com -> patchew/cover.1485155611.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1485250702.git.mjt@msgid.tls.msk.ru -> patchew/cover.1485250702.git.mjt@msgid.tls.msk.ru
 * [new tag]         patchew/cover.1485308342.git.ben@skyportsystems.com -> patchew/cover.1485308342.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1485365834.git.jcody@redhat.com -> patchew/cover.1485365834.git.jcody@redhat.com
 * [new tag]         patchew/cover.1485392617.git.jcody@redhat.com -> patchew/cover.1485392617.git.jcody@redhat.com
 * [new tag]         patchew/cover.1485878688.git.berto@igalia.com -> patchew/cover.1485878688.git.berto@igalia.com
 * [new tag]         patchew/cover.1486285434.git.ben@skyportsystems.com -> patchew/cover.1486285434.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1487088544.git.jcody@redhat.com -> patchew/cover.1487088544.git.jcody@redhat.com
 * [new tag]         patchew/cover.1487139038.git.ben@skyportsystems.com -> patchew/cover.1487139038.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1487224954.git.ben@skyportsystems.com -> patchew/cover.1487224954.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1487286467.git.ben@skyportsystems.com -> patchew/cover.1487286467.git.ben@skyportsystems.com
 * [new tag]         patchew/cover.1487522123.git.balaton@eik.bme.hu -> patchew/cover.1487522123.git.balaton@eik.bme.hu
 * [new tag]         patchew/cover.1488068248.git.balaton@eik.bme.hu -> patchew/cover.1488068248.git.balaton@eik.bme.hu
 * [new tag]         patchew/cover.1488180142.git.jcody@redhat.com -> patchew/cover.1488180142.git.jcody@redhat.com
 * [new tag]         patchew/cover.1488220970.git.jcody@redhat.com -> patchew/cover.1488220970.git.jcody@redhat.com
 * [new tag]         patchew/cover.1488254329.git.jcody@redhat.com -> patchew/cover.1488254329.git.jcody@redhat.com
 * [new tag]         patchew/cover.1488264243.git.mjt@msgid.tls.msk.ru -> patchew/cover.1488264243.git.mjt@msgid.tls.msk.ru
 * [new tag]         patchew/cover.1488296634.git.jcody@redhat.com -> patchew/cover.1488296634.git.jcody@redhat.com
 * [new tag]         patchew/cover.1488504063.git.balaton@eik.bme.hu -> patchew/cover.1488504063.git.balaton@eik.bme.hu
 * [new tag]         patchew/cover.1488665935.git.balaton@eik.bme.hu -> patchew/cover.1488665935.git.balaton@eik.bme.hu
 * [new tag]         patchew/cover.1489462214.git.sam.bobroff@au1.ibm.com -> patchew/cover.1489462214.git.sam.bobroff@au1.ibm.com
 * [new tag]         patchew/cover.1489494746.git.janne.huttunen@nokia.com -> patchew/cover.1489494746.git.janne.huttunen@nokia.com
 * [new tag]         patchew/cover.1490763676.git.sam.bobroff@au1.ibm.com -> patchew/cover.1490763676.git.sam.bobroff@au1.ibm.com
 * [new tag]         patchew/cover.1491349058.git.alistair.francis@xilinx.com -> patchew/cover.1491349058.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1491416061.git.jcody@redhat.com -> patchew/cover.1491416061.git.jcody@redhat.com
 * [new tag]         patchew/cover.1491865973.git.alistair.francis@xilinx.com -> patchew/cover.1491865973.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1491947224.git.alistair.francis@xilinx.com -> patchew/cover.1491947224.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1492384862.git.shorne@gmail.com -> patchew/cover.1492384862.git.shorne@gmail.com
 * [new tag]         patchew/cover.1492721026.git.balaton@eik.bme.hu -> patchew/cover.1492721026.git.balaton@eik.bme.hu
 * [new tag]         patchew/cover.1492770667.git.balaton@eik.bme.hu -> patchew/cover.1492770667.git.balaton@eik.bme.hu
 * [new tag]         patchew/cover.1492787889.git.balaton@eik.bme.hu -> patchew/cover.1492787889.git.balaton@eik.bme.hu
 * [new tag]         patchew/cover.1492986468.git.shorne@gmail.com -> patchew/cover.1492986468.git.shorne@gmail.com
 * [new tag]         patchew/cover.1493191677.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1493191677.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1493593744.git.shorne@gmail.com -> patchew/cover.1493593744.git.shorne@gmail.com
 * [new tag]         patchew/cover.1493858877.git.shorne@gmail.com -> patchew/cover.1493858877.git.shorne@gmail.com
 * [new tag]         patchew/cover.1493933558.git.jcody@redhat.com -> patchew/cover.1493933558.git.jcody@redhat.com
 * [new tag]         patchew/cover.1494140527.git.mjt@msgid.tls.msk.ru -> patchew/cover.1494140527.git.mjt@msgid.tls.msk.ru
 * [new tag]         patchew/cover.1495018956.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1495018956.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1495508197.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1495508197.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1495536228.git.berto@igalia.com -> patchew/cover.1495536228.git.berto@igalia.com
 * [new tag]         patchew/cover.1496132443.git.mprivozn@redhat.com -> patchew/cover.1496132443.git.mprivozn@redhat.com
 * [new tag]         patchew/cover.1496234766.git.riku.voipio@linaro.org -> patchew/cover.1496234766.git.riku.voipio@linaro.org
 * [new tag]         patchew/cover.1496387804.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1496387804.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1496591095.git.mjt@msgid.tls.msk.ru -> patchew/cover.1496591095.git.mjt@msgid.tls.msk.ru
 * [new tag]         patchew/cover.1496746390.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1496746390.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1496755908.git.tgolembi@redhat.com -> patchew/cover.1496755908.git.tgolembi@redhat.com
 * [new tag]         patchew/cover.1496836915.git.tgolembi@redhat.com -> patchew/cover.1496836915.git.tgolembi@redhat.com
 * [new tag]         patchew/cover.1496844254.git.berto@igalia.com -> patchew/cover.1496844254.git.berto@igalia.com
 * [new tag]         patchew/cover.1496994386.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1496994386.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1497240079.git.jcody@redhat.com -> patchew/cover.1497240079.git.jcody@redhat.com
 * [new tag]         patchew/cover.1497272778.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1497272778.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1497276062.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1497276062.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1497279406.git.jcody@redhat.com -> patchew/cover.1497279406.git.jcody@redhat.com
 * [new tag]         patchew/cover.1497444637.git.jcody@redhat.com -> patchew/cover.1497444637.git.jcody@redhat.com
 * [new tag]         patchew/cover.1497619885.git.berto@igalia.com -> patchew/cover.1497619885.git.berto@igalia.com
 * [new tag]         patchew/cover.1497957189.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1497957189.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1498222907.git.tgolembi@redhat.com -> patchew/cover.1498222907.git.tgolembi@redhat.com
 * [new tag]         patchew/cover.1498542538.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1498542538.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1498596157.git.alistair.francis@xilinx.com -> patchew/cover.1498596157.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1498607452.git.alistair.francis@xilinx.com -> patchew/cover.1498607452.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1498654240.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1498654240.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1498727785.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1498727785.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1498756113.git.alistair.francis@xilinx.com -> patchew/cover.1498756113.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1498761179.git.alistair.francis@xilinx.com -> patchew/cover.1498761179.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1498771584.git.tgolembi@redhat.com -> patchew/cover.1498771584.git.tgolembi@redhat.com
 * [new tag]         patchew/cover.1499082038.git.tgolembi@redhat.com -> patchew/cover.1499082038.git.tgolembi@redhat.com
 * [new tag]         patchew/cover.1499250206.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1499250206.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.1499276048.git.alistair.francis@xilinx.com -> patchew/cover.1499276048.git.alistair.francis@xilinx.com
 * [new tag]         patchew/cover.1499329674.git.maozy.fnst@cn.fujitsu.com -> patchew/cover.1499329674.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/cover.e0862272629975a2a7296103cf5d5f8de70abc01.1497035841.git-series.knut.omang@oracle.com -> patchew/cover.e0862272629975a2a7296103cf5d5f8de70abc01.1497035841.git-series.knut.omang@oracle.com
 * [new tag]         patchew/d59c2f6ad6c1da8b9b3c7f357c94a7122ccfc55a.1492544096.git.jcody@redhat.com -> patchew/d59c2f6ad6c1da8b9b3c7f357c94a7122ccfc55a.1492544096.git.jcody@redhat.com
 * [new tag]         patchew/d5b487b58c2c6b3e68de0e858b84877434f05c76.1496843678.git.jcody@redhat.com -> patchew/d5b487b58c2c6b3e68de0e858b84877434f05c76.1496843678.git.jcody@redhat.com
 * [new tag]         patchew/d85f9aef28b70034bc698ef53543cd0f5ac064e4.1498967158.git.ben@skyportsystems.com -> patchew/d85f9aef28b70034bc698ef53543cd0f5ac064e4.1498967158.git.ben@skyportsystems.com
 * [new tag]         patchew/dde6f82b-d997-4645-b75e-61b80d76594b@ONE.local -> patchew/dde6f82b-d997-4645-b75e-61b80d76594b@ONE.local
 * [new tag]         patchew/df785b3fbff46e0d5b81aa951737ae1cd64dd9d0.1495862779.git.maozy.fnst@cn.fujitsu.com -> patchew/df785b3fbff46e0d5b81aa951737ae1cd64dd9d0.1495862779.git.maozy.fnst@cn.fujitsu.com
 * [new tag]         patchew/e4eb55c2-bac0-01f4-267f-19e70aa9b0de@tuxfamily.org -> patchew/e4eb55c2-bac0-01f4-267f-19e70aa9b0de@tuxfamily.org
 * [new tag]         patchew/f4a22cdebdd0bca6a13a43a2a6deead7f2ec4bb3.1493906281.git.pkrempa@redhat.com -> patchew/f4a22cdebdd0bca6a13a43a2a6deead7f2ec4bb3.1493906281.git.pkrempa@redhat.com
 * [new tag]         patchew/mvmh92ouqtw.fsf@suse.de -> patchew/mvmh92ouqtw.fsf@suse.de
 * [new tag]         patchew/mvminn3t1fq.fsf@suse.de -> patchew/mvminn3t1fq.fsf@suse.de
fatal: Cannot update paths and switch to branch 'test' at the same time.
Did you intend to checkout 'origin/patchew/20170706163828.24082-1-pbonzini@redhat.com' which can not be resolved as commit?
Traceback (most recent call last):
  File "/home/fam/bin/patchew", line 440, in test_one
    git_clone_repo(clone, r["repo"], r["head"], logf)
  File "/home/fam/bin/patchew", line 53, in git_clone_repo
    cwd=clone)
  File "/usr/lib64/python3.5/subprocess.py", line 271, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['git', 'checkout', 'origin/patchew/20170706163828.24082-1-pbonzini@redhat.com', '-b', 'test']' returned non-zero exit status 128



---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part
  2017-07-06 23:48 ` [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part no-reply
@ 2017-07-07  0:06   ` Fam Zheng
  0 siblings, 0 replies; 34+ messages in thread
From: Fam Zheng @ 2017-07-07  0:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini, stefanha, qemu-block

On Thu, 07/06 16:48, no-reply@patchew.org wrote:
> fatal: Cannot update paths and switch to branch 'test' at the same time.
> Did you intend to checkout 'origin/patchew/20170706163828.24082-1-pbonzini@redhat.com' which can not be resolved as commit?
> Traceback (most recent call last):
>   File "/home/fam/bin/patchew", line 440, in test_one
>     git_clone_repo(clone, r["repo"], r["head"], logf)
>   File "/home/fam/bin/patchew", line 53, in git_clone_repo
>     cwd=clone)
>   File "/usr/lib64/python3.5/subprocess.py", line 271, in check_call
>     raise CalledProcessError(retcode, cmd)
> subprocess.CalledProcessError: Command '['git', 'checkout', 'origin/patchew/20170706163828.24082-1-pbonzini@redhat.com', '-b', 'test']' returned non-zero exit status 128

Ignore this please, patchew is recovering from a bad state.

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety Paolo Bonzini
  2017-07-06 16:51   ` Eric Blake
@ 2017-07-10 13:21   ` Stefan Hajnoczi
  2017-07-10 16:16     ` Paolo Bonzini
  1 sibling, 1 reply; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 13:21 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 892 bytes --]

On Thu, Jul 06, 2017 at 06:38:18PM +0200, Paolo Bonzini wrote:
> Code refactoring only.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  block/write-threshold.c | 28 ++++++++++++++++------------
>  1 file changed, 16 insertions(+), 12 deletions(-)
> 
> diff --git a/block/write-threshold.c b/block/write-threshold.c
> index 0bd1a01c86..c8ebc32b4d 100644
> --- a/block/write-threshold.c
> +++ b/block/write-threshold.c
> @@ -37,18 +37,22 @@ static void write_threshold_disable(BlockDriverState *bs)
>      }
>  }
>  
> +static uint64_t exceeded_amount(const BdrvTrackedRequest *req,
> +                                uint64_t thres)

Not a reason to respin, but I would prefer a more specific name so the
intent of the code is easier to understand: exceeded_threshold() instead
of exceeded_amount().

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe Paolo Bonzini
  2017-07-06 16:52   ` Eric Blake
@ 2017-07-10 15:42   ` Stefan Hajnoczi
  1 sibling, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 15:42 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 676 bytes --]

On Thu, Jul 06, 2017 at 06:38:19PM +0200, Paolo Bonzini wrote:
> For simplicity, use bdrv_drained_begin/end to avoid concurrent
> writes to the write threshold, or reading it while it is being set.
> qmp_block_set_write_threshold is protected by the BQL.

I find the commit message misleading: the write threshold code is not
being made thread-safe.

The commit description helps to clear this up, but we need to avoid
thinking "write threshold is thread-safe" because that would lead to
races between bdrv_write_threshold_set() callers.

Perhaps:

  block: protect write threshold qmp cmd from concurrent requests

Anyway:

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 04/11] block: make before-write notifiers thread-safe
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 04/11] block: make before-write notifiers thread-safe Paolo Bonzini
@ 2017-07-10 15:50   ` Stefan Hajnoczi
  0 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 15:50 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 618 bytes --]

On Thu, Jul 06, 2017 at 06:38:21PM +0200, Paolo Bonzini wrote:
> Reads access the list in RCU style, so be careful to avoid use-after-free
> scenarios in the backup block job.  Apart from this, all that's needed
> is protecting updates with a mutex.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  block/backup.c            | 17 +++++++++++++----
>  block/io.c                | 12 ++++++++++++
>  block/write-threshold.c   |  2 +-
>  include/block/block_int.h | 16 ++++++++++++++++
>  4 files changed, 42 insertions(+), 5 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 03/11] util: use RCU accessors for notifiers
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 03/11] util: use RCU accessors for notifiers Paolo Bonzini
@ 2017-07-10 15:52   ` Stefan Hajnoczi
  2017-07-10 16:06     ` Paolo Bonzini
  0 siblings, 1 reply; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 15:52 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 427 bytes --]

On Thu, Jul 06, 2017 at 06:38:20PM +0200, Paolo Bonzini wrote:
>  void notifier_list_notify(NotifierList *list, void *data)
>  {
>      Notifier *notifier, *next;
>  
> -    QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
> +    QLIST_FOREACH_SAFE_RCU(notifier, &list->notifiers, node, next) {
>          notifier->notify(notifier, data);
>      }
>  }

Who calls rcu_read_lock() or is it unnecessary?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 05/11] block-backup: add reqs_lock
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 05/11] block-backup: add reqs_lock Paolo Bonzini
@ 2017-07-10 15:57   ` Stefan Hajnoczi
  0 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 15:57 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 459 bytes --]

On Thu, Jul 06, 2017 at 06:38:22PM +0200, Paolo Bonzini wrote:
> Protect the list of inflight reqs and the CoQueues for dependent
> requests.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  block/backup.c               | 20 +++++++++++++++-----
>  block/replication.c          |  2 +-
>  include/block/block_backup.h |  2 +-
>  3 files changed, 17 insertions(+), 7 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 06/11] block: add a few more notes on locking
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 06/11] block: add a few more notes on locking Paolo Bonzini
@ 2017-07-10 15:57   ` Stefan Hajnoczi
  0 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 15:57 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 270 bytes --]

On Thu, Jul 06, 2017 at 06:38:23PM +0200, Paolo Bonzini wrote:
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  include/block/block_int.h | 10 +++++++---
>  1 file changed, 7 insertions(+), 3 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 07/11] block: do not acquire AioContext in check_to_replace_node
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 07/11] block: do not acquire AioContext in check_to_replace_node Paolo Bonzini
@ 2017-07-10 15:58   ` Stefan Hajnoczi
  0 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 15:58 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 303 bytes --]

On Thu, Jul 06, 2017 at 06:38:24PM +0200, Paolo Bonzini wrote:
> The only caller does it already.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  block.c | 13 +++----------
>  1 file changed, 3 insertions(+), 10 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 08/11] block: drain I/O around key management
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 08/11] block: drain I/O around key management Paolo Bonzini
@ 2017-07-10 16:01   ` Stefan Hajnoczi
  0 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 16:01 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 333 bytes --]

On Thu, Jul 06, 2017 at 06:38:25PM +0200, Paolo Bonzini wrote:
> The resulting drained section is a replacement for the AioContext.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  blockdev.c | 8 ++------
>  1 file changed, 2 insertions(+), 6 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 03/11] util: use RCU accessors for notifiers
  2017-07-10 15:52   ` Stefan Hajnoczi
@ 2017-07-10 16:06     ` Paolo Bonzini
  2017-07-11  9:45       ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
  0 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-10 16:06 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 1262 bytes --]

On 10/07/2017 17:52, Stefan Hajnoczi wrote:
> On Thu, Jul 06, 2017 at 06:38:20PM +0200, Paolo Bonzini wrote:
>>  void notifier_list_notify(NotifierList *list, void *data)
>>  {
>>      Notifier *notifier, *next;
>>  
>> -    QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
>> +    QLIST_FOREACH_SAFE_RCU(notifier, &list->notifiers, node, next) {
>>          notifier->notify(notifier, data);
>>      }
>>  }
> 
> Who calls rcu_read_lock() or is it unnecessary?

It depends.

If the notifier is really only used within the BQL, it's unnecessary.

If the notifier's readers want to protect the notifier with RCU, it's up
to the callers indeed.

However, RCU accessors can also be used with any API that has the same
contract as synchronize_rcu, i.e. it stops until all concurrent readers
complete, no matter how "readers" are defined.

In the next patch, for example, synchronize_rcu's role is taken by
bdrv_drain (which is a superset of synchronize_rcu, since it also blocks
new incoming readers).

For a similar example in Linux, see drivers/vhost/net.c.  It replaces
rcu_read_lock/unlock with "always run readers for a workqueue", and
synchronize_rcu with vhost_poll_flush (which calls vhost_work_flush).

Paolo


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety
  2017-07-10 13:21   ` Stefan Hajnoczi
@ 2017-07-10 16:16     ` Paolo Bonzini
  2017-07-10 16:22       ` Eric Blake
  0 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-10 16:16 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 1074 bytes --]

On 10/07/2017 15:21, Stefan Hajnoczi wrote:
> On Thu, Jul 06, 2017 at 06:38:18PM +0200, Paolo Bonzini wrote:
>> Code refactoring only.
>>
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>  block/write-threshold.c | 28 ++++++++++++++++------------
>>  1 file changed, 16 insertions(+), 12 deletions(-)
>>
>> diff --git a/block/write-threshold.c b/block/write-threshold.c
>> index 0bd1a01c86..c8ebc32b4d 100644
>> --- a/block/write-threshold.c
>> +++ b/block/write-threshold.c
>> @@ -37,18 +37,22 @@ static void write_threshold_disable(BlockDriverState *bs)
>>      }
>>  }
>>  
>> +static uint64_t exceeded_amount(const BdrvTrackedRequest *req,
>> +                                uint64_t thres)
> 
> Not a reason to respin, but I would prefer a more specific name so the
> intent of the code is easier to understand: exceeded_threshold() instead
> of exceeded_amount().
> 
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

It's the amount by which the request exceeds threshold...  Not sure what
name would be best.

Paolo


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety
  2017-07-10 16:16     ` Paolo Bonzini
@ 2017-07-10 16:22       ` Eric Blake
  0 siblings, 0 replies; 34+ messages in thread
From: Eric Blake @ 2017-07-10 16:22 UTC (permalink / raw)
  To: Paolo Bonzini, Stefan Hajnoczi; +Cc: famz, qemu-devel, qemu-block

[-- Attachment #1: Type: text/plain, Size: 1294 bytes --]

On 07/10/2017 11:16 AM, Paolo Bonzini wrote:
> On 10/07/2017 15:21, Stefan Hajnoczi wrote:
>> On Thu, Jul 06, 2017 at 06:38:18PM +0200, Paolo Bonzini wrote:
>>> Code refactoring only.
>>>
>>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>>> ---
>>>  block/write-threshold.c | 28 ++++++++++++++++------------
>>>  1 file changed, 16 insertions(+), 12 deletions(-)
>>>
>>> diff --git a/block/write-threshold.c b/block/write-threshold.c
>>> index 0bd1a01c86..c8ebc32b4d 100644
>>> --- a/block/write-threshold.c
>>> +++ b/block/write-threshold.c
>>> @@ -37,18 +37,22 @@ static void write_threshold_disable(BlockDriverState *bs)
>>>      }
>>>  }
>>>  
>>> +static uint64_t exceeded_amount(const BdrvTrackedRequest *req,
>>> +                                uint64_t thres)
>>
>> Not a reason to respin, but I would prefer a more specific name so the
>> intent of the code is easier to understand: exceeded_threshold() instead
>> of exceeded_amount().
>>
>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> 
> It's the amount by which the request exceeds threshold...  Not sure what
> name would be best.

threshold_overage ?

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 11/11] block/snapshot: do not take AioContext lock
  2017-07-06 16:38 ` [Qemu-devel] [PATCH 11/11] block/snapshot: do not take AioContext lock Paolo Bonzini
@ 2017-07-10 16:24   ` Stefan Hajnoczi
  2017-07-10 16:27     ` Paolo Bonzini
  0 siblings, 1 reply; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 16:24 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 2769 bytes --]

On Thu, Jul 06, 2017 at 06:38:28PM +0200, Paolo Bonzini wrote:
> Snapshots are only created/destroyed/loaded under the BQL, while no
> other I/O is happening.  Snapshot information could be accessed while
> other I/O is happening, but also under the BQL so they cannot be
> modified concurrently.  The AioContext lock is overkill.  If needed,
> in the future the BQL could be split to a separate lock covering all
> snapshot operations, and the create/destroy/goto callbacks changed
> to run in a coroutine (so the driver can do mutual exclusion as usual).
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  block/snapshot.c          | 28 +---------------------------
>  blockdev.c                | 43 ++++++++++++-------------------------------
>  hmp.c                     |  7 -------
>  include/block/block_int.h |  5 +++++
>  include/block/snapshot.h  |  4 +---
>  migration/savevm.c        | 22 ----------------------
>  monitor.c                 | 10 ++--------
>  7 files changed, 21 insertions(+), 98 deletions(-)
> 
> diff --git a/block/snapshot.c b/block/snapshot.c
> index a46564e7b7..08c59d6166 100644
> --- a/block/snapshot.c
> +++ b/block/snapshot.c
> @@ -384,9 +384,7 @@ int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs,
>  }
>  
>  
> -/* Group operations. All block drivers are involved.
> - * These functions will properly handle dataplane (take aio_context_acquire
> - * when appropriate for appropriate block drivers) */
> +/* Group operations. All block drivers are involved.  */

Perhaps "These functions must be called under the BQL"?

My concern with this patch series in general is that it will lead to
bugs due to inconsistencies and lack of locking documentation:

bdrv_all_delete_snapshot() is called by hmp_delvm() outside a
bdrv_drained_begin() region.  That's okay because internally
bdrv_snapshot_delete() will call bdrv_drained_begin() for the crucial
operations that require a quiesced BDS.

Compare that with bdrv_all_goto_snapshot(), which is called inside a
bdrv_drained_begin() region by load_snapshot().  Internally it doesn't
drain.

Previously the bdrv_all_*() functions behaved consistently.  We could
say that they will acquire AioContexts themselves.  Now they behave
inconsistently and while the code currently happens to work, there is no
structure that will keep it working as it is modified.

I think we're reaching a point where every BlockDriver callback and
every bdrv_*() function needs the following information:

1. Must be called under BQL?
2. Can I/O requests be in flight?
3. Is it thread-safe?

Otherwise it will be a nightmare to modify the code since these
constraints are not enforced by the compiler and undocumented.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part
  2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
                   ` (11 preceding siblings ...)
  2017-07-06 23:48 ` [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part no-reply
@ 2017-07-10 16:25 ` Stefan Hajnoczi
  12 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-10 16:25 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 525 bytes --]

On Thu, Jul 06, 2017 at 06:38:17PM +0200, Paolo Bonzini wrote:
> Here, patches 1-6 make the remaining part of the block layer thread safe.
> Patches 7-11 start removing aio_context_acquire/release, so the line
> count goes down instead of up.
> 
> This is the penultimate series.  The remaining part makes virtio-blk,
> virtio-scsi and block jobs thread safe, so that the AioContext lock
> can go away altogether.

Looks promising.  I replied to the last patch with my overall concern
about this series.

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [PATCH 11/11] block/snapshot: do not take AioContext lock
  2017-07-10 16:24   ` Stefan Hajnoczi
@ 2017-07-10 16:27     ` Paolo Bonzini
  2017-07-11  9:43       ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
  0 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-10 16:27 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, famz, qemu-block

[-- Attachment #1: Type: text/plain, Size: 3308 bytes --]

On 10/07/2017 18:24, Stefan Hajnoczi wrote:
> On Thu, Jul 06, 2017 at 06:38:28PM +0200, Paolo Bonzini wrote:
>> Snapshots are only created/destroyed/loaded under the BQL, while no
>> other I/O is happening.  Snapshot information could be accessed while
>> other I/O is happening, but also under the BQL so they cannot be
>> modified concurrently.  The AioContext lock is overkill.  If needed,
>> in the future the BQL could be split to a separate lock covering all
>> snapshot operations, and the create/destroy/goto callbacks changed
>> to run in a coroutine (so the driver can do mutual exclusion as usual).
>>
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>  block/snapshot.c          | 28 +---------------------------
>>  blockdev.c                | 43 ++++++++++++-------------------------------
>>  hmp.c                     |  7 -------
>>  include/block/block_int.h |  5 +++++
>>  include/block/snapshot.h  |  4 +---
>>  migration/savevm.c        | 22 ----------------------
>>  monitor.c                 | 10 ++--------
>>  7 files changed, 21 insertions(+), 98 deletions(-)
>>
>> diff --git a/block/snapshot.c b/block/snapshot.c
>> index a46564e7b7..08c59d6166 100644
>> --- a/block/snapshot.c
>> +++ b/block/snapshot.c
>> @@ -384,9 +384,7 @@ int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs,
>>  }
>>  
>>  
>> -/* Group operations. All block drivers are involved.
>> - * These functions will properly handle dataplane (take aio_context_acquire
>> - * when appropriate for appropriate block drivers) */
>> +/* Group operations. All block drivers are involved.  */
> 
> Perhaps "These functions must be called under the BQL"?
> 
> My concern with this patch series in general is that it will lead to
> bugs due to inconsistencies and lack of locking documentation:
> 
> bdrv_all_delete_snapshot() is called by hmp_delvm() outside a
> bdrv_drained_begin() region.  That's okay because internally
> bdrv_snapshot_delete() will call bdrv_drained_begin() for the crucial
> operations that require a quiesced BDS.
> 
> Compare that with bdrv_all_goto_snapshot(), which is called inside a
> bdrv_drained_begin() region by load_snapshot().  Internally it doesn't
> drain.

I think generally we should move bdrv_drained_begin/end calls _out_ of
block.c and into qmp_*.  If you agree, I can add this before this patch.

> Previously the bdrv_all_*() functions behaved consistently.  We could
> say that they will acquire AioContexts themselves.  Now they behave
> inconsistently and while the code currently happens to work, there is no
> structure that will keep it working as it is modified.
> 
> I think we're reaching a point where every BlockDriver callback and
> every bdrv_*() function needs the following information:
> 
> 1. Must be called under BQL?
> 2. Can I/O requests be in flight?
> 3. Is it thread-safe?
> 
> Otherwise it will be a nightmare to modify the code since these
> constraints are not enforced by the compiler and undocumented.

Good point.  Are (1) and (3) different ways to say the same thing or do
you have other differences in mind?

More long term, I think snapshot functions should be changed to run in
coroutines.  This way they can just take the driver CoMutex.

Paolo


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [Qemu-block] [PATCH 11/11] block/snapshot: do not take AioContext lock
  2017-07-10 16:27     ` Paolo Bonzini
@ 2017-07-11  9:43       ` Stefan Hajnoczi
  2017-07-11  9:48         ` Paolo Bonzini
  0 siblings, 1 reply; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-11  9:43 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Stefan Hajnoczi, famz, qemu-devel, qemu-block

[-- Attachment #1: Type: text/plain, Size: 3884 bytes --]

On Mon, Jul 10, 2017 at 06:27:27PM +0200, Paolo Bonzini wrote:
> On 10/07/2017 18:24, Stefan Hajnoczi wrote:
> > On Thu, Jul 06, 2017 at 06:38:28PM +0200, Paolo Bonzini wrote:
> >> Snapshots are only created/destroyed/loaded under the BQL, while no
> >> other I/O is happening.  Snapshot information could be accessed while
> >> other I/O is happening, but also under the BQL so they cannot be
> >> modified concurrently.  The AioContext lock is overkill.  If needed,
> >> in the future the BQL could be split to a separate lock covering all
> >> snapshot operations, and the create/destroy/goto callbacks changed
> >> to run in a coroutine (so the driver can do mutual exclusion as usual).
> >>
> >> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> >> ---
> >>  block/snapshot.c          | 28 +---------------------------
> >>  blockdev.c                | 43 ++++++++++++-------------------------------
> >>  hmp.c                     |  7 -------
> >>  include/block/block_int.h |  5 +++++
> >>  include/block/snapshot.h  |  4 +---
> >>  migration/savevm.c        | 22 ----------------------
> >>  monitor.c                 | 10 ++--------
> >>  7 files changed, 21 insertions(+), 98 deletions(-)
> >>
> >> diff --git a/block/snapshot.c b/block/snapshot.c
> >> index a46564e7b7..08c59d6166 100644
> >> --- a/block/snapshot.c
> >> +++ b/block/snapshot.c
> >> @@ -384,9 +384,7 @@ int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs,
> >>  }
> >>  
> >>  
> >> -/* Group operations. All block drivers are involved.
> >> - * These functions will properly handle dataplane (take aio_context_acquire
> >> - * when appropriate for appropriate block drivers) */
> >> +/* Group operations. All block drivers are involved.  */
> > 
> > Perhaps "These functions must be called under the BQL"?
> > 
> > My concern with this patch series in general is that it will lead to
> > bugs due to inconsistencies and lack of locking documentation:
> > 
> > bdrv_all_delete_snapshot() is called by hmp_delvm() outside a
> > bdrv_drained_begin() region.  That's okay because internally
> > bdrv_snapshot_delete() will call bdrv_drained_begin() for the crucial
> > operations that require a quiesced BDS.
> > 
> > Compare that with bdrv_all_goto_snapshot(), which is called inside a
> > bdrv_drained_begin() region by load_snapshot().  Internally it doesn't
> > drain.
> 
> I think generally we should move bdrv_drained_begin/end calls _out_ of
> block.c and into qmp_*.  If you agree, I can add this before this patch.

Yes, I think drained regions should be in callers.  That way callers can
perform multiple operations in sequence and the result is atomic.

> > Previously the bdrv_all_*() functions behaved consistently.  We could
> > say that they will acquire AioContexts themselves.  Now they behave
> > inconsistently and while the code currently happens to work, there is no
> > structure that will keep it working as it is modified.
> > 
> > I think we're reaching a point where every BlockDriver callback and
> > every bdrv_*() function needs the following information:
> > 
> > 1. Must be called under BQL?
> > 2. Can I/O requests be in flight?
> > 3. Is it thread-safe?
> > 
> > Otherwise it will be a nightmare to modify the code since these
> > constraints are not enforced by the compiler and undocumented.
> 
> Good point.  Are (1) and (3) different ways to say the same thing or do
> you have other differences in mind?

There is a difference between (1) and (3).  If a function is thread-safe
then callers can invoke it without any constraints.  If a function
requires a specific lock to be held then that it puts a constraint on
the caller.

We do have thread-safe functions in the block layer: simple functions
that fetch a BDS field atomically.  There is no need to hold the BQL for
them.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [Qemu-block] [PATCH 03/11] util: use RCU accessors for notifiers
  2017-07-10 16:06     ` Paolo Bonzini
@ 2017-07-11  9:45       ` Stefan Hajnoczi
  0 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-11  9:45 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Stefan Hajnoczi, famz, qemu-devel, qemu-block

[-- Attachment #1: Type: text/plain, Size: 1435 bytes --]

On Mon, Jul 10, 2017 at 06:06:32PM +0200, Paolo Bonzini wrote:
> On 10/07/2017 17:52, Stefan Hajnoczi wrote:
> > On Thu, Jul 06, 2017 at 06:38:20PM +0200, Paolo Bonzini wrote:
> >>  void notifier_list_notify(NotifierList *list, void *data)
> >>  {
> >>      Notifier *notifier, *next;
> >>  
> >> -    QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
> >> +    QLIST_FOREACH_SAFE_RCU(notifier, &list->notifiers, node, next) {
> >>          notifier->notify(notifier, data);
> >>      }
> >>  }
> > 
> > Who calls rcu_read_lock() or is it unnecessary?
> 
> It depends.
> 
> If the notifier is really only used within the BQL, it's unnecessary.
> 
> If the notifier's readers want to protect the notifier with RCU, it's up
> to the callers indeed.
> 
> However, RCU accessors can also be used with any API that has the same
> contract as synchronize_rcu, i.e. it stops until all concurrent readers
> complete, no matter how "readers" are defined.
> 
> In the next patch, for example, synchronize_rcu's role is taken by
> bdrv_drain (which is a superset of synchronize_rcu, since it also blocks
> new incoming readers).
> 
> For a similar example in Linux, see drivers/vhost/net.c.  It replaces
> rcu_read_lock/unlock with "always run readers for a workqueue", and
> synchronize_rcu with vhost_poll_flush (which calls vhost_work_flush).

Thanks for the explanation.  I see how that is safe.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [Qemu-block] [PATCH 11/11] block/snapshot: do not take AioContext lock
  2017-07-11  9:43       ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
@ 2017-07-11  9:48         ` Paolo Bonzini
  2017-07-12 10:42           ` Stefan Hajnoczi
  0 siblings, 1 reply; 34+ messages in thread
From: Paolo Bonzini @ 2017-07-11  9:48 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: Stefan Hajnoczi, famz, qemu-devel, qemu-block

[-- Attachment #1: Type: text/plain, Size: 1042 bytes --]

On 11/07/2017 11:43, Stefan Hajnoczi wrote:
>>>
>>> 1. Must be called under BQL?
>>> 2. Can I/O requests be in flight?
>>> 3. Is it thread-safe?
>>>
>>> Otherwise it will be a nightmare to modify the code since these
>>> constraints are not enforced by the compiler and undocumented.
>> Good point.  Are (1) and (3) different ways to say the same thing or do
>> you have other differences in mind?
> There is a difference between (1) and (3).  If a function is thread-safe
> then callers can invoke it without any constraints.  If a function
> requires a specific lock to be held then that it puts a constraint on
> the caller.
> 
> We do have thread-safe functions in the block layer: simple functions
> that fetch a BDS field atomically.  There is no need to hold the BQL for
> them.

Ok, so we are in (somewhat violent) agreement.  "It's not thread-safe"
pretty much means "must be called under BQL".

I look forward to extending Marc-André's -Wthread-safety experiments to
cover bdrv_drained_begin/end!

Paolo


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [Qemu-devel] [Qemu-block] [PATCH 11/11] block/snapshot: do not take AioContext lock
  2017-07-11  9:48         ` Paolo Bonzini
@ 2017-07-12 10:42           ` Stefan Hajnoczi
  0 siblings, 0 replies; 34+ messages in thread
From: Stefan Hajnoczi @ 2017-07-12 10:42 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Stefan Hajnoczi, famz, qemu-devel, qemu-block

[-- Attachment #1: Type: text/plain, Size: 1172 bytes --]

On Tue, Jul 11, 2017 at 11:48:02AM +0200, Paolo Bonzini wrote:
> On 11/07/2017 11:43, Stefan Hajnoczi wrote:
> >>>
> >>> 1. Must be called under BQL?
> >>> 2. Can I/O requests be in flight?
> >>> 3. Is it thread-safe?
> >>>
> >>> Otherwise it will be a nightmare to modify the code since these
> >>> constraints are not enforced by the compiler and undocumented.
> >> Good point.  Are (1) and (3) different ways to say the same thing or do
> >> you have other differences in mind?
> > There is a difference between (1) and (3).  If a function is thread-safe
> > then callers can invoke it without any constraints.  If a function
> > requires a specific lock to be held then that it puts a constraint on
> > the caller.
> > 
> > We do have thread-safe functions in the block layer: simple functions
> > that fetch a BDS field atomically.  There is no need to hold the BQL for
> > them.
> 
> Ok, so we are in (somewhat violent) agreement.  "It's not thread-safe"
> pretty much means "must be called under BQL".
> 
> I look forward to extending Marc-André's -Wthread-safety experiments to
> cover bdrv_drained_begin/end!

Sounds good :).

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2017-07-12 10:42 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-06 16:38 [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part Paolo Bonzini
2017-07-06 16:38 ` [Qemu-devel] [PATCH 01/11] block: prepare write threshold code for thread safety Paolo Bonzini
2017-07-06 16:51   ` Eric Blake
2017-07-10 13:21   ` Stefan Hajnoczi
2017-07-10 16:16     ` Paolo Bonzini
2017-07-10 16:22       ` Eric Blake
2017-07-06 16:38 ` [Qemu-devel] [PATCH 02/11] block: make write-threshold thread-safe Paolo Bonzini
2017-07-06 16:52   ` Eric Blake
2017-07-10 15:42   ` Stefan Hajnoczi
2017-07-06 16:38 ` [Qemu-devel] [PATCH 03/11] util: use RCU accessors for notifiers Paolo Bonzini
2017-07-10 15:52   ` Stefan Hajnoczi
2017-07-10 16:06     ` Paolo Bonzini
2017-07-11  9:45       ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-07-06 16:38 ` [Qemu-devel] [PATCH 04/11] block: make before-write notifiers thread-safe Paolo Bonzini
2017-07-10 15:50   ` Stefan Hajnoczi
2017-07-06 16:38 ` [Qemu-devel] [PATCH 05/11] block-backup: add reqs_lock Paolo Bonzini
2017-07-10 15:57   ` Stefan Hajnoczi
2017-07-06 16:38 ` [Qemu-devel] [PATCH 06/11] block: add a few more notes on locking Paolo Bonzini
2017-07-10 15:57   ` Stefan Hajnoczi
2017-07-06 16:38 ` [Qemu-devel] [PATCH 07/11] block: do not acquire AioContext in check_to_replace_node Paolo Bonzini
2017-07-10 15:58   ` Stefan Hajnoczi
2017-07-06 16:38 ` [Qemu-devel] [PATCH 08/11] block: drain I/O around key management Paolo Bonzini
2017-07-10 16:01   ` Stefan Hajnoczi
2017-07-06 16:38 ` [Qemu-devel] [PATCH 09/11] block/replication: do not acquire AioContext Paolo Bonzini
2017-07-06 16:38 ` [Qemu-devel] [PATCH 10/11] block: do not take AioContext around reopen Paolo Bonzini
2017-07-06 16:38 ` [Qemu-devel] [PATCH 11/11] block/snapshot: do not take AioContext lock Paolo Bonzini
2017-07-10 16:24   ` Stefan Hajnoczi
2017-07-10 16:27     ` Paolo Bonzini
2017-07-11  9:43       ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-07-11  9:48         ` Paolo Bonzini
2017-07-12 10:42           ` Stefan Hajnoczi
2017-07-06 23:48 ` [Qemu-devel] [RFC PATCH 00/11] Block layer thread-safety, next part no-reply
2017-07-07  0:06   ` Fam Zheng
2017-07-10 16:25 ` Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.