diff options
Diffstat (limited to 'fs/ext4/block_validity.c')
| -rw-r--r-- | fs/ext4/block_validity.c | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/ext4/block_validity.c b/fs/ext4/block_validity.c index d4d4fdfac1a6..1ee04e76bbe0 100644 --- a/fs/ext4/block_validity.c +++ b/fs/ext4/block_validity.c @@ -133,10 +133,13 @@ static void debug_print_tree(struct ext4_sb_info *sbi)  {  	struct rb_node *node;  	struct ext4_system_zone *entry; +	struct ext4_system_blocks *system_blks;  	int first = 1;  	printk(KERN_INFO "System zones: "); -	node = rb_first(&sbi->system_blks->root); +	rcu_read_lock(); +	system_blks = rcu_dereference(sbi->system_blks); +	node = rb_first(&system_blks->root);  	while (node) {  		entry = rb_entry(node, struct ext4_system_zone, node);  		printk(KERN_CONT "%s%llu-%llu", first ? "" : ", ", @@ -144,6 +147,7 @@ static void debug_print_tree(struct ext4_sb_info *sbi)  		first = 0;  		node = rb_next(node);  	} +	rcu_read_unlock();  	printk(KERN_CONT "\n");  }  |