This source file includes following definitions.
- __inflate_kernel_data
1
2
3
4
5
6
7
8
9 #include <linux/init.h>
10 #include <linux/zutil.h>
11
12
13 #include "../../../lib/zlib_inflate/inftrees.h"
14 #include "../../../lib/zlib_inflate/inflate.h"
15 #include "../../../lib/zlib_inflate/infutil.h"
16
17 extern char __data_loc[];
18 extern char _edata_loc[];
19 extern char _sdata[];
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 int __init __inflate_kernel_data(void)
36 {
37 struct z_stream_s stream, *strm = &stream;
38 struct inflate_state state;
39 char *in = __data_loc;
40 int rc;
41
42
43 if (in[0] != 0x1f || in[1] != 0x8b || in[2] != 0x08 || in[3] & ~3)
44 return -1;
45 in += 10;
46
47 strm->workspace = &state;
48 strm->next_in = in;
49 strm->avail_in = _edata_loc - __data_loc;
50 strm->next_out = _sdata;
51 strm->avail_out = _edata_loc - __data_loc;
52 zlib_inflateInit2(strm, -MAX_WBITS);
53 WS(strm)->inflate_state.wsize = 0;
54 WS(strm)->inflate_state.window = NULL;
55 rc = zlib_inflate(strm, Z_FINISH);
56 if (rc == Z_OK || rc == Z_STREAM_END)
57 rc = strm->avail_out;
58 return rc;
59 }