Searched refs:reiserfs_journal_cnode (Results 1 – 2 of 2) sorted by relevance
124 struct reiserfs_journal_cnode { struct130 struct reiserfs_journal_cnode *next; /* next in transaction list */ argument131 struct reiserfs_journal_cnode *prev; /* prev in transaction list */ argument132 struct reiserfs_journal_cnode *hprev; /* prev in hash list */ argument133 struct reiserfs_journal_cnode *hnext; /* next in hash list */ argument165 struct reiserfs_journal_cnode *j_realblock;166 …struct reiserfs_journal_cnode *j_freedlist; /* list of buffers that were freed during this trans. …182 struct reiserfs_journal_cnode *j_last; /* newest journal block */183 struct reiserfs_journal_cnode *j_first; /* oldest journal block. start here for traverse */220 struct reiserfs_journal_cnode *j_cnode_free_list;[all …]
98 static int can_dirty(struct reiserfs_journal_cnode *cn);123 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *)); in init_journal_hash()349 static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes) in allocate_cnodes()351 struct reiserfs_journal_cnode *head; in allocate_cnodes()356 head = vmalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode)); in allocate_cnodes()360 memset(head, 0, num_cnodes * sizeof(struct reiserfs_journal_cnode)); in allocate_cnodes()374 static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb) in get_cnode()376 struct reiserfs_journal_cnode *cn; in get_cnode()394 memset(cn, 0, sizeof(struct reiserfs_journal_cnode)); in get_cnode()402 struct reiserfs_journal_cnode *cn) in free_cnode()[all …]