gzip: flush output buffer after stored blocks only if necessary
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 31 Jan 2018 16:37:32 +0000 (17:37 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 31 Jan 2018 16:37:32 +0000 (17:37 +0100)
function                                             old     new   delta
flush_block                                          671     680      +9

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
archival/gzip.c

index 7df38c2bcd61d72626994635358f204a2c36289e..92130e7fb9baed178a47bf0ab33e50092f550cd0 100644 (file)
@@ -634,7 +634,8 @@ static void copy_block(char *buf, unsigned len, int header)
                put_8bit(*buf++);
        }
        /* The above can 32-bit misalign outbuf */
-       flush_outbuf_if_32bit_optimized();
+       if (G1.outcnt & 3) /* syscalls are expensive, is it really misaligned? */
+               flush_outbuf_if_32bit_optimized();
 }