Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp1107238pxf; Fri, 12 Mar 2021 01:59:09 -0800 (PST) X-Google-Smtp-Source: ABdhPJzOaPkuvBGcuBWONyrH0FrgmJMnYbpBoQq/Br7ADyALPIdLhrzv12Z2iJ8RVvT0bXZ4aFeZ X-Received: by 2002:aa7:d656:: with SMTP id v22mr13000481edr.119.1615543148849; Fri, 12 Mar 2021 01:59:08 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615543148; cv=none; d=google.com; s=arc-20160816; b=VBU0R1x1FxRs2jOJ9dMeDU+0NI1UtsGCmPGyfsS9JUw5hpcxSrL7o4trXCy3/8KAKj WVa2PgxaIc2oudl9F7+heRFlVjx+VJ5i4UVUqx5c+P7ma5bQIO+J/IOZVDrBqW2XKh/Z 9b4S+QbcF7JIaWACPFojdgtlHYd+rH0wbwLfJsSGXvZirBXOCmCqLJpUnveb989FOHA6 2hKV5YOMaQVC9m1PQPYbBWtiEpPSNZ18c7RSoFPh1TdN0ZI0uocOsV9Ul5Xz0AkwtBac 0b/SSpEJJyFopJb9bFL803YPesawVIWdo+mDM4wNT74RW02y6kUzZQfEizON0gaE2TVf YtHw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=gkVdXIbOjZAeSDmR0mlSNNVNkep5asSsobZNw0kSBiw=; b=nIWEpbXOgX48WLQVvRUk+fnLcxTknkpx5bwNBTxlPv1LidqRzkaAOlw71Gs49xmPNU Ifr8znnYh4pa1cnUvN5LRIG/+uHBWTXW0bBqN0g26dUSnihJdjzatS1ngpPvibEPYSWJ WLKMwvgLWeMHUPirLOyJ78DCc9SXrX/b1lLU2oOqKW9uZBcZrYFvFIEyJmdM9XsQG1LG XDM/yoUA5lalJM6pwPAQ+Q4fQGia3bnJhn6/jnZngiuHs2mBHQwzwe2Tekua8qVRYSf9 ZNV5eMecsBDTicBK7BuN4+UKwfIYHjmjy9W/dQhVKSvBeDzgDGdeZRNbjP6ont1spqFc JgRg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id le26si3702385ejc.659.2021.03.12.01.58.45; Fri, 12 Mar 2021 01:59:08 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233206AbhCLJ4F (ORCPT + 99 others); Fri, 12 Mar 2021 04:56:05 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56184 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232905AbhCLJzr (ORCPT ); Fri, 12 Mar 2021 04:55:47 -0500 Received: from sipsolutions.net (s3.sipsolutions.net [IPv6:2a01:4f8:191:4433::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DAA00C061761; Fri, 12 Mar 2021 01:55:46 -0800 (PST) Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.94) (envelope-from ) id 1lKeW1-00F7m8-Ug; Fri, 12 Mar 2021 10:55:30 +0100 From: Johannes Berg To: linux-kernel@vger.kernel.org, linux-um@lists.infradead.org Cc: Jessica Yu , Alexander Viro , linux-fsdevel@vger.kernel.org, Johannes Berg Subject: [PATCH 3/6] .gitignore: also ignore gcda files Date: Fri, 12 Mar 2021 10:55:23 +0100 Message-Id: <20210312104627.77a4bc149381.I4f7b3002fa9ef4a168fca1f7952a277b52cae695@changeid> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210312095526.197739-1-johannes@sipsolutions.net> References: <20210312095526.197739-1-johannes@sipsolutions.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Johannes Berg We already ignore gcno files that are created by the compiler at build time for -ftest-coverage. However, with ARCH=um it's possible to select CONFIG_GCOV which actually has the kernel binary write out gcda files (rather than have them in debugfs like CONFIG_GCOV_KERNEL does), so an in-tree build can create them. Ignore them so the tree doesn't look dirty for that. Signed-off-by: Johannes Berg --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 3af66272d6f1..91e46190d418 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ *.dwo *.elf *.gcno +*.gcda *.gz *.i *.ko -- 2.29.2