<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
From: Denis Vlasenko &lt;vda@port.imtp.ilyichevsk.odessa.ua&gt;

This function has 3 callsites.  Patch reduces code by 1.5k (on i386).

Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
---

 25-akpm/crypto/blowfish.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN crypto/blowfish.c~deinline-large-function-in-blowfishc crypto/blowfish.c
--- 25/crypto/blowfish.c~deinline-large-function-in-blowfishc	2004-10-01 21:18:34.166349184 -0700
+++ 25-akpm/crypto/blowfish.c	2004-10-01 21:18:34.169348728 -0700
@@ -316,7 +316,7 @@ static const u32 bf_sbox[256 * 4] = {
  * The blowfish encipher, processes 64-bit blocks.
  * NOTE: This function MUSTN'T respect endianess 
  */
-static inline void encrypt_block(struct bf_ctx *bctx, u32 *dst, u32 *src)
+static void encrypt_block(struct bf_ctx *bctx, u32 *dst, u32 *src)
 {
 	const u32 *P = bctx-&gt;p;
 	const u32 *S = bctx-&gt;s;
_
</pre></body></html>