Commit 61f43ad3 authored by Andrew Morton's avatar Andrew Morton Committed by James Toy

WARNING: line over 80 characters

#45: FILE: mm/page_alloc.c:551:
+		 * Remove pages from lists in a round-robin fashion. A batch_free

total: 0 errors, 1 warnings, 46 lines checked

./patches/page-allocator-maintain-rolling-count-of-pages-to-free-from-the-pcp.patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Mel Gorman <mel@csn.ul.ie>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 424e352d
......@@ -548,10 +548,11 @@ static void free_pcppages_bulk(struct zone *zone, int count,
struct list_head *list;
/*
* Remove pages from lists in a round-robin fashion. A batch_free
* count is maintained that is incremented when an empty list is
* encountered. This is so more pages are freed off fuller lists
* instead of spinning excessively around empty lists
* Remove pages from lists in a round-robin fashion. A
* batch_free count is maintained that is incremented when an
* empty list is encountered. This is so more pages are freed
* off fuller lists instead of spinning excessively around empty
* lists
*/
do {
batch_free++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment