jffs2.h

来自「该文档详细的介绍了linux文件系统j2ffs的组织结构以及功能模块」· C头文件 代码 · 共 41 行

H
41
字号
#ifndef	_JFFS2_H_
#define _JFFS2_H_

/*
 * Stuffs grabbed from fs/jffs2/
 */

struct jffs2_raw_node_ref
{
	struct jffs2_raw_node_ref *next_in_ino; 
	struct jffs2_raw_node_ref *next_phys;
	uint32_t flash_offset;
	uint32_t totlen;	
};

struct jffs2_full_dirent
{
	struct jffs2_raw_node_ref *raw;
	struct jffs2_full_dirent *next;
	uint32_t version;
	uint32_t ino; /* == zero for unlink */
	unsigned int nhash;
	unsigned char type;
	unsigned char name[0];
};

struct jffs2_inode_cache {
	struct jffs2_full_dirent *scan_dents; 
	struct jffs2_inode_cache *next;
	struct jffs2_raw_node_ref *nodes;	
	uint32_t ino;
	int nlink;	
	int state;
};

#define INOCACHE_HASHSIZE 128
#define ref_flags(ref) ((ref)->flash_offset & 3)
#define ref_offset(ref) ((ref)->flash_offset & ~3)

#endif /* _JFFS2_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?