1. 12 9月, 2013 1 次提交
    • A
      lib/decompressors: fix "no limit" output buffer length · 1431574a
      Alexandre Courbot 提交于
      When decompressing into memory, the output buffer length is set to some
      arbitrarily high value (0x7fffffff) to indicate the output is, virtually,
      unlimited in size.
      
      The problem with this is that some platforms have their physical memory at
      high physical addresses (0x80000000 or more), and that the output buffer
      address and its "unlimited" length cannot be added without overflowing.
      An example of this can be found in inflate_fast():
      
      /* next_out is the output buffer address */
      out = strm->next_out - OFF;
      /* avail_out is the output buffer size. end will overflow if the output
       * address is >= 0x80000104 */
      end = out + (strm->avail_out - 257);
      
      This has huge consequences on the performance of kernel decompression,
      since the following exit condition of inflate_fast() will be always true:
      
      } while (in < last && out < end);
      
      Indeed, "end" has overflowed and is now always lower than "out".  As a
      result, inflate_fast() will return after processing one single byte of
      input data, and will thus need to be called an unreasonably high number of
      times.  This probably went unnoticed because kernel decompression is fast
      enough even with this issue.
      
      Nonetheless, adjusting the output buffer length in such a way that the
      above pointer arithmetic never overflows results in a kernel decompression
      that is about 3 times faster on affected machines.
      Signed-off-by: NAlexandre Courbot <acourbot@nvidia.com>
      Tested-by: NJon Medhurst <tixy@linaro.org>
      Cc: Stephen Warren <swarren@wwwdotorg.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      1431574a
  2. 14 1月, 2011 4 次提交
  3. 24 9月, 2009 1 次提交
  4. 08 8月, 2009 2 次提交
  5. 03 4月, 2009 1 次提交
    • P
      kmemtrace, kbuild: fix slab.h dependency problem in lib/decompress_inflate.c · 079effb6
      Pekka Enberg 提交于
      Impact: fix build
      
      lib/decompress_inflate.c depends on slab.h without including it:
      
          CC      lib/decompress_inflate.o
        lib/decompress_inflate.c: In function ‘gunzip’:
        lib/decompress_inflate.c:45: error: implicit declaration of function ‘kmalloc’
        lib/decompress_inflate.c:45: warning: assignment makes pointer from integer without a cast
        lib/decompress_inflate.c:57: warning: assignment makes pointer from integer without a cast
        lib/decompress_inflate.c:65: warning: assignment makes pointer from integer without a cast
        lib/decompress_inflate.c:71: warning: assignment makes pointer from integer without a cast
        lib/decompress_inflate.c:154: error: implicit declaration of function ‘kfree’
        make[1]: *** [lib/decompress_inflate.o] Error 1
        make: *** [lib/] Error 2
      
      It gets included implicitly currently - but this will not be the
      case with upcoming kmemtrace changes.
      Signed-off-by: NPekka Enberg <penberg@cs.helsinki.fi>
      Cc: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
      LKML-Reference: <1237886030.25315.47.camel@penberg-laptop>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      079effb6
  6. 09 1月, 2009 2 次提交
  7. 05 1月, 2009 1 次提交
    • A
      bzip2/lzma: library support for gzip, bzip2 and lzma decompression · bc22c17e
      Alain Knaff 提交于
      Impact: Replaces inflate.c with a wrapper around zlib_inflate; new library code
      
      This is the first part of the bzip2/lzma patch
      
      The bzip patch is based on an idea by Christian Ludwig, includes support for
      compressing the kernel with bzip2 or lzma rather than gzip. Both
      compressors give smaller sizes than gzip.  Lzma's decompresses faster
      than bzip2.
      
      It also supports ramdisks and initramfs' compressed using these two
      compressors.
      
      The functionality has been successfully used for a couple of years by
      the udpcast project
      
      This version applies to "tip" kernel 2.6.28
      
      This part contains:
      - changed inflate.c to accomodate rest of patch
      - implementation of bzip2 compression (not used at this stage yet)
      - implementation of lzma compression (not used at this stage yet)
      - Makefile routines to support bzip2 and lzma kernel compression
      Signed-off-by: NAlain Knaff <alain@knaff.lu>
      Signed-off-by: NH. Peter Anvin <hpa@zytor.com>
      bc22c17e