From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 05BCA5679 for ; Sat, 16 Jul 2016 01:05:30 +0200 (CEST) Received: by mail-wm0-f42.google.com with SMTP id f126so41820696wma.1 for ; Fri, 15 Jul 2016 16:05:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=3h6U2cO2zFb2mYXyHQdPSZxCfrhsxcw67BMygZqWTfs=; b=bGUuIqGTYHYgwEuL6byt7kaCav02Gd9pbJFyBqzKECtTgAye8fTionyVZIgS8iVk+S wTv6ewT3+f/yiqp3Z0qzbjMrrx/ZYNgz8OT80QUqTzNyVF86J7HrltcWW/A/Hcf2J3Um tA599LDFNfuy94RjEJ6wI/RZ7cv6FbZFz6YynQbct91G+nh5zVLfuowHzcDKwYwkKlTv EvHNhBSu8Da4FkxsRLNSo+sX9yl+CCppd3/a8abD7FHHpMh4i1ywTsVoUmexY3FkKa9T dZgPHhPa0hoawG9xOfWrq7kYWjtG8m6QTFtU6lrgSMKbWc0oRv2Tx2GngTBPVc1EoleJ ULag== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=3h6U2cO2zFb2mYXyHQdPSZxCfrhsxcw67BMygZqWTfs=; b=RagM6XSvyJPwIkO6IrjYHzE4U7OkVyde9Y1ajVIg7U5A/afXBjw66zSmnCNA+VqXys 7zYv6mW+fDVWBGPmwYYNVwclD7p3K3WLvo8sDMztJUunepmcMNuxLYHLZap6UorYuAdC Q3cKiqy2nhMiBIYh6zdLfs2G/a9xc/f+xG9H86m9krZrwKyhTq+oysbydBTsML50DMcs DAizGfLTxNaH9jpznnjFvD4edc2OVSvrgkcA8SC1YPYEVHvol4RDc4X4Jp1hXK6e7D9Q 3fdKpWrbV3vJkTNBqBIgpAcCqAcjUenN/cDu846zgzvCxYGYvhmod13A42eJR8qle31G kTEA== X-Gm-Message-State: ALyK8tKWawCL3wWva+mX07h+sGk9CowXWBKIHqXKEkjonJdfl7DbfF/kJIP3VppJVGomvkFF X-Received: by 10.194.17.102 with SMTP id n6mr2701622wjd.132.1468623929784; Fri, 15 Jul 2016 16:05:29 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id r127sm5192wmf.21.2016.07.15.16.05.28 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 15 Jul 2016 16:05:28 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson , Nikita Kozlov Cc: dev@dpdk.org Date: Sat, 16 Jul 2016 01:05:28 +0200 Message-ID: <1599312.dUSpteANtl@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1468512382-30412-6-git-send-email-bruce.richardson@intel.com> References: <1465909410-4668-1-git-send-email-nikita@elyzion.net> <1468512382-30412-1-git-send-email-bruce.richardson@intel.com> <1468512382-30412-6-git-send-email-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 5/5] test: change lpm routes file from header to data file X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2016 23:05:30 -0000 2016-07-14 17:06, Bruce Richardson: > Change the file extension of the test_lpm_routes file from .h to .dat. > This makes the lines-of-code counts for DPDK more realistic as they are not > affected by the huge counts from the lpm data. > > Signed-off-by: Bruce Richardson > --- > app/test/Makefile | 2 +- > app/test/{test_lpm_routes.h => test_lpm_routes.dat} | 0 The size of the git tree significantly increase after renaming this file: git -c gc.reflogExpire=0 -c gc.reflogExpireUnreachable=0 -c gc.rerereresolved=0 -c gc.rerereunresolved=0 -c gc.pruneExpire=now gc --aggressive && du -sk .git 28272 .git git am git -c gc.reflogExpire=0 -c gc.reflogExpireUnreachable=0 -c gc.rerereresolved=0 -c gc.rerereunresolved=0 -c gc.pruneExpire=now gc --aggressive && du -sk .git 33188 .git I think it would be better to replace this huge file by a script generating the test resource.