[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1459342860-24168-1-git-send-email-dvlasenk@redhat.com>
Date: Wed, 30 Mar 2016 15:00:59 +0200
From: Denys Vlasenko <dvlasenk@...hat.com>
To: David Woodhouse <David.Woodhouse@...el.com>
Cc: Denys Vlasenko <dvlasenk@...hat.com>,
Brian Norris <computersforpeace@...il.com>,
Dan Carpenter <dan.carpenter@...cle.com>,
Artem Bityutskiy <artem.bityutskiy@...ux.intel.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH] drivers/mtd/chips/cfi_cmdset_0020.c: Deinline do_write_buffer
This function compiles to 2554 bytes of machine code.
In C, the function is almost 200 lines long.
It has only one callsite, but forced inlining that much code
makes gcc generate worse code. Let gcc itself decide what to do.
text data bss dec hex filename
95943139 20860256 35991552 152794947 91b7743 vmlinux_before
95943075 20860288 35991552 152794915 91b7723 vmlinux
Signed-off-by: Denys Vlasenko <dvlasenk@...hat.com>
CC: David Woodhouse <David.Woodhouse@...el.com>
CC: Brian Norris <computersforpeace@...il.com>
CC: Dan Carpenter <dan.carpenter@...cle.com>
CC: Artem Bityutskiy <artem.bityutskiy@...ux.intel.com>
CC: linux-kernel@...r.kernel.org
---
drivers/mtd/chips/cfi_cmdset_0020.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/chips/cfi_cmdset_0020.c b/drivers/mtd/chips/cfi_cmdset_0020.c
index 9a1a6ff..70dd2b1 100644
--- a/drivers/mtd/chips/cfi_cmdset_0020.c
+++ b/drivers/mtd/chips/cfi_cmdset_0020.c
@@ -416,7 +416,7 @@ static int cfi_staa_read (struct mtd_info *mtd, loff_t from, size_t len, size_t
return ret;
}
-static inline int do_write_buffer(struct map_info *map, struct flchip *chip,
+static int do_write_buffer(struct map_info *map, struct flchip *chip,
unsigned long adr, const u_char *buf, int len)
{
struct cfi_private *cfi = map->fldrv_priv;
--
2.1.0
Powered by blists - more mailing lists