From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jesse Brandeburg Subject: Re: [Intel-wired-lan] [PATCH] i40e: make const array patterns static, reduces object code size Date: Fri, 22 Sep 2017 09:44:02 -0700 Message-ID: <20170922094402.00001ad2@intel.com> References: <20170922141138.13038-1-colin.king@canonical.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Jeff Kirsher , , , , , jesse.brandeburg@intel.com To: Colin King Return-path: Received: from mga14.intel.com ([192.55.52.115]:9556 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752298AbdIVQog (ORCPT ); Fri, 22 Sep 2017 12:44:36 -0400 In-Reply-To: <20170922141138.13038-1-colin.king@canonical.com> Sender: netdev-owner@vger.kernel.org List-ID: On Fri, 22 Sep 2017 15:11:38 +0100 Colin King wrote: > From: Colin Ian King > > Don't populate const array patterns on the stack, instead make it > static. Makes the object code smaller by over 60 bytes: > > Before: > text data bss dec hex filename > 1953 496 0 2449 991 i40e_diag.o > > After: > text data bss dec hex filename > 1798 584 0 2382 94e i40e_diag.o > > (gcc 6.3.0, x86-64) > > Signed-off-by: Colin Ian King Looks good, thanks Colin! Acked-by: Jesse Brandeburg