diff options
Diffstat (limited to 'fs/xfs/xfs_super.c')
| -rw-r--r-- | fs/xfs/xfs_super.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 4d2e87462ac4..4120bd1cba90 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1095,8 +1095,12 @@ xfs_inodegc_init_percpu(  	for_each_possible_cpu(cpu) {  		gc = per_cpu_ptr(mp->m_inodegc, cpu); +#if defined(DEBUG) || defined(XFS_WARN) +		gc->cpu = cpu; +#endif  		init_llist_head(&gc->list);  		gc->items = 0; +		gc->error = 0;  		INIT_DELAYED_WORK(&gc->work, xfs_inodegc_worker);  	}  	return 0;  | 
