From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [PATCH 3/3] Removing unused imports from guest scripts Date: Mon, 24 Jan 2011 02:22:21 -0200 Message-ID: <1295842941-11557-4-git-send-email-lmr@redhat.com> References: <1295842941-11557-1-git-send-email-lmr@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org To: autotest@test.kernel.org Return-path: In-Reply-To: <1295842941-11557-1-git-send-email-lmr@redhat.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: autotest-bounces@test.kernel.org Errors-To: autotest-bounces@test.kernel.org List-Id: kvm.vger.kernel.org Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/kvm/scripts/ksm_overcommit_guest.py | 2 +- client/tests/kvm/scripts/virtio_console_guest.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/tests/kvm/scripts/ksm_overcommit_guest.py b/client/tests/kvm/scripts/ksm_overcommit_guest.py index 09dc004..d52be5b 100644 --- a/client/tests/kvm/scripts/ksm_overcommit_guest.py +++ b/client/tests/kvm/scripts/ksm_overcommit_guest.py @@ -8,7 +8,7 @@ Auxiliary script used to allocate memory on guests. """ -import os, array, sys, struct, random, copy, inspect, tempfile, datetime, math +import os, array, sys, random, copy, tempfile, datetime, math PAGE_SIZE = 4096 # machine page size diff --git a/client/tests/kvm/scripts/virtio_console_guest.py b/client/tests/kvm/scripts/virtio_console_guest.py index 35efb7d..c407231 100755 --- a/client/tests/kvm/scripts/virtio_console_guest.py +++ b/client/tests/kvm/scripts/virtio_console_guest.py @@ -9,8 +9,8 @@ Auxiliary script used to send data between ports on guests. """ import threading from threading import Thread -import os, time, select, re, random, sys, array -import fcntl, subprocess, traceback, signal +import os, select, re, random, sys, array +import fcntl, traceback, signal DEBUGPATH = "/sys/kernel/debug" SYSFSPATH = "/sys/class/virtio-ports/" -- 1.7.3.4