diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-22 08:22:48 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-22 08:22:48 -0800 |
commit | 8ba8ed54de4dd79bb88ab6cd7dbf2e83d58d6d57 (patch) | |
tree | d4d1c687f1b7f58783103b43a04618d8e4019bba /include | |
parent | bbbc4791cd48ac12996e43c0033b504c79b53639 (diff) | |
parent | 468e6a20afaccb67e2a7d7f60d301f90e1c6f301 (diff) | |
download | linux-8ba8ed54de4dd79bb88ab6cd7dbf2e83d58d6d57.tar.gz linux-8ba8ed54de4dd79bb88ab6cd7dbf2e83d58d6d57.tar.bz2 linux-8ba8ed54de4dd79bb88ab6cd7dbf2e83d58d6d57.zip |
Merge branch 'writeback-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/wfg/linux
* 'writeback-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/wfg/linux:
writeback: remove vm_dirties and task->dirties
writeback: hard throttle 1000+ dd on a slow USB stick
mm: Make task in balance_dirty_pages() killable
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/init_task.h | 1 | ||||
-rw-r--r-- | include/linux/sched.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 08ffab01e76c..94b1e356c02a 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h @@ -184,7 +184,6 @@ extern struct cred init_cred; [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \ }, \ .thread_group = LIST_HEAD_INIT(tsk.thread_group), \ - .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \ INIT_IDS \ INIT_PERF_EVENTS(tsk) \ INIT_TRACE_IRQFLAGS \ diff --git a/include/linux/sched.h b/include/linux/sched.h index 68daf4f27e2c..1c4f3e9b9bc5 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1521,7 +1521,6 @@ struct task_struct { #ifdef CONFIG_FAULT_INJECTION int make_it_fail; #endif - struct prop_local_single dirties; /* * when (nr_dirtied >= nr_dirtied_pause), it's time to call * balance_dirty_pages() for some dirty throttling pause |