免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1766 | 回复: 2
打印 上一主题 下一主题

[内核入门] 请教2.6.24内核自解压的滑动窗口刷出数据函数flush_window()的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-03-16 21:46 |只看该作者 |倒序浏览
我在看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处的

论坛徽章:
0
2 [报告]
发表于 2013-03-22 09:15 |只看该作者
请大侠们关注一下

论坛徽章:
0
3 [报告]
发表于 2013-05-05 19:40 |只看该作者
暮然回首,那人却在灯火阑珊处
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP