The patch titled iommu-helper: simplify find_next_zero_area has been added to the -mm tree. Its filename is iommu-helper-simplify-find_next_zero_area.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: iommu-helper: simplify find_next_zero_area From: Akinobu Mita <akinobu.mita@xxxxxxxxx> Use find_next_bit instead of doing test_bit for each bit Cc: FUJITA Tomonori <fujita.tomonori@xxxxxxxxxxxxx> Cc: Joerg Roedel <joerg.roedel@xxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- diff -puN lib/iommu-helper.c~iommu-helper-simplify-find_next_zero_area lib/iommu-helper.c --- a/lib/iommu-helper.c~iommu-helper-simplify-find_next_zero_area +++ a/lib/iommu-helper.c @@ -21,11 +21,10 @@ again: end = index + nr; if (end >= size) return -1; - for (i = index; i < end; i++) { - if (test_bit(i, map)) { - start = i+1; - goto again; - } + i = find_next_bit(map, end, index); + if (i < end) { + start = i + 1; + goto again; } return index; } _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are iommu-helper-simplify-find_next_zero_area.patch bitmap-introduce-bitmap_set-bitmap_clear-bitmap_find_next_zero_area.patch iommu-helper-use-bitmap-library.patch isp1362-hcd-use-bitmap_find_next_zero_area.patch mlx4-use-bitmap_find_next_zero_area.patch sparc-use-bitmap_find_next_zero_area.patch ia64-use-bitmap_find_next_zero_area.patch genalloc-use-bitmap_find_next_zero_area.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html