Commit f61eaf9fc58f3b2d9e3ad424496620f3381ccd1e

Authored by Adrian Bunk
Committed by Linus Torvalds
1 parent 1e88328111

mm/page-writeback.c: make a function static

task_dirty_limit() can become static.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -219,7 +219,7 @@
219 219 *
220 220 * dirty -= (dirty/8) * p_{t}
221 221 */
222   -void task_dirty_limit(struct task_struct *tsk, long *pdirty)
  222 +static void task_dirty_limit(struct task_struct *tsk, long *pdirty)
223 223 {
224 224 long numerator, denominator;
225 225 long dirty = *pdirty;