The quilt patch titled Subject: tmpfs: ensure O_LARGEFILE with generic_file_open() has been removed from the -mm tree. Its filename was tmpfs-ensure-o_largefile-with-generic_file_open.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Thomas WeiÃ?schuh <thomas.weissschuh@xxxxxxxxxxx> Subject: tmpfs: ensure O_LARGEFILE with generic_file_open() Date: Wed, 28 Sep 2022 12:45:35 +0200 Without this check open() will open large files on tmpfs although O_LARGEFILE was not specified. This is inconsistent with other filesystems. Also it will later result in EOVERFLOW on stat() or EFBIG on write(). Link: https://lore.kernel.org/lkml/76bedae6-22ea-4abc-8c06-b424ceb39217@xxxxxxxx/ Link: https://lkml.kernel.org/r/20220928104535.61186-1-linux@xxxxxxxxxxxxxx Signed-off-by: Thomas WeiÃ?schuh <thomas.weissschuh@xxxxxxxxxxx> Acked-by: Hugh Dickins <hughd@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/shmem.c | 1 + 1 file changed, 1 insertion(+) --- a/mm/shmem.c~tmpfs-ensure-o_largefile-with-generic_file_open +++ a/mm/shmem.c @@ -3902,6 +3902,7 @@ EXPORT_SYMBOL(shmem_aops); static const struct file_operations shmem_file_operations = { .mmap = shmem_mmap, + .open = generic_file_open, .get_unmapped_area = shmem_get_unmapped_area, #ifdef CONFIG_TMPFS .llseek = shmem_file_llseek, _ Patches currently in -mm which might be from thomas.weissschuh@xxxxxxxxxxx are