- 论坛徽章:
- 0
|
我在看2.6.24内核,发现内核自解压的部分和2.6.11不大一样,滑动窗口不再向输出数据区刷出数据。相关函数是arch/x86/boot/compressed/misc_32.c中的flush_window()函数,注释说由于滑动窗口和输出缓存是同一个,所以该函数不用再拷贝窗口数据到输出缓存区了,只需要计算crc就行。问题是滑动窗口是循环使用的,写满32KB就从头开始写覆盖原数据,那么最后怎么会得到完整的解压缩的内核呢?我怎么看都不明白,麻烦指点一二。谢谢!
备注:
-----------2.6.11内核的arch/i386/boot/compressed/Misc.c----------
static void flush_window_high(void)
{
ulg c = crc; /* temporary variable */
unsigned n;
uch *in, ch;
in = window;
for (n = 0; n < outcnt; n++) {
ch = *output_data++ = *in++; //这是拷贝窗口的解压数据到输出数据区的代码,并调整指针
if ((ulg)output_data == low_buffer_end) output_data=high_buffer_start;
c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> ;
}
crc = c;
bytes_out += (ulg)outcnt;
outcnt = 0;
}
-----------2.6.24内核的arch/x86/boot/compressed/Misc_32.c----------
/* ===========================================================================
* Write the output window window[0..outcnt-1] and update crc and bytes_out.
* (Used for the decompressed data only.)
*/
static void flush_window(void)
{
/* With my window equal to my output buffer
* I only need to compute the crc here.
*/
ulg c = crc; /* temporary variable */
unsigned n;
uch *in, ch;
in = window;
for (n = 0; n < outcnt; n++) {
ch = *in++; //这里窗口数据不再拷贝到输出,只检查crc而已
c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> ;
}
crc = c;
bytes_out += (ulg)outcnt;
outcnt = 0;
}
已知window是指向输出地址output,即物理内存1MB处的 |
|