The patch titled Subject: sizes.h: add SZ_8G/SZ_16G/SZ_32G macros has been added to the -mm tree. Its filename is sizesh-add-sz_8g-sz_16g-sz_32g-macros.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/sizesh-add-sz_8g-sz_16g-sz_32g-macros.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/sizesh-add-sz_8g-sz_16g-sz_32g-macros.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Huang Shijie <sjhuang@xxxxxxxxxxx> Subject: sizes.h: add SZ_8G/SZ_16G/SZ_32G macros Add these macros, since we can use them in drivers. Link: https://lkml.kernel.org/r/20201229072819.11183-1-sjhuang@xxxxxxxxxxx Signed-off-by: Huang Shijie <sjhuang@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/sizes.h | 3 +++ 1 file changed, 3 insertions(+) --- a/include/linux/sizes.h~sizesh-add-sz_8g-sz_16g-sz_32g-macros +++ a/include/linux/sizes.h @@ -44,6 +44,9 @@ #define SZ_2G 0x80000000 #define SZ_4G _AC(0x100000000, ULL) +#define SZ_8G _AC(0x200000000, ULL) +#define SZ_16G _AC(0x400000000, ULL) +#define SZ_32G _AC(0x800000000, ULL) #define SZ_64T _AC(0x400000000000, ULL) #endif /* __LINUX_SIZES_H__ */ _ Patches currently in -mm which might be from sjhuang@xxxxxxxxxxx are sizesh-add-sz_8g-sz_16g-sz_32g-macros.patch