From patchwork Thu Jun 7 22:31:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Zwisler X-Patchwork-Id: 926532 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=2001:4830:134:3::11; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=linux.intel.com Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4120jl1Zsvz9s3q for ; Fri, 8 Jun 2018 08:35:23 +1000 (AEST) Received: from localhost ([::1]:60457 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fR3V2-0003jP-SD for incoming@patchwork.ozlabs.org; Thu, 07 Jun 2018 18:35:20 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fR3RJ-00012W-8F for qemu-devel@nongnu.org; Thu, 07 Jun 2018 18:31:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fR3RG-00051K-48 for qemu-devel@nongnu.org; Thu, 07 Jun 2018 18:31:29 -0400 Received: from mga09.intel.com ([134.134.136.24]:60809) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fR3RF-0004z8-RU for qemu-devel@nongnu.org; Thu, 07 Jun 2018 18:31:26 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Jun 2018 15:31:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,488,1520924400"; d="scan'208";a="62747196" Received: from theros.lm.intel.com ([10.232.112.164]) by orsmga001.jf.intel.com with ESMTP; 07 Jun 2018 15:31:22 -0700 From: Ross Zwisler To: "Michael S. Tsirkin" Date: Thu, 7 Jun 2018 16:31:07 -0600 Message-Id: <20180607223111.27792-1-ross.zwisler@linux.intel.com> X-Mailer: git-send-email 2.14.4 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 134.134.136.24 Subject: [Qemu-devel] [qemu PATCH 1/5] gitignore: ignore generated qapi job files 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: Kevin Wolf , Eduardo Habkost , linux-nvdimm , Qemu Developers , Stefan Hajnoczi , Igor Mammedov , Ross Zwisler , Dan Williams Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" With a fully built QEMU I currently see the following with "git status": Untracked files: (use "git add ..." to include in what will be committed) qapi/qapi-commands-job.c qapi/qapi-commands-job.h qapi/qapi-events-job.c qapi/qapi-events-job.h qapi/qapi-types-job.c qapi/qapi-types-job.h qapi/qapi-visit-job.c qapi/qapi-visit-job.h These are all generated files. Ignore them. Signed-off-by: Ross Zwisler Cc: Kevin Wolf Cc: Eric Blake Fixes: commit bf42508f24ee ("job: Introduce qapi/job.json") Tested-by: Thomas Huth --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 81e1f2fb0f..2980090f0a 100644 --- a/.gitignore +++ b/.gitignore @@ -100,6 +100,7 @@ /qapi/qapi-visit-ui.[ch] /qapi/qapi-visit.[ch] /qapi/qapi-doc.texi +/qapi/qapi-*-job.[ch] /qemu-doc.html /qemu-doc.info /qemu-doc.txt