]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blobdiff - lib/decompress_unxz.c
xen-netfront: Fix NULL sring after live migration
[mirror_ubuntu-jammy-kernel.git] / lib / decompress_unxz.c
index a2f38e23004aa7ff0601340a6829597b355681a2..f7a3dc13316a32fb5c26bf7a8b75b123dca44a34 100644 (file)
  * memeq and memzero are not used much and any remotely sane implementation
  * is fast enough. memcpy/memmove speed matters in multi-call mode, but
  * the kernel image is decompressed in single-call mode, in which only
- * memcpy speed can matter and only if there is a lot of uncompressible data
+ * memmove speed can matter and only if there is a lot of uncompressible data
  * (LZMA2 stores uncompressible chunks in uncompressed form). Thus, the
  * functions below should just be kept small; it's probably not worth
  * optimizing for speed.