亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費注冊 查看新帖 |

Chinaunix

  平臺 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 3438 | 回復(fù): 4
打印 上一主題 下一主題

initramfs unpack 到內(nèi)存那里去了? [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報告]
發(fā)表于 2011-03-23 16:38 |只看該作者 |倒序瀏覽
各位兄弟,
在看 initramfs unpack 過程 ,有點疑惑,
  1. static int __init populate_rootfs(void)
  2. {
  3.         char *err = unpack_to_rootfs(__initramfs_start,
  4.                          __initramfs_end - __initramfs_start, 0);
  5.         if (err)
  6.                 panic(err);
  7.         if (initrd_start) {
  8. #ifdef CONFIG_BLK_DEV_RAM
  9.                 int fd;
  10.                 printk(KERN_INFO "checking if image is initramfs...");   
  11.                 err = unpack_to_rootfs((char *)initrd_start,
  12.                         initrd_end - initrd_start, 1);                              /* 1 => check only */
  13.                 if (!err) {
  14.                         printk(" it is\n");
  15.                         unpack_to_rootfs((char *)initrd_start,
  16.                                 initrd_end - initrd_start, 0);                       /* 釋放到那里??? */
  17.                         free_initrd();
  18.                         return 0;
  19.                 }
復(fù)制代碼
跟了下
unpack_to_rootfs((char *)initrd_start,  initrd_end - initrd_start, 0);
看起來 其中g(shù)zip 的buf 就是 initrd_start ,那么unpack 后的initramfs 應(yīng)該也在 initrd_start
但這樣理解的話 接下來的free_initrd();  又釋放了這部分內(nèi)存

如果后面有內(nèi)存分配 initramfs unpack 后的頁不是沒了?

難道是unpack 到別的地方去了?
懂的兄弟幫忙 分析下

論壇徽章:
0
2 [報告]
發(fā)表于 2011-03-23 17:00 |只看該作者
/* inbuf   - input buffer
*len     - len of pre-read data in inbuf
*fill    - function to fill inbuf when empty
*flush   - function to write out outbuf
*outbuf  - output buffer
*posp    - if non-null, input position (number of bytes read) will be
*          returned here
*
*If len != 0, inbuf should contain all the necessary input data, and fill
*should be NULL
*If len = 0, inbuf can be NULL, in which case the decompressor will allocate
*the input buffer.  If inbuf != NULL it must be at least XXX_IOBUF_SIZE bytes.
*fill will be called (repeatedly...) to read data, at most XXX_IOBUF_SIZE
*bytes should be read per call.  Replace XXX with the appropriate decompressor
*name, i.e. LZMA_IOBUF_SIZE.
*
*If flush = NULL, outbuf must be large enough to buffer all the expected
*output.  If flush != NULL, the output buffer will be allocated by the
*decompressor (outbuf = NULL), and the flush function will be called to
*flush the output buffer at the appropriate time (decompressor and stream
*dependent).
*/

論壇徽章:
0
3 [報告]
發(fā)表于 2011-03-23 18:43 |只看該作者
兄弟,謝謝你的回答,我是2.6.29 我沒找到你貼的這段注釋
能否講具體點,謝了

論壇徽章:
0
4 [報告]
發(fā)表于 2011-03-23 19:02 |只看該作者
不過我根據(jù)你的提示,我又看了下代碼:
gzip => flush_window (initramfs.c) =>  flush_buffer => write_buffer =>actions[state]() =>
static __initdata int (*actions[])(void) = {
        [Start]                = do_start,
        [Collect]        = do_collect,
        [GotHeader]        = do_header,
        [SkipIt]        = do_skip,
        [GotName]        = do_name,
        [CopyFile]        = do_copy,
        [GotSymlink]        = do_symlink,
        [Reset]                = do_reset,
};

wfd = sys_open(collected, openflags, mode)

好象最后被弄到文件系統(tǒng)去了,但是還有個問題,這部分的內(nèi)存地址就沒辦法獲得了,是嗎?

論壇徽章:
4
酉雞
日期:2014-03-21 23:19:50獅子座
日期:2014-08-01 22:11:40酉雞
日期:2015-01-10 21:31:442015年辭舊歲徽章
日期:2015-03-03 16:54:15
5 [報告]
發(fā)表于 2013-01-24 19:08 |只看該作者
哪里去了???
您需要登錄后才可以回帖 登錄 | 注冊

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報專區(qū)
中國互聯(lián)網(wǎng)協(xié)會會員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP