mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
backing-dev: Kill set but not used var in bdi_debug_stats_show()
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi> Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
This commit is contained in:
parent
771949d03b
commit
345227d705
1 changed files with 2 additions and 2 deletions
|
@ -63,10 +63,10 @@ static int bdi_debug_stats_show(struct seq_file *m, void *v)
|
|||
unsigned long background_thresh;
|
||||
unsigned long dirty_thresh;
|
||||
unsigned long bdi_thresh;
|
||||
unsigned long nr_dirty, nr_io, nr_more_io, nr_wb;
|
||||
unsigned long nr_dirty, nr_io, nr_more_io;
|
||||
struct inode *inode;
|
||||
|
||||
nr_wb = nr_dirty = nr_io = nr_more_io = 0;
|
||||
nr_dirty = nr_io = nr_more_io = 0;
|
||||
spin_lock(&inode_wb_list_lock);
|
||||
list_for_each_entry(inode, &wb->b_dirty, i_wb_list)
|
||||
nr_dirty++;
|
||||
|
|
Loading…
Reference in a new issue