Home
last modified time | relevance | path

Searched refs:reiserfs_journal_cnode (Results 1 – 2 of 2) sorted by relevance

/linux-2.6.39/include/linux/
Dreiserfs_fs_sb.h124 struct reiserfs_journal_cnode { struct
130 struct reiserfs_journal_cnode *next; /* next in transaction list */ argument
131 struct reiserfs_journal_cnode *prev; /* prev in transaction list */ argument
132 struct reiserfs_journal_cnode *hprev; /* prev in hash list */ argument
133 struct reiserfs_journal_cnode *hnext; /* next in hash list */ argument
165 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 …]
/linux-2.6.39/fs/reiserfs/
Djournal.c98 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 …]