[folded-merged] hugetlb-remove-duplicated-code-checkpatch-fixes.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     Subject: hugetlb-remove-duplicated-code-checkpatch-fixes
has been removed from the -mm tree.  Its filename was
     hugetlb-remove-duplicated-code-checkpatch-fixes.patch

This patch was dropped because it was folded into hugetlb-remove-duplicated-code.patch

------------------------------------------------------
From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
Subject: hugetlb-remove-duplicated-code-checkpatch-fixes

WARNING: space prohibited between function name and open parenthesis '('
#40: FILE: mm/hugetlb.c:259:
+	list_for_each_entry (rg, head, link)

WARNING: space prohibited between function name and open parenthesis '('
#52: FILE: mm/hugetlb.c:271:
+	list_for_each_entry_safe (rg, trg, rg->link.prev, link) {

total: 0 errors, 2 warnings, 150 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

./patches/hugetlb-remove-duplicated-code.patch has style problems, please review.

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Mina Almasry <almasrymina@xxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 mm/hugetlb.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/mm/hugetlb.c~hugetlb-remove-duplicated-code-checkpatch-fixes
+++ a/mm/hugetlb.c
@@ -256,7 +256,7 @@ static long add_reservation_in_range(str
 	struct file_region *rg = NULL, *trg = NULL, *nrg = NULL;
 
 	/* Locate the region we are before or in. */
-	list_for_each_entry (rg, head, link)
+	list_for_each_entry(rg, head, link)
 		if (f <= rg->to)
 			break;
 
@@ -268,7 +268,7 @@ static long add_reservation_in_range(str
 
 	/* Check for and consume any regions we now overlap with. */
 	nrg = rg;
-	list_for_each_entry_safe (rg, trg, rg->link.prev, link) {
+	list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
 		if (&rg->link == head)
 			break;
 		if (rg->from > t)
_

Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are

hugetlb-remove-duplicated-code.patch
hugetlb-remove-unused-hstate-in-hugetlb_fault_mutex_hash-fix.patch
mm-madvise-replace-with-page_size-in-madvise_inject_error-fix.patch
mm-annotate-refault-stalls-from-swap_readpage-fix.patch




[Index of Archives]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux