From patchwork Sun Jan 22 07:17:51 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pankaj Gupta X-Patchwork-Id: 9530803 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id E31786042F for ; Sun, 22 Jan 2017 07:18:31 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C9D1D28346 for ; Sun, 22 Jan 2017 07:18:31 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BB3D528356; Sun, 22 Jan 2017 07:18:31 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 66F3B28346 for ; Sun, 22 Jan 2017 07:18:30 +0000 (UTC) Received: from localhost ([::1]:34705 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVCQ1-0003UA-Ev for patchwork-qemu-devel@patchwork.kernel.org; Sun, 22 Jan 2017 02:18:29 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37580) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVCPf-0003Tu-7n for qemu-devel@nongnu.org; Sun, 22 Jan 2017 02:18:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVCPW-00055n-Ku for qemu-devel@nongnu.org; Sun, 22 Jan 2017 02:18:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:37936) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVCPW-00055d-F4 for qemu-devel@nongnu.org; Sun, 22 Jan 2017 02:17:58 -0500 Received: from smtp.corp.redhat.com (int-mx16.intmail.prod.int.phx2.redhat.com [10.5.11.28]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B05E285542 for ; Sun, 22 Jan 2017 07:17:57 +0000 (UTC) Received: from dhcp201-121.englab.pnq.redhat.com (dhcp193-84.pnq.redhat.com [10.65.193.84]) by smtp.corp.redhat.com (Postfix) with ESMTP id 018566D239; Sun, 22 Jan 2017 07:17:55 +0000 (UTC) From: Pankaj Gupta To: qemu-devel@nongnu.org Date: Sun, 22 Jan 2017 12:47:51 +0530 Message-Id: <1485069471-3680-1-git-send-email-pagupta@redhat.com> X-Scanned-By: MIMEDefang 2.74 on 10.5.11.28 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Sun, 22 Jan 2017 07:17:57 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] Change name of live migration thread X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: amit.shah@redhat.com, dgilbert@redhat.com, quintela@redhat.com Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP Change the name of live migration thread from 'migration' to 'qemu_vm_migration' to identify it clearly. 'migration' is a generic word and kernel also has tasks for process migration with the name 'migration/cpu#'. Signed-off-by: Pankaj Gupta Reviewed-by: Amit Shah Reviewed-by: Juan Quintela --- migration/migration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration/migration.c b/migration/migration.c index f498ab8..6ebd606 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -1969,7 +1969,7 @@ void migrate_fd_connect(MigrationState *s) } migrate_compress_threads_create(); - qemu_thread_create(&s->thread, "migration", migration_thread, s, + qemu_thread_create(&s->thread, "qemu_vm_migration", migration_thread, s, QEMU_THREAD_JOINABLE); s->migration_thread_running = true; }