From: Kari Argillander Date: Mon, 30 Aug 2021 21:51:52 +0000 (+0300) Subject: btrfs: use correct header for div_u64 in misc.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cde7417ce487988322d0bdaa02b4165082fbe388;p=linux.git btrfs: use correct header for div_u64 in misc.h asm/do_div.h is for div_u64, but it is found in math64.h. This change will make compiler job easier and prevent compiler errors in situation where compiler will not find math64.h from another paths. Signed-off-by: Kari Argillander Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/misc.h b/fs/btrfs/misc.h index 6461ebc3a1c15..340f995652f2d 100644 --- a/fs/btrfs/misc.h +++ b/fs/btrfs/misc.h @@ -5,7 +5,7 @@ #include #include -#include +#include #include #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))