From patchwork Thu May 2 01:45:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 2509831 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 38506DF230 for ; Thu, 2 May 2013 01:46:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759595Ab3EBBpt (ORCPT ); Wed, 1 May 2013 21:45:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:62893 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754135Ab3EBBpr (ORCPT ); Wed, 1 May 2013 21:45:47 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r421ji2h023878 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 1 May 2013 21:45:44 -0400 Received: from redhat.com (vpn1-7-109.ams2.redhat.com [10.36.7.109]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r421jfxw030911; Wed, 1 May 2013 21:45:42 -0400 Date: Thu, 2 May 2013 04:45:36 +0300 From: "Michael S. Tsirkin" Cc: "Michael S. Tsirkin" , Nicholas Bellinger , Asias He , Stefan Hajnoczi , linux-kernel@vger.kernel.org, kvm@vger.kernel.org, virtualization@lists.linux-foundation.org, netdev@vger.kernel.org Subject: [PATCH 1/3] vhost: src file renames Message-ID: References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-Mutt-Fcc: =sent X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 To: unlisted-recipients:; (no To-header on input) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Move tcm_vhost.c -> scsi.c Signed-off-by: Michael S. Tsirkin --- drivers/vhost/Makefile | 1 + drivers/vhost/{tcm_vhost.c => scsi.c} | 0 2 files changed, 1 insertion(+) rename drivers/vhost/{tcm_vhost.c => scsi.c} (100%) diff --git a/drivers/vhost/tcm_vhost.c b/drivers/vhost/scsi.c similarity index 100% rename from drivers/vhost/tcm_vhost.c rename to drivers/vhost/scsi.c diff --git a/drivers/vhost/Makefile b/drivers/vhost/Makefile index a27b053..6ea9cec 100644 --- a/drivers/vhost/Makefile +++ b/drivers/vhost/Makefile @@ -2,3 +2,4 @@ obj-$(CONFIG_VHOST_NET) += vhost_net.o vhost_net-y := vhost.o net.o obj-$(CONFIG_TCM_VHOST) += tcm_vhost.o +tcm_vhost-y := scsi.o