From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43326) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8BEK-0003tM-J0 for qemu-devel@nongnu.org; Thu, 25 Jun 2015 13:46:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z8BEG-0007dc-JV for qemu-devel@nongnu.org; Thu, 25 Jun 2015 13:46:28 -0400 Received: from e39.co.us.ibm.com ([32.97.110.160]:35040) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8BEG-0007dY-BS for qemu-devel@nongnu.org; Thu, 25 Jun 2015 13:46:24 -0400 Received: from /spool/local by e39.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 25 Jun 2015 11:46:23 -0600 Received: from b01cxnp22036.gho.pok.ibm.com (b01cxnp22036.gho.pok.ibm.com [9.57.198.26]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id C1669C90042 for ; Thu, 25 Jun 2015 13:37:26 -0400 (EDT) Received: from d01av05.pok.ibm.com (d01av05.pok.ibm.com [9.56.224.195]) by b01cxnp22036.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t5PHkKLR57737464 for ; Thu, 25 Jun 2015 17:46:20 GMT Received: from d01av05.pok.ibm.com (localhost [127.0.0.1]) by d01av05.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t5PHkJQq002872 for ; Thu, 25 Jun 2015 13:46:20 -0400 From: "Jason J. Herne" Date: Thu, 25 Jun 2015 13:46:17 -0400 Message-Id: <1435254377-13322-6-git-send-email-jjherne@linux.vnet.ibm.com> In-Reply-To: <1435254377-13322-1-git-send-email-jjherne@linux.vnet.ibm.com> References: <1435254377-13322-1-git-send-email-jjherne@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v3 5/5] migration: Disambiguate MAX_THROTTLE List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: afaerber@suse.de, amit.shah@redhat.com, dgilbert@redhat.com, borntraeger@de.ibm.com, quintela@redhat.com, qemu-devel@nongnu.org Cc: "Jason J. Herne" Migration has a define for MAX_THROTTLE. Update comment to clarify that this is used for throttling transfer speed. Hopefully this will prevent it from being confused with a guest cpu throttling entity. Signed-off-by: Jason J. Herne --- migration/migration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration/migration.c b/migration/migration.c index b29450a..b9faeb0 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -27,7 +27,7 @@ #include "trace.h" #include "qom/cpu.h" -#define MAX_THROTTLE (32 << 20) /* Migration speed throttling */ +#define MAX_THROTTLE (32 << 20) /* Migration transfer speed throttling */ /* Amount of time to allocate to each "chunk" of bandwidth-throttled * data. */ -- 1.9.1