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

Chinaunix

標(biāo)題: initramfs unpack 到內(nèi)存那里去了? [打印本頁]

作者: liu090    時(shí)間: 2011-03-23 16:38
標(biāo)題: initramfs unpack 到內(nèi)存那里去了?
各位兄弟,
在看 initramfs unpack 過程 ,有點(diǎn)疑惑,
  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 到別的地方去了?
懂的兄弟幫忙 分析下
作者: flw2    時(shí)間: 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).
*/
作者: liu090    時(shí)間: 2011-03-23 18:43
兄弟,謝謝你的回答,我是2.6.29 我沒找到你貼的這段注釋
能否講具體點(diǎn),謝了
作者: liu090    時(shí)間: 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)去了,但是還有個(gè)問題,這部分的內(nèi)存地址就沒辦法獲得了,是嗎?
作者: chishanmingshen    時(shí)間: 2013-01-24 19:08
哪里去了???




歡迎光臨 Chinaunix (http://www.72891.cn/) Powered by Discuz! X3.2