]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - include/linux/decompress/unxz.h
initramfs: support initramfs that is bigger than 2GiB
[mirror_ubuntu-artful-kernel.git] / include / linux / decompress / unxz.h
index 41728fc6c8a1add9efd3ae97cdb7ccf1c2b1df56..f764e2a7201e35ce7d725254afdbb28c8664bab5 100644 (file)
 #ifndef DECOMPRESS_UNXZ_H
 #define DECOMPRESS_UNXZ_H
 
-int unxz(unsigned char *in, int in_size,
-        int (*fill)(void *dest, unsigned int size),
-        int (*flush)(void *src, unsigned int size),
-        unsigned char *out, int *in_used,
+int unxz(unsigned char *in, long in_size,
+        long (*fill)(void *dest, unsigned long size),
+        long (*flush)(void *src, unsigned long size),
+        unsigned char *out, long *in_used,
         void (*error)(char *x));
 
 #endif