The patch titled Subject: kernel.h: unconditionally include asm/div64.h for do_div() has been removed from the -mm tree. Its filename was kernelh-unconditionally-include-asm-div64h-for-do_div.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Jani Nikula <jani.nikula@xxxxxxxxx> Subject: kernel.h: unconditionally include asm/div64.h for do_div() Include asm/div64.h for do_div() usage in DIV_ROUND_DOWN_ULL() and DIV_ROUND_CLOSEST_ULL(). Remove the old CONFIG_LBDAF=y conditional include. Link: http://lkml.kernel.org/r/20181228153430.23763-1-jani.nikula@xxxxxxxxx Signed-off-by: Jani Nikula <jani.nikula@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- --- a/include/linux/kernel.h~kernelh-unconditionally-include-asm-div64h-for-do_div +++ a/include/linux/kernel.h @@ -14,6 +14,7 @@ #include <linux/printk.h> #include <linux/build_bug.h> #include <asm/byteorder.h> +#include <asm/div64.h> #include <uapi/linux/kernel.h> #define USHRT_MAX ((u16)(~0U)) @@ -204,7 +205,6 @@ #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) #ifdef CONFIG_LBDAF -# include <asm/div64.h> # define sector_div(a, b) do_div(a, b) #else # define sector_div(n, b)( \ _ Patches currently in -mm which might be from jani.nikula@xxxxxxxxx are