From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZWmp9-000179-Q5 for qemu-devel@nongnu.org; Tue, 01 Sep 2015 10:46:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZWmp7-0001aR-4N for qemu-devel@nongnu.org; Tue, 01 Sep 2015 10:46:11 -0400 Received: from e18.ny.us.ibm.com ([129.33.205.208]:42339) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZWmp6-0001ZB-Gb for qemu-devel@nongnu.org; Tue, 01 Sep 2015 10:46:08 -0400 Received: from /spool/local by e18.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 1 Sep 2015 10:46:08 -0400 Received: from b01cxnp22034.gho.pok.ibm.com (b01cxnp22034.gho.pok.ibm.com [9.57.198.24]) by d01dlp01.pok.ibm.com (Postfix) with ESMTP id ECBDE38C8056 for ; Tue, 1 Sep 2015 10:46:05 -0400 (EDT) Received: from d01av05.pok.ibm.com (d01av05.pok.ibm.com [9.56.224.195]) by b01cxnp22034.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t81Ek5Kv48562282 for ; Tue, 1 Sep 2015 14:46:05 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 t81Ek5ck026897 for ; Tue, 1 Sep 2015 10:46:05 -0400 From: "Jason J. Herne" Date: Tue, 1 Sep 2015 10:46:03 -0400 Message-Id: <1441118763-17510-6-git-send-email-jjherne@linux.vnet.ibm.com> In-Reply-To: <1441118763-17510-1-git-send-email-jjherne@linux.vnet.ibm.com> References: <1441118763-17510-1-git-send-email-jjherne@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v5 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, pbonzini@redhat.com 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 Reviewed-by: Dr. David Alan Gilbert --- 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