diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2012-05-29 18:06:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-29 19:22:20 -0400 |
commit | 0ce72d4f7333248efbef1f3309770c7edb1b2625 (patch) | |
tree | a4de6ed7c23962ed62a9f4f64a05c75db51a9833 /include/linux/mempolicy.h | |
parent | 4a5b18cc1971046d9ca3a29fdcafbe5648629585 (diff) |
mm: do_migrate_pages(): rename arguments
s/from_nodes/from and s/to_nodes/to/. The "_nodes" is redundant - it
duplicates the argument's type.
Done in a fit of irritation over 80-col issues :(
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: KOSAKI Motohiro <mkosaki@redhat.com>
Cc: Larry Woodman <lwoodman@redhat.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/mempolicy.h')
-rw-r--r-- | include/linux/mempolicy.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 7c727a90d70d..4aa42732e47f 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
@@ -225,8 +225,8 @@ static inline void check_highest_zone(enum zone_type k) | |||
225 | policy_zone = k; | 225 | policy_zone = k; |
226 | } | 226 | } |
227 | 227 | ||
228 | int do_migrate_pages(struct mm_struct *mm, | 228 | int do_migrate_pages(struct mm_struct *mm, const nodemask_t *from, |
229 | const nodemask_t *from_nodes, const nodemask_t *to_nodes, int flags); | 229 | const nodemask_t *to, int flags); |
230 | 230 | ||
231 | 231 | ||
232 | #ifdef CONFIG_TMPFS | 232 | #ifdef CONFIG_TMPFS |
@@ -354,9 +354,8 @@ static inline bool mempolicy_nodemask_intersects(struct task_struct *tsk, | |||
354 | return false; | 354 | return false; |
355 | } | 355 | } |
356 | 356 | ||
357 | static inline int do_migrate_pages(struct mm_struct *mm, | 357 | static inline int do_migrate_pages(struct mm_struct *mm, const nodemask_t *from, |
358 | const nodemask_t *from_nodes, | 358 | const nodemask_t *to, int flags) |
359 | const nodemask_t *to_nodes, int flags) | ||
360 | { | 359 | { |
361 | return 0; | 360 | return 0; |
362 | } | 361 | } |