The patch titled Subject: mm/madvise.c: make madvise_behaviour_valid() return bool has been removed from the -mm tree. Its filename was mm-make-the-function-madvise_behaviour_valid-bool.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Nicholas Krause <xerofoify@xxxxxxxxx> Subject: mm/madvise.c: make madvise_behaviour_valid() return bool This makes the madvise_bahaviour_valid( return bool due to this particular function always returning the value of either one or zero as its return value. Signed-off-by: Nicholas Krause <xerofoify@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/madvise.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN mm/madvise.c~mm-make-the-function-madvise_behaviour_valid-bool mm/madvise.c --- a/mm/madvise.c~mm-make-the-function-madvise_behaviour_valid-bool +++ a/mm/madvise.c @@ -386,7 +386,7 @@ madvise_vma(struct vm_area_struct *vma, } } -static int +static bool madvise_behavior_valid(int behavior) { switch (behavior) { @@ -408,10 +408,10 @@ madvise_behavior_valid(int behavior) #endif case MADV_DONTDUMP: case MADV_DODUMP: - return 1; + return true; default: - return 0; + return false; } } _ Patches currently in -mm which might be from xerofoify@xxxxxxxxx are mm-make-the-function-set_recommended_min_free_kbytes-have-a-return-type-of-void.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