Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e733f07 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

dirty_writeback_centisecs_handler() cleanup



Repair indenting bustage.

Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 97842216
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -479,12 +479,10 @@ int dirty_writeback_centisecs_handler(ctl_table *table, int write,
	struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
{
	proc_dointvec_userhz_jiffies(table, write, file, buffer, length, ppos);
	if (dirty_writeback_interval) {
		mod_timer(&wb_timer,
			jiffies + dirty_writeback_interval);
		} else {
	if (dirty_writeback_interval)
		mod_timer(&wb_timer, jiffies + dirty_writeback_interval);
	else
		del_timer(&wb_timer);
	}
	return 0;
}