如何在linux tmpfs中生成inode编号?

如何在linux tmpfs中生成inode编号?,第1张

概述在我看来,tmpfs不会重复使用inode数字,而是每次需要一个空闲的inode时通过1个序列创建一个新的inode号码.你知道这是如何实现的/你能指点我一些源代码,我可以检查tmpfs中使用的算法吗?我需要理解这一点,以便绕过使用inode号作为其缓存键的缓存系统的限制(因此,当过度重复使用inode时,会导致罕见但发生的冲突).如果我能证明它不断创建唯一

在我看来,tmpfs不会重复使用inode数字,而是每次需要一个空闲的inode时通过1个序列创建一个新的inode号码.

你知道这是如何实现的/你能指点我一些源代码,我可以检查tmpfs中使用的算法吗?

我需要理解这一点,以便绕过使用inode号作为其缓存键的缓存系统的限制(因此,当过度重复使用inode时,会导致罕见但发生的冲突).如果我能证明它不断创建唯一的inode数字,那么tmpfs可以节省我的一天.

谢谢您的帮助,

杰罗姆瓦格纳

最佳答案大部分tmpfs代码都是mm / shmem.c.新的inode是由创建的

static struct inode *shmem_get_inode(struct super_block *sb,const struct inode *dir,int mode,dev_t dev,unsigned long flags)

但它几乎将所有内容委托给通用文件系统代码.

特别是,字段i_ino填入fs / inode.c:

/** *      new_inode       - obtain an inode *      @sb: superblock * *      Allocates a new inode for given superblock. The default gfp_mask *      for allocations related to inode->i_map@R_404_6817@ is GFP_HIGHUSER_MOVABLE. *      If HIGHMEM pages are unsuitable or it is kNown that pages allocated *      for the page cache are not reclaimable or migratable,*      map@R_404_6817@_set_gfp_mask() must be called with suitable flags on the *      newly created inode's map@R_404_6817@ * */struct inode *new_inode(struct super_block *sb){        /*         * On a 32bit,non LFS stat() call,glibc will generate an EOVERFLOW         * error if st_ino won't fit in target struct fIEld. Use 32bit counter         * here to attempt to avoID that.         */        static unsigned int last_ino;        struct inode *inode;        spin_lock_prefetch(&inode_lock);        inode = alloc_inode(sb);        if (inode) {                spin_lock(&inode_lock);                __inode_add_to_Lists(sb,NulL,inode);                inode->i_ino = ++last_ino;                inode->i_state = 0;                spin_unlock(&inode_lock);        }        return inode;}

它确实只使用递增计数器(last_ino).

大多数其他文件系统使用来自磁盘文件的信息稍后覆盖i_ino字段.

请注意,它完全可以包裹所有方式.内核还有一个“生成”字段,可以通过各种方式填充. mm / shmem.c使用当前时间.

总结

以上是内存溢出为你收集整理的如何在linux tmpfs中生成inode编号?全部内容,希望文章能够帮你解决如何在linux tmpfs中生成inode编号?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1046721.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存